.np-studio {
    padding: 120px 40px;
    background: #f5f5f5;
}

.np-studio-card {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.np-studio-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

/* TEKST */
.np-studio-text h2 {
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.np-studio-text .lead {
    font-weight: 600;
    margin-bottom: 25px;
}

.np-studio-text p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #333;
}

.np-studio-text h3 {
    font-size: 18px;
    margin: 30px 0 15px;
}

.np-studio-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.np-studio-text li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* STOPKA TEKSTU */
.np-studio-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.np-studio-logo {
    height: 50px;
}

.np-studio-cta strong {
    display: block;
    margin-bottom: 10px;
}

.np-studio-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #000;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: all 0.2s ease;
}

.np-studio-btn:hover {
    background: #000;
    color: white;
}

/* OBRAZY */
.np-studio-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.np-studio-image-main,
.np-studio-image-small {
    border-radius: 20px;
    overflow: hidden;
}

.np-studio-image-main img,
.np-studio-image-small img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 992px) {
    .np-studio-card {
        padding: 50px 40px;
    }

    .np-studio-grid {
        grid-template-columns: 1fr;
    }

    .np-studio-images {
        order: -1;
    }
}

@media (max-width: 576px) {
    .np-studio {
        padding: 80px 20px;
    }

    .np-studio-card {
        padding: 40px 25px;
    }

    .np-studio-text h2 {
        font-size: 28px;
    }
}