.cia-cluster-75b2f06e {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    border-radius: 12px;
}

.cia-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 1.25rem;
}

.cia-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cia-accent-bar {
    display: block;
    width: 4px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 2px;
}

.cia-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.cia-ver-tudo {
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cia-ver-tudo:hover {
    color: #e8740c;
}

.cia-content {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

/* Featured Post */
.cia-featured {
    flex: 1 1 55%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

.cia-featured-img-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.cia-featured:hover .cia-featured-img-zoom {
    transform: scale(1.08);
}

.cia-featured-overlay {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 50%;
    justify-content: flex-end;
}

.cia-featured-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.cia-featured-excerpt {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.cia-featured-date {
    font-size: 0.75rem;
    color: #aaa;
    margin: 0;
}

/* Side Posts */
.cia-side {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.cia-side-post {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0.5rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cia-side-post:hover {
    background: #f5f5f5;
}

.cia-side-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e8740c;
    min-width: 1.5rem;
    line-height: 1.3;
}

.cia-side-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cia-side-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.cia-side-date {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

.cia-side-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 0 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cia-content {
        flex-direction: column;
    }

    .cia-featured {
        min-height: 280px;
    }

    .cia-cluster-75b2f06e {
        padding: 1rem;
    }
}
