section#article-list {
    padding-top: 36px;
}
section#article-list .title {
    border-top: 8px solid #01c0e8;
    border-bottom: 1px solid #292929;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
section#article-list a.total {
    font-family: Avenir;
    letter-spacing: 0;
    text-align: center;
    font-size: 15px;
    text-decoration: underline;
    color: #707070;
}
section#article-list .pt-36 {
    padding-top: 36px;
}
section#article-list h2 {
    font-family: Avenir;
    letter-spacing: 0px;
    color: #292929;
    text-align: left;
    font-weight: 700;
    font-size: 24px;
    margin-top: 16px;
}
section#article-list .article-image {
    width: 100%;
    height: 200px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}
section#article-list .mb-36 {
    margin-bottom: 36px;
}

section#article-list .hover-pointer {
    cursor: pointer;
}
.mx-auto-img {
    margin-right: auto !important;
    margin-left: auto !important;
}
article#emphasized h1 {
    letter-spacing: 0px;
    color: #292929;
    text-align: left;
    font-size: 36px;
    font-family: Avenir;
    opacity: 1;
    margin: 43px 0;
}
article#emphasized h1::after {
    content: '';
    border-bottom: 4px solid #01C0E8;
    width: 114px;
    display: block;
    padding-top: 10px;
}
article#emphasized p {
    font-weight: 400;
    font-size: 18px;
    font-family: Avenir;
    letter-spacing: 1px;
    color: #292929;
    opacity: 1;
    margin: 0 0 44px 0;
    text-align: justify;
}
article#emphasized .font-bold {
    font-weight: bold;
}
.article-numbered-list {
    font-weight: 400;
    font-size: 18px;
    font-family: Avenir;
    letter-spacing: 1px;
    color: #292929;
    opacity: 1;
    margin: 0 0 44px 0;
    text-align: justify;
}
.article-numbered-list a {
    color: #01c0e8 !important;
}
.reading-time {
    margin-top: -25px!important;
    margin-bottom: 0px!important;
    font-size: 16px!important;
    color: #666666!important;
}
.width-100 {
    width: 100%;
}
section#filter-sidebar .title {
    border-top: 8px solid #01C0E8;
}
section#filter-sidebar .title h1 {
    margin: 20px 0;
    font-family: Avenir;
    letter-spacing: 0px;
    color: #292929;
    text-align: left;
    font-weight: 700;
    font-size: 36px;
}
section#filter-sidebar a {
    color: #292929;
    text-decoration: none;
}
section#filter-sidebar .filter-category-toggle h4 {
    font-style: normal;
    font-weight: 700;
    font-family: Avenir;
    letter-spacing: 0px;
    color: #292929;
    font-size: 22px;
    line-height: 30px;
    opacity: 1;
    border-top: 1px solid #292929;
    padding: 26px 0;
}
section#filter-sidebar .filter-category-toggle ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
section#filter-sidebar .filter-category-toggle ul li:first-child {
    margin-top: 0;
}

section#filter-sidebar .filter-category-toggle ul li {
    margin: 26px 0 0 0;
}
.secondary-articles {
    color: #292929;
    text-decoration: none !important;
}
.article-card {
    background: #ffffff; /* White background */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    overflow: hidden; /* Ensure the image stays rounded */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    padding: 16px;
    text-align: center; /* Centers text */
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Ensures it stretches to full height */
    justify-content: space-between;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15); /* Stronger shadow */
}

.article-image {
    border-radius: 8px; /* Softly rounded corners for the image */
    object-fit: scale-down; /* Ensures good scaling */
    max-height: 200px; /* Limits image height */
}

.article-card h2 {
    font-size: 1.5rem;
    margin-top: 12px;
    color: #333; /* Darker text */
    font-weight: bold;
}

.no-decoration {
    text-decoration: none; /* Remove underline */
    color: inherit;
}
/* Date Styling */
.article-date {
    position: absolute;
    top: 100%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #777;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 12px;
    /* writing-mode: vertical-rl; */
    text-align: center;
}
