﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: #000000;
}

/* PAGE WRAPPER */
.learnmore-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px 80px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-current {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 6px;
    color: #6b7280;
}

/* TITLE */
.page-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 40px;
}

/* GRID */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;

}

/* CARD */
.info-card {
    background: #f1f1ef;
    border-radius: 12px;
    padding: 28px 32px;
}

    .info-card h2 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .info-card p {
        font-size: 16px;
        line-height: 1.7;
        color: #1f2937;
        margin-bottom: 14px;
    }

    .info-card .meta {
        margin-top: 12px;
    }

/* PILLS */
.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.pill {
    background: #7a7a7a;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

/* LINK */
.info-link a {
    color: #2563eb;
    text-decoration: underline;
}

/* FOOTER */
.page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    margin-bottom: 5rem;
}

/* BACK BUTTON */
.back-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    color: #6b7280;
}

/* START BUTTON */
.start-button {
    background: #476fa3;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .start-button .arrow {
        font-size: 20px;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 32px;
    }
}
