/* Columnistas Carrusel Styles */
.hatch-columnistas-carousel {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.hatch-col-nav {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #f26122;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hatch-col-nav:hover {
    background: #f26122;
    color: #fff;
    border-color: #f26122;
}

.hatch-col-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 180px);
    gap: 16px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
}

.hatch-col-card {
    text-decoration: none !important;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

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

.hatch-col-card .photo {
    width: 120px;
    height: 120px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hatch-col-name {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    line-height: 1.2;
}

.hatch-col-role {
    font-size: 13px;
    color: #666;
    text-align: center;
}

@media (max-width: 640px) {
    .hatch-col-track {
        grid-auto-columns: minmax(140px, 1fr);
    }
    .hatch-col-card .photo {
        width: 100px;
        height: 100px;
    }
    .hatch-col-nav {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}
