.listing_section .h1 {
    margin-bottom: 32px;
    font-size: 42px;
}
.listing_section .h1 b {
    color: var(--color-10);
}


.articles-items {
    row-gap: 48px;
}
.articles-item {
    box-shadow: -3px 6px 40px 0 rgba(121, 121, 121, 0.1);
    background: #fff;
    border-radius: 30px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.articles-item-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    width: 100%;
}

.articles-item-doctor {
    display: flex;
    align-items: center;
    gap: 10px;
}
.articles-item-doctor img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 10em;
    overflow: hidden;
    object-position: 50% 0;
    object-fit: cover;
}
.articles-item-doctor .name {
    color: var(--color-7);
    font-size: 16px;
}
.articles-item-doctor .name span {
    display: block;
    font-weight: 700;
}
.articles-item-category span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    border-radius: 10em;
    height: 30px;
    font-size: 12px;
    padding: 0 12px;
    background-color: var(--color-22);
    color: #fff;
    transition: background-color .25s ease;
}
a.articles-item-category:hover span {
    background-color: var(--color-25);
}
.articles-item-image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}
a.articles-item-image:hover img {
    box-shadow: -4px 7px 49px 0 rgba(121, 121, 121, 0.25);
}
.articles-item-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: var(--lineheight-title);
    color: var(--color-8);
}
a.articles-item-title:hover {
    color: var(--color-7);
}
.articles-item-image img {
    border-radius: 20px;
    overflow: hidden;
    height: 120px;
    object-fit: cover;
    object-position: 0 0;
    width: 100%;
    transition: box-shadow .25s ease;
}

.articles-item-2 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    margin-top: auto;
}

.articles-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px 6px;
    flex-wrap: wrap;
    margin-top: auto;
}
.articles-item-image + .articles-item-bottom {
    margin-top: 0;
}
.articles-item-bottom .left {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 3px;
}
.articles-item-bottom .left .item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.articles-item-bottom .btn {
    height: 36px;
    font-size: 14px;
    padding: 0 20px;
}
.articles-item-date {
    font-size: 14px;
}
.listing_more {
    width: fit-content;
    margin: 40px auto 0;
}
@media screen and (max-width: 992px) {
    .listing_section .h1 {
        font-size: 24px;
    }
    .articles-items {
        row-gap: 32px;
    }
}
@media screen and (max-width: 576px) {
    .articles-item-2 {
        margin-bottom: 16px;
        gap: 6px;
    }
    .articles-item-image {
        margin-bottom: 15px;
    }
    .articles-item-bottom .left {
        padding-left: 0;
        gap: 5px;
    }
    .articles-item-doctor {
        gap: 10px;
    }
    .articles-item-doctor img {
        height: 40px;
        min-width: 40px;
        width: 40px;
    }
    .articles-item-bottom .btn {
        font-size: 14px;
    }
    .articles-items {
        row-gap: 20px;
    }
    .articles-item-bottom .left .item {
        font-size: 12px;
        gap: 4px;
    }
    .articles-item-bottom .right {
        width: 100%;
    }
    .articles-item-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .articles-item-date {
        font-size: 12px;
    }
    .articles-item-image img {
        height: 28vw;
        border-radius: 10px;
    }
    .articles-item-title {
        font-size: 16px;
        line-height: var(--lineheight-title);
        font-weight: 500;
        padding-right: 0;
    }
    .articles-item-1 {
        gap: 6px;
        margin-bottom: 10px;
    }
    .articles-item-doctor .name {
        font-size: 12px;
    }
    .articles-item {
        padding: 16px;
        box-shadow: -2px 4px 30px 0 rgba(121, 121, 121, 0.1);
        border-radius: 16px;
    }
    .articles-item-doctor .name span {
        text-transform: uppercase;
    }
    .articles-item-bottom .left .item img {
        max-width: 14px;
    }
    .articles-item-bottom .left .item:nth-child(2) img {
        max-width: 16px;
    }
    .listing_more {
        max-width: 380px;
        width: 100%;
        margin-top: 32px;
    }
}
