.container {
    padding-bottom: 4rem;
}

.bold {
    font-weight: 600;
}

h2 {
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

.header {
    padding: 4.5rem 2rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 22px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)), url("../img/003.jpg");
    background-size: cover;
    background-position: left center;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.header-wrap {
    max-width: 680px;
    margin: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    padding: 2.2rem 2.4rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    color: #fff;
}

.header h1 {
    font-size: clamp(2rem, 2.8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.header h1::after {
    display: none;
}

.header p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.header a {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header a:hover {
    border-color: #fff;
}

.home-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -1.2rem 0 2rem;
}

.home-quick-links .pill {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.home-quick-links .pill i {
    margin-right: .5rem;
}

.home-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.kpi-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform .2s ease;
}

.kpi-card:hover {
    transform: translateY(-3px);
}

.kpi-label {
    font-size: .85rem;
    color: #777;
    margin-bottom: 0.25rem;
}

.kpi-label_prob {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 0.25rem;
}

.kpi-label i {
    margin-right: 0.4rem;
}

.kpi-value {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.kpi-big {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.kpi-mid {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.kpi-small_prob {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.kpi-sub {
    font-size: .9rem;
    color: #555;
}

.kpi-link {
    text-decoration: none;
    color: inherit;
    border-left: 6px solid var(--accent);
}

.home-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0 0;
    align-items: start;
}

.hl-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.hl-card h2 {
    margin-bottom: .8rem;
}

.hl-card i {
    margin-right: .6rem;
}

.hl-text {
    margin-bottom: 1rem;
}

.hl-card-footer {
    text-align: right;
}

.hl-card-footer i {
    margin: 0;
    margin-left: .4rem;
}

.home-news-item {
    padding: .7rem .1rem;
    border-bottom: 1px solid #f0f0f0;
}

.home-news-item:last-child {
    border-bottom: 0;
}

.home-news-date {
    font-size: .85rem;
    color: #777;
    margin-bottom: .25rem;
}

@media (max-width: 992px) {
    .home-highlights {
        grid-template-columns: 1fr;
    }
}

.home-seminars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.seminar-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.2rem 1.3rem;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    margin-bottom: 1rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.seminar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.seminar-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: .25rem;
}

.seminar-card span {
    color: #555;
}

.seminar-card small {
    display: block;
    margin-top: .35rem;
    color: #777;
}

.seminar-column.past {
    opacity: 0.9;
}

.seminar-column.past h2 {
    color: #666;
}

.seminar-column h2 {
    margin-bottom: 1rem;
}


.seminar-column i {
    margin-right: .6rem;
}

@media (max-width: 992px) {
    .home-seminars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 2rem 1rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }

    .header-wrap {
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }

    .header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .header p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .header a {
        font-size: 0.9rem;
    }

    .home-kpis {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .kpi-card {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .kpi-big {
        font-size: 1.8rem;
    }

    .kpi-mid {
        font-size: 1.25rem;
    }

    .home-seminars {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .seminar-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .seminar-card strong {
        font-size: 0.95rem;
    }

    .home-highlights {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hl-card {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .hl-card h2 {
        font-size: 1.15rem;
    }

    .hl-text {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .container {
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }

    .header-wrap {
        padding: 1.8rem;
    }

    .header h1 {
        font-size: 1.75rem;
    }

    .home-kpis {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-seminars {
        grid-template-columns: 1fr;
    }

    .home-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}