    * {
        box-sizing: border-box;
    }

    body {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        display: block;
        height: 100%;
        width: 100%;
    }
    .main-body-section {
        width: 100%;
        justify-content: space-between;
    }
    .main-body-section > .articles-section {
        display: flex;
        max-width: 800px;
        gap: 5%;
        width: 100%;
        margin: auto;
    }

    .left-articles,
    .right-articles {
        flex: 1;
    }

    .article-type {
        margin-bottom: 3em;
    }

    .article-type h3 {
        margin-bottom: 0.5em;
        color: #2a93d5;
    }
    .article-type h3::after {
        content: "";
        display: block;
        width: 50px;
        height: 1px;
        background-color: black;
        margin-top: 10px;
    }

    .article-list {
        overflow: hidden;
        transition: max-height 0.4s ease;
        color: black;
        padding: 0;
        margin-bottom: 0px;
    }

    .article-list.collapsed {
        max-height: 180px;
    }

    .article-list li {
        list-style: none;
        margin-bottom: 10px;
        position: relative;
        font-size: 0.8em;
    }

    .article-list li::after {
        content: "";
        display: block;
        width: 50px;
        height: 1px;
        background-color: #eee;
        margin-top: 10px;
    }

    .article-list a {
        text-decoration: none;
        color: black;
        display: block;
    }
    .article-list a:hover {
        text-decoration: underline;
    }
    .toggle-btn {
        cursor: pointer;
        color: #125488;
        font-weight: 700;
        font-size: .7em;
    }
    .toggle-wrapper img {
        height: 8px;
        padding-bottom: 2px;
        margin-left:3px;
    }

    .toggle-btn:hover {
        background-color: #f9f9f9;
    }

    .section-divider {
        border: none;
        border-top: 2px solid #ddd;
        width: 50px;
        margin: 20px 0 30px 0;
    }

    .main-body-section > .featured {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 5%;
    }

    .main-body-section > .featured > .featured-article > .featured-article-link {
        max-width: 600px;
        min-width: 200px;
        background-color: #f2f2f2;
        align-content: center;

    }

    .main-body-section > .featured > .featured-article > .featured-article-link > .featured-article-img img {
        max-width: 100%;
        padding-top: 5%;
        max-height: 200px;
        height:100%;
        object-fit: fill;
        display: block;
        margin: auto;
    }

    .main-body-section > .featured > .featured-article > .featured-article-link,
    .featured-article-link h1,
    .featured-article-link h3,
    .featured-article-link p {
        color: black;
        text-decoration: none;
        font-size: 0.8em;
        margin: 7.5px 0;
    }
    .featured-article-link p {
        text-transform: uppercase;
        font-weight: 700;
        color: #125488;
    }
    .featured-article-link h3 {
        font-weight: 400;
        font-size: 1em;
    }

    .featured-article h5 {
        color: #2a93d5;
        margin: 0;
    }

    .featured-article-link h1 {
        font-size: 1.5em;
        overflow-wrap: break-word;
    }

    .main-body-section > .featured > .featured-article > .featured-article-link a {
        color: black;
        text-decoration: none;
    }
    .featured {
        display: block;
        width: 100%;
        max-width: 800px;
        margin: auto;
    }
    .featured-header {
        width: 100%;
        max-width: 800px;
        margin: auto;
    }
    .featured-header h1 {
        margin: 0 0 20px 0;
    }







/* Smooth animation */
.article-list {
  max-height: 9999px;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Hide extra list items by default */
.article-list li.hidden {
  display: none;
}

/* Arrow flip transition */
.toggle-btn img {
  transition: transform 0.3s ease;
}

/* Rotates down by default, flips up when expanded */
.toggle-btn.expanded img {
  transform: rotate(180deg);
}
