/* ===============================================
   taniltsuulga.css — Танилцуулга хуудас
   =============================================== */

/* ===== STATS STRIP ===== */
.stats-strip {
    padding: 48px 24px 0;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: var(--blue-deep);
    border-radius: var(--radius-md);
    padding: 26px 20px;
    text-align: center;
    color: var(--white);
}

.stat-card--gold {
    background: var(--gold);
    color: var(--text-dark);
}

.stat-num {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12.5px;
    opacity: 0.8;
    line-height: 1.4;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 24px 80px;
}

.intro-image {
    text-align: center;
    margin-bottom: 52px;
}

.intro-image img {
    width: 100%;
    max-width: 860px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.13);
    display: block;
    margin: 0 auto;
}

.intro-caption {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.intro-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    margin-bottom: 28px;
}

.section-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.intro-heading {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--blue-light);
}

.intro-block p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-mid);
    text-align: justify;
    margin-bottom: 14px;
}

.intro-block p:last-child { margin-bottom: 0; }

/* ===== TIMELINE ===== */
.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 8px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-mid), var(--blue-light));
    border-radius: 2px;
}

.tl-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 28px;
    position: relative;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 58, 143, 0.22);
}

.tl-dot--gold {
    background: var(--gold);
    color: var(--text-dark);
    box-shadow: 0 4px 18px rgba(245, 197, 66, 0.38);
}

.tl-year-num { font-size: 12px; font-weight: 600; line-height: 1; }
.tl-year-sub { font-size: 9px; opacity: 0.7; margin-top: 2px; }

.tl-body {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: box-shadow 0.2s;
}

.tl-body:hover { box-shadow: 0 8px 28px rgba(0, 58, 143, 0.08); }

.tl-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--blue-mid);
    background: var(--blue-light);
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.tl-tag--gold { color: var(--gold-dark); background: #fdf5d8; }

.tl-body p {
    font-size: 15px;
    line-height: 1.78;
    color: var(--text-mid);
    margin: 0;
    text-align: justify;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .intro-section { padding: 36px 16px 60px; }
    .intro-block { padding: 28px 22px; }
}