.article-post-section {
    position: relative;
    background-color: var(--white);
    border-radius: 50px;
}
.article-post-section::after {
    content: "";
    position: absolute;
    background-color: var(--sky-blue-color);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.article-post-section-wrapper .heading-group {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 82px;
}
.article-post-section-wrapper .small-heading {
  font-weight: 400;
  margin-bottom: 0;
}
.article-post-section-wrapper .small-heading strong {
  display: block;
}
.article-post-section-wrapper .article-post-list-data-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.article-post-section-wrapper .article-post-meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.5s ease-in-out;
}

.article-post-section-wrapper .article-post-list-meta-data {
    padding-right: 15px;
}

.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner {
    padding-top: 29px;
    padding-bottom: 21px;
    border-top: 1px solid rgba(0,0,0, 0.10);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    position: relative;
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item .article-post-list-item-inner:last-child {
    border-bottom: 1px solid rgba(0,0,0, 0.10);
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner .article-post-data {
    max-width: 76%;
    position: relative;
    transition: all .5s ease-in-out;
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner .article-post-data:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    width: 5px;
    background-color: var(--secondary-color);
    transition: all .4s ease-in-out;
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner .category_name {
    font-size: var(--font-16);
    font-weight: 400;
    line-height: 1.367;
    color: var(--primary-color);
    margin-bottom: 2px;
    transition: all 0.5s ease-in-out;
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner .title {
    font-weight: 600;
    font-size: var(--font-24);
    line-height: 1.417;
    transition: all 0.5s ease-in-out;
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner .post-link {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner .post-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner:hover .article-post-data {
    padding-left: 30px;
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner:hover .article-post-data:after {
    height: 100%;
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner:hover {
    background-color: var(--primary-color);
}

.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner:hover .category_name {
    color: var(--white);
}

.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner:hover  .title {
    color: var(--white);
}
.article-post-section-wrapper .article-post-list-meta-data .article-post-list-item-inner:hover .post-link {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-right: 30px;
}

.article-post-section-wrapper .article-post-list-images-lists {
    position: relative;
}
.article-post-section-wrapper .article-post-list-image-item {
    display: none;
}
.article-post-section-wrapper .article-post-list-image-item .article-post-list-image-item-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.article-post-section-wrapper .article-post-list-image-item:first-child {
    display: block;
}
.article-post-section-wrapper .article-post-list-image-item .article-post-image {
    position: relative;
}
.article-post-section-wrapper .article-post-list-image-item .article-post-image:after {
    content: "";
    display: block;
    padding: 44.937%;
}
.article-post-section-wrapper .article-post-list-image-item .article-post-image .featured-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}