/* ========================================
   05-ABOUT.CSS - NK Insurance
   About section - editorial 2-col on cream
   ======================================== */

.about {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-cream);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* ========================================
   Image with editorial badge overlay
   ======================================== */
.about-images {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(11, 37, 69, 0.15);
    object-fit: cover;
    max-height: 540px;
    display: block;
}

/* "15+ años" credential card — matches hero credential language */
.about-badge {
    position: absolute;
    bottom: -24px;
    right: 24px;
    background: var(--bg-cream);
    padding: var(--spacing-md) var(--spacing-lg);
    border-left: 3px solid var(--accent-gold);
    box-shadow: 0 12px 36px rgba(11, 37, 69, 0.14);
    min-width: 180px;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 0.35rem;
    display: block;
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.2rem;
}

.badge-subtext {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.4;
}

/* ========================================
   Content column
   ======================================== */
.about-content {
    padding-left: var(--spacing-md);
}

.about-content h2 {
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-intro {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.about-content p {
    color: var(--text-body);
    font-family: var(--font-body);
    margin-bottom: var(--spacing-md);
    line-height: 1.65;
}

/* ========================================
   Highlights: 2×2 grid with gold rhombus marker
   ======================================== */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg) var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.highlight-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

/* Repurpose the old icon div as a small gold rhombus marker */
.highlight-icon {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 0;
    margin-top: 0.55em;
    transform: rotate(45deg);
    font-size: 0;
    color: transparent;
}

.highlight-content h4 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.highlight-content p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 0;
}

/* ========================================
   CTA
   ======================================== */
.about-cta {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.about .btn-primary {
    background: var(--secondary);
    border-radius: 3px;
    box-shadow: 0 4px 14px rgba(15, 139, 100, 0.15);
}

.about .btn-primary:hover {
    background: var(--secondary-dark);
    box-shadow: 0 6px 18px rgba(15, 139, 100, 0.22);
}

.btn-text-link {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 0.25s ease, color 0.25s ease;
}

.btn-text-link:hover {
    color: var(--secondary);
    gap: 0.75em;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .about-content {
        padding-left: 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--spacing-lg);
        max-width: 280px;
    }
}

@media (max-width: 767px) {
    .about {
        padding: var(--spacing-3xl) 0;
    }
}

@media (max-width: 575px) {
    .about-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }

    .about-cta .btn,
    .about-cta .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Animation
   ======================================== */
@keyframes aboutFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-images,
.about-content {
    animation: aboutFadeIn 0.8s ease-out;
}
