.byrc-container {
    font-family: 'Montserrat', sans-serif;
    padding: 40px 20px;
    /* background: radial-gradient(circle, #1f2a2a, #0f1616);*/
    color: #fff; 
}

/* HEADER */
.byrc-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.byrc-header h2 {
    font-size: 30px;
    letter-spacing: 2px;
    color:#FFFFFF;
}

/* BOTONES */
.byrc-prev,
.byrc-next {
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}

/* WRAPPER */
.byrc-carousel-wrapper {
    overflow: hidden;
    margin-top: 30px;
}

/* CARRUSEL */
.byrc-carousel {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;
}

.byrc-carousel::-webkit-scrollbar {
    display: none;
}

/* ITEM */
.byrc-item {
    flex: 0 0 calc(33.333% - 13px);
    scroll-snap-align: start;
    text-align: center;
}

.byrc-item a {
    text-decoration: none;
}

/* IMAGEN CUADRADA */
.byrc-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
}

.byrc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.byrc-item:hover img {
    transform: scale(1.05);
}

/* TITULO */
.byrc-title {
    margin-top: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;

    text-align: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* TABLET */
@media (max-width: 900px) {
    .byrc-item {
        flex: 0 0 calc(50% - 10px);
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .byrc-item {
        flex: 0 0 100%;
    }

    .byrc-header h2 {
        font-size: 16px;
    }
}