

.featured-work {
    padding: 70px 5%;
}

/* Header row — title left, "ALL CASES" link right */
.featured-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-5);
    margin-bottom: var(--space-7);
}

.featured-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    letter-spacing: var(--tracking-tight);
    margin: 0;
}

/* "ALL CASES" link */
.featured-all {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--text-3);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: var(--radius-full);
    transition: color 0.2s ease, background 0.2s ease;
}

.featured-all:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

/* Two-column grid */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
}

/* Individual work card — stacks media box above meta text */
.work-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Client logo + title + description below the image */
.work-meta img {
    max-width: 150px;
    max-height: 50px;
}

.work-meta h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
}

.work-meta p {
    margin: 6px 0 0;
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--text-3);
}

/* Responsive */
@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}
