.floripa-recs-wrapper {
    margin: 30px 0;
    padding: 0 0 0 15px;
    background: transparent;
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, #ff0000, #ff8000, #ffff00, #008000, #0000ff, #a000c0);
    border-image-slice: 1;
    font-family: 'Inter', sans-serif;
}

.floripa-recs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.floripa-recs-title {
    font-size: 22px;
    font-weight: 700;
    color: #60007d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floripa-recs-glide {
    position: relative;
}

/* Remover bullets indesejados */
.floripa-recs-glide ul.glide__slides {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.floripa-recs-glide ul.glide__slides li.glide__slide {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.floripa-recs-glide ul.glide__slides li.glide__slide::before {
    content: none !important;
}

.floripa-recs-item {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.floripa-recs-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.floripa-recs-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.floripa-recs-content {
    padding: 15px;
}

.floripa-recs-post-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Glide.js Arrows - Positioned at top right */
.floripa-recs-header .glide__arrows {
    display: flex;
    gap: 10px;
}

.floripa-recs-header .glide__arrow {
    background: #60007d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: static; /* Reset glide default absolute position */
    transform: none;
}

.floripa-recs-header .glide__arrow:hover {
    background: #4a0061;
    transform: scale(1.1);
}

/* Rainbow border effect on hover */
.floripa-recs-item:hover {
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to right, #ff0000, #ff8000, #ffff00, #008000, #0000ff, #a000c0);
    border-image-slice: 1;
}
