/* ===== BLOC MOBILE ONLY PUB ===== */

.mobile-only-pub-section {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only-pub-section {
        display: block;
        background-color: #f5f5f5;
        padding: 15px;
        width: 100%;
    }
    
    .mobile-only-pub-container {
        max-width: 100%;
    }
    
    .mobile-only-pub-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-top: 8px;
        margin-bottom: 15px;
        position: relative;
        padding-left: 15px;
        text-transform: uppercase;
        color: #000;
    }
    
    .mobile-only-pub-title::before {
        content: "";
        display: inline-block;
        width: 5px;
        background-color: #e65f0d;
        position: absolute;
        left: -5px;
        height: calc(100% - 0.4em);
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-only-pub-card {
        background: white;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    .mobile-only-pub-image {
        line-height: 0 !important;
        font-size: 0 !important;
        overflow: hidden;
    }
    
    .mobile-only-pub-image img {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .mobile-only-pub-image div[data-lebar-trackid],
    .mobile-only-pub-image div[id^="lebar-"] {
        line-height: 0 !important;
        font-size: 0 !important;
    }
    
    .mobile-only-pub-text {
        padding: 1rem;
        background: white;
    }
    
    .mobile-only-pub-text p {
        font-size: 1.1rem;
        color: #333;
        margin: 0;
        line-height: 1.4;
        font-weight: 700;
    }
    
    .mobile-only-pub-badge {
        display: inline-block;
        background-color: black;
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }

    .mobile-only-pub-card .a2t-link::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
}