/* ==========================================================================
   CONCLUSION & KEY LEARNINGS STYLES (SECTION 10)
   ========================================================================== */

.conclusion-section {
    width: 100%;
    margin-top: 48px;
    margin-bottom: 80px;
}

/* Intro Text */
.conclusion-intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

/* Learning Cards Grid */
.learnings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

/* Card Styling */
.learning-card {
    background-color: var(--surface-card);
    /* Dark charcoal */
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.learning-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-orange);
}

/* Icon */
.learning-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 102, 46, 0.1);
    /* Low opacity orange */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.learning-icon {
    font-size: 28px;
    color: var(--primary-orange);
}

/* Card Content */
.learning-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.learning-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .learnings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .learning-card:last-child {
        grid-column: span 2;
        /* Center the last one if 3 items */
    }
}

@media (max-width: 768px) {
    .learning-title {
        font-size: 16px;
    }

    .learnings-grid {
        grid-template-columns: 1fr;
    }

    .learning-card:last-child {
        grid-column: span 1;
    }

    .learning-card {
        align-items: center;
        text-align: center;
    }

    .conclusion-intro {
        font-size: 16px;
    }
}