/* Columnistas Carrusel Styles - Optimized for Premium Experience */
.h-section-columnistas-carousel {
    padding-top: 40px;
    padding-bottom: 60px;
}

.hatch-columnistas-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 100%;
}

.hatch-col-nav {
    background: transparent;
    border: none;
    color: #ff5100;
    font-size: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.hatch-col-nav:hover {
    color: #e64900;
    transform: scale(1.1);
}

.hatch-col-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
}

.hatch-col-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.hatch-col-card {
    min-width: 160px;
    max-width: 160px;
    text-decoration: none !important;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.hatch-col-card:hover {
    transform: translateY(-8px);
}

.hatch-col-card .photo {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.hatch-col-card:hover .photo {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hatch-col-name {
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    line-height: 1.2;
    margin-top: 5px;
    color: #000;
}

.hatch-col-role {
    font-size: 12px;
    color: #555555;
    text-align: center;
    line-height: 1.3;
}

/* Responsive Gaps */
@media (max-width: 768px) {
    .hatch-col-track {
        gap: 15px;
    }
    .hatch-col-card {
        min-width: 140px;
        max-width: 140px;
    }
    .hatch-col-nav {
        display: none; /* Optional on mobile if scrolling is intuitive */
    }
}

