/* ==========================================================================
   Sell Your Home — Why Sell With Us (6-card grid)
   ========================================================================== */

.me-sell-why-section {
    background-color: #ffffff;
    padding: 90px 24px;
}

.me-sell-why-container {
    max-width: 1100px;
    margin: 0 auto;
}

.me-sell-why-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.me-sell-why-title {
    font-size: 32px;
    font-weight: 700;
    color: #16233b;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.me-sell-why-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.me-sell-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.me-sell-why-card {
    background-color: #f7f8fa;
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.me-sell-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 20, 35, 0.08);
}

.me-sell-why-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdf1da;
    border-radius: 10px;
    color: #d8a94f;
    margin-bottom: 18px;
}

.me-sell-why-icon svg {
    width: 19px;
    height: 19px;
}

.me-sell-why-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #16233b;
    margin: 0 0 10px;
}

.me-sell-why-card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .me-sell-why-section { padding: 70px 24px; }
    .me-sell-why-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .me-sell-why-title { font-size: 28px; }
}

/* Mobile */
@media (max-width: 600px) {
    .me-sell-why-section { padding: 56px 20px; }
    .me-sell-why-header { margin-bottom: 32px; }
    .me-sell-why-title { font-size: 22px; }
    .me-sell-why-grid { grid-template-columns: 1fr; gap: 14px; }
    .me-sell-why-card { padding: 24px 20px; }
}