.article-plp-main.articles-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.articles-section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
}

.articles-section__title {
    color: var(--color-dark);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.articles-section__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.articles-section__grid .swiper-wrapper > .swiper-slide {
    height: -webkit-fill-available;
}

.articles-section__footer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
}

.articles-section__view-all {
    display: flex;
    width: 40%;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: var(--color-surface);
    transition: all 0.2s ease;
    max-width: 240px;
}

.articles-section__view-all:hover {
    scale: 1.05;
}

/* Pagination and nav – same as team/reviews swipers */
.article-plp-main.articles-section .articles-swiper {
    padding-bottom: 24px !important;
    position: relative;
    width: 100%;
}

.article-plp-main.articles-section .articles-swiper__pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.article-plp-main.articles-section .articles-swiper .swiper-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 16px;
}

.article-plp-main.articles-section .articles-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-secondary-muted);
    opacity: 1;
}

.article-plp-main.articles-section .articles-swiper .swiper-pagination-bullet-active {
    background: var(--color-dark);
}

.article-plp-main.articles-section .articles-swiper__nav {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-primary);
    margin: 0 8px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.article-plp-main.articles-section .articles-swiper__nav::after {
    display: none;
}

.article-plp-main.articles-section .articles-swiper__nav img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
}

.article-plp-main.articles-section .articles-swiper__nav.swiper-button-disabled {
    background: var(--color-secondary-muted);
    opacity: 1;
    cursor: not-allowed;
}

.article-plp-main.articles-section .articles-swiper__nav:not(.swiper-button-disabled):hover {
    transform: scale(1.05);
}
.article-plp-main .article-wrapper{
    height: -webkit-fill-available;
}
@media screen and (min-width: 1200px) {
    .article-plp-main .article-wrapper{
        max-width: 450px;
    }
    
}
@media screen and (max-width: 992px) {
    .article-wrapper {
        justify-self: center;
    }
}

@media screen and (max-width: 576px) {
    .article-plp-main.articles-section .article-img-wrapper {
        display: none;
    }

    .article-plp-main.articles-section .article-detail-wrapper > span {
        display: none;
    }

    .article-plp-main.articles-section .author-wrapper {
        display: none;
    }
}
