/* ════════════════════════════════════════════════ */
/* ▶ SECTION STYLING                                */
/* ════════════════════════════════════════════════ */

.section1 { background-color: #ffce00; }
.section2 { background-color: #f17fb2; }
.section3 { background-color: #f17fb2; }
.section4 { background-color: #ee3a37; }


/* ════════════════════════════════════════════════ */
/* ▶ NAVBAR: ACTIVE PAGE                            */
/* ════════════════════════════════════════════════ */

li .nav-button-news {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

li .nav-button-news:hover {
    color: #0051a4;
}


/* ════════════════════════════════════════════════ */
/* ▶ NEWS FLEXBOX                                   */
/* ════════════════════════════════════════════════ */

.post-container {
    background: white;
    color: #222;
    border-radius: 16px;
    box-shadow: 5px 15px 10px rgba(0, 0, 0, 0.1);
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}



.post-title {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.post-date {
    display: inline;
    font-size: 1.1rem;
    color: #666;
    font-weight: lighter;
    margin-right: 10px;
}

.post-content {
    font-weight: lighter;
    line-height: 1.5;
    color: #333;
    font-size: 1.2rem;
    text-align: justify;
    margin-top: 20px;
    /* word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto; */
}

.post-content ul,
.post-content ol {
    margin-left: 0.5em;   /* Increase for more indent */
    padding-left: 1em;
}

.post-content li {
    margin-bottom: 0.3em; /* Optional: space between items */
}

.address-label {
    font-weight: normal;
    line-height: 1.5;
    color: #333;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 10vh;
    text-align: left;
}

.address {
    font-weight: lighter;
    line-height: 1.5;
    color: #333;
    font-size: 1.2rem;
    text-align: left;
}

.normal-button {
    margin-top: 30px
}