:root {
    --Text-invert: #ffffff;
    --Text-brand-primary: #0a59ab;
    --Text-brand-secondary: #f1592b;
    --Text-primary: #101010;
    --Text-secondary: #606060;
}

.title-category {
    margin: 20px 0;
}

.title-category a {
    font-size: 20px;
    font-family: 'Merriweather', 'Inter', sans-serif;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.timeline-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 1.2rem;
    text-align: center;
    border-top: 4px solid #034488;
    transition: all 0.3s ease;
}

.timeline-item h3 {
    color: #034488;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text);
    font-size: 0.95rem;
}

.contents-page {
    margin-bottom: 40px;
}

.link {
    color: #1155cc;
    font-weight: 700;
    text-decoration: underline;
}

.link:hover {
    text-decoration: underline;
}

.documents {
    list-style: none;
    padding-left: 0;
}

.documents li {
    position: relative;
}

.documents li::before {
    content: '\f058';
    font-family: 'fontawesome';
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
    color: #00ba00;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .title-category {
        margin: 25px 0;
    }

    .title-category a {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
}

@media (min-width: 1024px) {
    .title-category {
        margin: 30px 0;
    }

    .title-category a {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .title-category {
        margin: 35px 0;
    }

    .documents li {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 4px;
    }
}

@media (min-width: 1400px) {
    .title-category {
        margin: 40px 0;
    }

    .title-category a {
        font-size: 32px;
    }
}
