/* ==========================================================================
   why-athar.css — Dedicated Stylesheet for why-athar.html (Why Athar)
   ========================================================================== */

/* ============ WHY ATHAR FEATURES SECTION ============ */

/* --- Feature Rows Container --- */
.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 0;
    width: 100%;
}

/* --- Feature Row Item --- */
.feature-row {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-row:hover {
    box-shadow: 0 20px 40px rgba(45,106,79,0.08);
    transform: translateY(-4px);
}

/* --- Feature Text & Description --- */
.feature-row__text {
    flex: 1;
    text-align: right;
}

.feature-row__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.feature-row__desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 29.25px;
    margin-top: 12px;
}

/* --- Feature Number & Icon --- */
.feature-row__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.feature-row__num {
    font-weight: 900;
    font-size: 48px;
    color: rgba(45,106,79,0.12);
    line-height: 1;
}
