.features-container {
    margin: 20px auto;
    flex-direction: column;
    max-width: 1140px;
    width: 100%;

    display: flex;
    justify-content: center;
}

.features-intro-container {
    width: 95%;
    margin: 0 auto;
    height: 100px;
    flex-shrink: 0;

    display: flex;
    justify-content: space-between;
}

.features-intro-title {
    height: 31px;
    flex-shrink: 0;
}

.features-intro-title>h3 {
    color: var(--Main-Color);
    margin: 0;
    /* Heading 3 */
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.features-intro-content {
    width: 280px;
    flex-shrink: 0;
    height: 100%;
}

.features-intro-content>h2 {
    width: 210px;

    color: var(--Main-Color);
    text-align: right;
    margin: 0 0 6.25rem 70px;
    /* Serif Body 2 */
    font-family: Centaur, serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 93.75% */
    letter-spacing: 0;
}

.editors-picks-title-line {
    width: 100%;
    display: flex;
    align-items: flex-end;
}


/*
articles
*/
.articles-container {
    width: 100%;
    margin-left: 5%;
    max-width: 733px;
    min-height: 600px;
    flex-shrink: 0;
}

.articles-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.article-item {
  display: none;
}

.article {
    width: 100%;
    flex-shrink: 0;
    margin: 15px 0;

    display: flex;
}

.article-thumbnail>img {
    width: 220px;
    height: auto;        /* 🔥 remove fixed height */
    aspect-ratio: 220 / 145;    flex-shrink: 0;
    object-fit: cover;
}
.article-thumbnail#opinion>img{
    height:auto;
}

.article-preview-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
    flex: 1;
    min-width: 0;
}

.article-preview-title {
    height: 31px;

    color: var(--Text-Color);

    flex: 1;
    min-width: 0;
    white-space: normal;
    word-break: break-word;
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;

    /* Heading 3 */
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    display: flex;
    align-items: center;
}

.article-preview-author {
    height: 22px;
    flex-shrink: 0;

    margin-top: 5px;
    margin-bottom: 13px;
    color: var(--Text-Color);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#loadMoreBtn {
    font-family: 'Jost';
    font-size: 16px;
    border: 2px solid var(--Line-Color);
    padding: 5px 10px;
}
button:hover {
    cursor: pointer;
    background-color: #D9D9D9;
}

.article-preview-content {
    height: 72px;
    flex-shrink: 0;

    color: var(--Text-Color);

    /* Body */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;


    min-width: 0;
    min-height: 0;
    white-space: normal;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
quickNavBar-line {
    margin: 0 0 0 4.375rem;
    border-color: var(--Main-Color);
}

@media (max-width: 1024px) {
    .features-intro-content {
        display: none;
    }
    .articles-container {
        margin: 0 auto;
    }
}

@media (max-width: 770px) {

    .article {
        width: 90%;
        margin: 20px auto;
        flex-direction: column;   /* 🔥 stack vertically */
    }

    .article-preview-container {
        margin-left: 0;           /* remove side spacing */
        margin-top: 10px;         /* space under image */
    }

    .article-thumbnail > img {
        width: 100%;              /* optional: make image full width */
    }

}