/* =====================================================
   PT INFLUENCERS – SECTION STYLES
===================================================== */

.pt-influencers-section {
    padding: 90px 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #fafbfc;
    position: relative;
    overflow: hidden;
}

.pt-influencers-section::before {
    content: '';
    position: absolute;
    top: 8%;
    left: -3%;
    width: 320px;
    height: 420px;
    background: radial-gradient(circle, rgba(27, 45, 66, 0.06) 2px, transparent 2px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}

.pt-influencers-section::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: -3%;
    width: 320px;
    height: 420px;
    background: radial-gradient(circle, rgba(27, 45, 66, 0.06) 2px, transparent 2px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}

.pt-influencers-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    box-sizing: border-box;
}

.pt-influencers-title {
    font-family: 'Lora', serif !important;
    font-weight: 600 !important;
    font-size: 38px;
    line-height: 1.25;
    margin: 0;
    color: #1b2d42;
    letter-spacing: -0.02em;
}

.pt-influencers-lead {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    letter-spacing: 0.01em !important;
    font-weight: 400 !important;
    color: #5b6b7c;
    margin: 20px auto 0 auto;
    max-width: 800px;
}

.pt-influencers-grid {
    display: grid;
    gap: 32px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding: 15px 45px 0 45px;
    margin: 0 auto;
}

.pt-influencers-grid--cols-1 { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
.pt-influencers-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pt-influencers-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.pt-influencer-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(27, 45, 66, 0.05);
    border: 1px solid rgba(27, 45, 66, 0.06);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.pt-influencer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(27, 45, 66, 0.12);
    box-shadow: 0 20px 40px -15px rgba(27, 45, 66, 0.1) !important;
}

.pt-influencer-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #eee;
    overflow: hidden;
    cursor: pointer;
}

.pt-influencer-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s cubic-bezier(.16, 1, .3, 1), opacity 0.6s ease;
}

.pt-influencer-card:hover .pt-influencer-cover {
    opacity: 1; 
    transform: scale(1.03);
}

.pt-influencer-brand-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(27, 45, 66, 0.85) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(27, 45, 66, 0.2);
}

.pt-influencer-brand-badge span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff !important;
}

.pt-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #1b2d42;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(27, 45, 66, 0.3);
    transition: all 0.35s cubic-bezier(.16, 1, .3, 1);
}

.pt-video-play-btn svg {
    margin-left: 2px;
}

.pt-influencer-video-wrap:hover .pt-video-play-btn {
    background: #101d2a;
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 24px rgba(27, 45, 66, 0.4);
}

.pt-influencer-info {
    padding: 24px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pt-influencer-name {
    font-family: 'Lora', serif !important;
    font-weight: 600 !important;
    font-size: 22px;
    line-height: 1.4;
    color: #1b2d42;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.pt-influencer-desc {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    letter-spacing: 0.01em !important;
    font-weight: 400 !important;
    color: #64748b;
    margin: 0;
}

/* =====================================================
   LIGHTBOX SYSTEM
===================================================== */

.pt-videos-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 26, 38, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pt-videos-lightbox.is-active {
    display: flex;
    opacity: 1;
}

.pt-videos-lightbox__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pt-videos-lightbox__dialog {
    position: relative;
    width: 90%;
    max-width: 960px;
    z-index: 2;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1);
}

.pt-videos-lightbox.is-active .pt-videos-lightbox__dialog {
    transform: scale(1);
}

.pt-videos-lightbox__media {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    background: #000000;
}

.pt-videos-lightbox__media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pt-videos-lightbox__close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #ffffff;
    font-size: 42px;
    cursor: pointer;
    opacity: 0.6;
    border: none;
    background: none;
    transition: opacity 0.2s;
    padding: 0;
    z-index: 3;
}

.pt-videos-lightbox__close:hover { opacity: 1; }

.pt-videos-no-scroll {
    overflow: hidden !important;
}

@media (max-width: 992px) {
    .pt-influencers-grid { 
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
        gap: 24px; 
    }
}

@media (max-width: 768px) {
    .pt-influencers-section { padding: 70px 16px; } 
    
    .pt-influencers-header {
        margin-bottom: 32px;
        padding: 0;
    }

    .pt-influencers-grid { 
        grid-template-columns: 1fr !important; 
        gap: 24px; 
        padding: 0;
    }
    
    .pt-influencers-title { font-size: 30px !important; text-align: left; }
    .pt-influencers-lead { text-align: left; font-size: 15px !important; line-height: 1.7 !important; }
    
    .pt-influencers-section::before, 
    .pt-influencers-section::after { display: none !important; }
    
    .pt-influencer-info { padding: 20px 20px; }
    .pt-influencer-name { font-size: 19px !important; }
    .pt-influencer-desc { font-size: 14px !important; }
}