/**
 * Tag Border Zero - Plugin Styles
 * 
 * @package Tag_Border_Zero
 * @version 2.1.2
 */

/* =============================================
   Base Styles
   ============================================= */

/* Container per tutti i post con TBZ attivo */
.tbz-active .image_frame.post-photo-wrapper {
    position: relative;
    padding: 3px;
    border-radius: 5px;
    overflow: visible;
}

.tbz-active .image_frame.post-photo-wrapper .image_wrapper {
    border-radius: 3px;
    overflow: hidden;
}

/* Etichetta base */
.tbz-active .image_frame.post-photo-wrapper::after {
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 3px 0 8px;
    z-index: 10;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* =============================================
   Etero - video-porno-sub-ita
   ============================================= */

.tbz-etero .image_frame.post-photo-wrapper {
    background: linear-gradient(45deg, #D81086, #320A51);
}

.tbz-etero .image_frame.post-photo-wrapper::after {
    content: 'Etero';
    background-color: #300a4e;
}

/* =============================================
   Trans - video-porno-trans
   ============================================= */

.tbz-trans .image_frame.post-photo-wrapper {
    background: linear-gradient(135deg, #ff4d4d, #a72020);
}

.tbz-trans .image_frame.post-photo-wrapper::after {
    content: 'Trans';
    background-color: #a72020;
}

/* =============================================
   Gay - video-porno-gay
   ============================================= */

.tbz-gay .image_frame.post-photo-wrapper {
    background: linear-gradient(135deg, #083056, #435977);
}

.tbz-gay .image_frame.post-photo-wrapper::after {
    content: 'Gay';
    background-color: #083056;
}

/* =============================================
   Responsive Styles
   ============================================= */

/* Tablet */
@media (max-width: 991px) {
    .tbz-active .image_frame.post-photo-wrapper::after {
        padding: 7px 12px;
        font-size: 1.0625rem; /* 13px */
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tbz-active .image_frame.post-photo-wrapper::after {
        top: 2px;
        right: 2px;
        padding: 6px 12px;
        font-size: 1.0625rem;
        border-radius: 0 2px 0 6px;
    }
    
    .tbz-active .image_frame.post-photo-wrapper {
        padding: 2px;
    }
}

/* Mobile small */
@media (max-width: 480px) {
    .tbz-active .image_frame.post-photo-wrapper::after {
        padding: 6px 10px;
        font-size: 1.0625rem;
        letter-spacing: 0.5px;
    }
}

