.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-slide {
    display: flex;
    gap: 20px;
    height: 600px;
}

.col-1 {
    flex: 2.5;
}

.col-2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col-2 .post-card {
    flex: 1;
}

.col-3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col-3 .post-card {
    flex: 1;
}

.post-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #1a1a1a;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-4px);
}

.post-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    padding: 24px;
    color: white;
    z-index: 2;
}

.col-2 .post-overlay {
    padding: 20px;
}

.col-3 .post-overlay {
    padding: 16px;
}

.post-category {
    display: inline-block;
    background: #ff4757;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.post-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.col-2 .post-title {
    font-size: 20px;
    font-weight: 700;
}

.col-3 .post-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.post-excerpt {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.9;
}

.post-meta {
    font-size: 13px;
    opacity: 0.7;
    font-weight: 500;
}

.col-3 .post-meta {
    font-size: 11px;
}

@media (max-width: 1024px) {
    .col-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex-direction: column;
        height: auto;
    }
    .col-1 {
        height: 400px;
    }
    .col-2 .post-card {
        height: 300px;
    }
}