@import url('index.css');

.container {
    width: 100%;
    max-width: 75%;
    min-height: 80vh;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.content-container {
    /* width: 75%; */
    min-height: 80vh;
    padding: 20px;
}

.date {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.intro {
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 300;
    color: #666666;
}

.heading {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.text {
    font-size: 0.9rem;
    margin-bottom: 6px;
    font-weight: 300;
    color: #666666;
}

ol {
    counter-reset: item;
    list-style-type: decimal;
    padding-left: 40px;
}

ol ol {
    padding-left: 20px;
}

ol ol ol {
    list-style-type: lower-alpha;
}

li {
    margin-bottom: 5px;
}

.notice {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-container {
        width: 100%;
    }
}