.adelina-posts-carousel-container {
    position: relative;
    padding-bottom: 2rem;
}

/* Ensure the grid within carousel is cleaner and more responsive */
.adelina-posts-carousel-container .article-list {
    grid-template-columns: repeat(var(--carousel-columns, 3), minmax(0, 1fr));
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.adelina-posts-carousel-container .carousel-item {
    animation: fadeIn 0.5s ease-out;
    min-width: 0;
    /* Crucial for equal width grid columns */
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.adelina-posts-carousel-container .entry-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1.5rem;
}

.adelina-posts-carousel-container .read-more {
    margin-top: auto;
    align-self: flex-start;
}

.adelina-posts-carousel-container .entry-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 0;
}

.adelina-posts-carousel-container .carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.adelina-posts-carousel-container .carousel-prev,
.adelina-posts-carousel-container .carousel-next {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.adelina-posts-carousel-container .carousel-prev:hover,
.adelina-posts-carousel-container .carousel-next:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.adelina-posts-carousel-container .carousel-prev:disabled,
.adelina-posts-carousel-container .carousel-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
    transform: none;
    box-shadow: none;
}

.adelina-posts-carousel-container .carousel-prev svg,
.adelina-posts-carousel-container .carousel-next svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 48rem) {
    .adelina-posts-carousel-container .article-list {
        grid-template-columns: 1fr;
        /* Full width on mobile */
        gap: 1.5rem;
        /* Standardized gap */
    }

    .adelina-posts-carousel-container .carousel-item {
        padding: 1.5rem;
        /* Standardized padding */
    }

    .adelina-posts-carousel-container .entry-header {
        padding-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .adelina-posts-carousel-container .entry-title {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
        line-height: 1.15;
    }

    .adelina-posts-carousel-container .entry-meta {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
        /* Align with global style */
    }

    .adelina-posts-carousel-container .read-more {
        margin-top: auto;
        padding: 0.6rem 1.4rem;
        font-size: 0.75rem;
    }

    .adelina-posts-carousel-container .carousel-navigation {
        margin-top: 1.5rem;
    }
}