.why {
    padding: 64px 0;
    background: var(--color-bg-light);
}

.why__subtext {
    margin: 0 auto;
    text-align: center;
}

.why__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 56px;
}

.why__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}

.why__col:last-child .why-feature__icon {
    background: var(--color-accent);
}

.why-feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-ink);
    margin-bottom: 6px;
}

.why-feature p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
}

.why__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-blue), #dfe9f7);
    box-shadow: var(--shadow-md);
}

.why__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.why__media-badge {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 2;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.why__media-badge strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
}

.why__media-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .why__grid {
        grid-template-columns: 1fr;
    }

    .why__media {
        order: -1;
        min-height: 280px;
    }

    .why__media img {
        min-height: 280px;
    }
}
