.article-section {
    margin: 58px 0 96px 0;
    /* border: 1px solid red; */
}

.article-main-heading {
    text-align: center;
    color: var(--DarkBlue, #002147);
    font-family: var(--second-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.article {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(14, 17, 20, 0.13);
}
.article-card {
    display: flex;
    width: 100%;
    /* height: 80px; */
    padding: 24px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid var(--blue-58, rgba(26, 134, 213, 0.58));
    background: #fffefe;
    transition: all 0.3s;
    cursor: pointer;
    gap: 24px;
}
.article-card a h2 {
    margin-bottom: 0;
    color: #002147;
}
.article-card:hover {
    background: var(--DarkBlue, #002147);
}

.article-card:hover .article-heading {
    color: white;
}

.article-heading {
    font-family: var(--main-font);
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.24px;
    text-align: left;
    color: var(--DarkBlue);
}
.article-title {
    color: var(--DarkBlue, #002147);
    font-family: "Libre Baskerville";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.article-search {
    align-items: center;
    flex-grow: 1;
    margin-top: 32px;
    margin-bottom: 40px;
    display: flex;
    max-width: 1000px;
    padding: 16px;
    align-items: center;
    gap: 14px;
    border-radius: 8px;
    border: 0.4px solid var(--grey-second, #d3d3d3);
    background: #f5f5f5;
    transition: all 0.3s;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.article-search input {
    outline: none;
    border: none;
    background: #f5f5f5;
    flex-grow: 1;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}



.article-body h4 {
    font-family: var(--main-font);
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #0e1114;
    margin-bottom: 12px;
}

.article-body img {

    width: 100%;
    max-width: 700px;
}

.article-body p,
.article-body ol li,
.article-body ul li,
.article-body a,
.article span {
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: rgba(14, 17, 20, 0.85);
    margin-bottom: 8px;
    /* border: 1px solid red; */
}

ol {
    margin: 0 !important;
    padding: 0 !important;
    list-style-position: inside !important;
}
ol li {
    text-indent: 0;
}
.article-body ul {
    list-style: none;

    padding: 0;
    margin: 0;
}
.article-body ul li,
.article-body ul ul li {
    padding-left: 8px;
    text-indent: 0;
}

.article-body ul ul li::before {
    content: "•";
    font-size: 22px;
    color: var(--main-color);
}
.article-body ul li::before {
    content: "•";
    font-size: 22px;
    color: var(--main-color);
}
.article-body a {
    color: var(--DarkBlue);

    text-decoration: underline;
}
.article-body ol {
    list-style-position: inside !important;
}
@media (max-width: 770px) {
    .article-section {
        margin: 48px 0 32px 0;
    }
    .article-main-heading {
        color: var(--DarkBlue, #002147);
        font-family: "Libre Baskerville";
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: capitalize;
    }
    .article-search input {
        flex-grow: none;
    }
    .article-search img {
        width: 32px !important;
    }
    .article-card img {
        width: 32px !important;
    }
    .article-heading {
        /* margin-top: 12px; */
        font-size: 16px;
        letter-spacing: 0.16px;
        /* margin-bottom: 8px; */
    }
}
@media (max-width: 576px) {
    .article-section {
        margin: 40px 0 24px 0;
    }
    .article-main-heading {
        color: var(--DarkBlue, #002147);
        font-family: "Libre Baskerville";
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: capitalize;
    }
    .article {
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(14, 17, 20, 0.13);
    }
    .article-body h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .article-body p,
    .article-body ol li,
    .article-body ul li,
    .article-body a,
    .article span {
        font-size: 14px;
        line-height: 1.71;
        /* overflow: hidden; */
    }
    .article-body a img{
        width: 100% !important;
        height: auto !important;
    }
}
