.article-carousel-outer-wrapper-20780908 {
    width: 100%;
    margin: 40px auto;
}
.article-carousel-container-20780908 {
    position: relative;
    width: 100%;
    padding: 0 60px; /* Generous padding on left/right for navigation arrows offset */
    box-sizing: border-box;
}
.article-carousel-viewport-20780908 {
    overflow: hidden;
    width: 100%;
}
.article-carousel-track-20780908 {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.article-carousel-card-20780908 {
    flex: 0 0 calc(50% - 15px); /* Exactly 2 cards per view */
    margin-right: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    height: auto;
}
@media (max-width: 1024px) {
    .article-carousel-container-20780908 {
        padding: 0 45px;
    }
    .article-carousel-card-20780908 {
        flex: 0 0 calc(50% - 10px);
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .article-carousel-container-20780908 {
        padding: 0 35px;
    }
    .article-carousel-card-20780908 {
        flex: 0 0 100%;
        margin-right: 0px;
    }
}

/* Header style with Adaptive/Uncropped Image */
.acc-header-20780908 {
    position: relative;
    width: 100%;
    background: #F1F5F9;
    overflow: hidden;
}
.acc-header-20780908 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Body */
.acc-body-20780908 {
    padding: 30px 30px 28px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.acc-title-20780908 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1.25;
    color: #2563EB;
    margin: 0 0 15px 0;
}
.acc-excerpt-20780908 {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.45;
    color: #334155;
    margin: 0 0 20px 0;
}

/* Button style */
.acc-read-more-btn-20780908 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 10px 20px;
    background-color: #2563EB;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}
.acc-read-more-btn-20780908:hover {
    background-color: #1d4ed8;
}

.acc-divider-20780908 {
    height: 1px;
    background-color: #e2e8f0;
    margin: auto 0 20px 0;
}
.acc-metadata-20780908 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748B;
    font-size: 14px;
    font-weight: 500;
}
.acc-reading-time-20780908 {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Nav buttons - Vertical Centered strictly relative to cards, no background, border, or padding */
.acc-nav-btn-20780908 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    z-index: 10;
}
.acc-nav-btn-20780908:hover {
    transform: translateY(-50%) scale(1.2);
}
.acc-nav-btn-20780908 svg {
    width: 40px;
    height: 40px;
    fill: #475569; /* Slate-600, elegant dark grey */
    transition: fill 0.2s ease;
}
.acc-nav-btn-20780908:hover svg {
    fill: #1e293b; /* Darker Slate-800 on hover */
}
.acc-nav-btn-prev-20780908 {
    left: 8px; /* Safe outside padding gap */
}
.acc-nav-btn-next-20780908 {
    right: 8px; /* Safe outside padding gap */
}

/* Dots Navigation */
.acc-dots-20780908 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.acc-dot-20780908 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1; /* Grey background */
    cursor: pointer;
    transition: all 0.3s ease;
}
.acc-dot-20780908.active {
    background-color: #64748B; /* Darker grey active dot */
    transform: scale(1.1);
}
