.caruosial-carousel {
    position: relative;
}

.caruosial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

/* Bottom border for first row items (top 3 items) */
.caruosial-grid .caruosial-item:nth-child(-n+3) {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

.caruosial-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-category {
    color: #e74c3c;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.item-title {
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.item-title a {
    color: inherit;
    text-decoration: none;
}

.item-title a:hover {
    text-decoration: underline;
}

.item-excerpt {
    line-height: 1.4;
    margin: 0;
}

/* Slider Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
    width: 40px;
    height: 40px;
}

.swiper-pagination {
    bottom: 10px !important;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

/* Dots position adjustments can be further styled via Elementor if needed */

/* Responsive */
@media (max-width: 1024px) {
    .caruosial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .caruosial-grid {
        grid-template-columns: 1fr;
    }
    
    .caruosial-item {
        flex-direction: column;
    }
    
    .item-image {
        width: 100%;
        height: 160px;
    }
}
