/**
 * SPSE Video Testimonies — Frontend Styles
 * Brand: Navy #262262, Gold #c6a24f, Cream #f9f7f2
 */

/* ─── Featured Testimony ─── */
.spse-featured-testimony {
    background: #f9f7f2;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(38, 34, 98, 0.08);
}

.spse-featured-label {
    background: linear-gradient(135deg, #1a1654, #262262, #2d2a6e);
    color: #c6a24f;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 20px;
}

.spse-featured-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #1a1654;
}

.spse-featured-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spse-featured-info {
    padding: 28px 32px 32px;
}

.spse-featured-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #262262;
    font-size: 26px;
    margin: 0 0 12px;
    line-height: 1.3;
}

.spse-featured-info h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.spse-featured-info h2 a:hover {
    color: #c6a24f;
}

.spse-featured-excerpt {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ─── Testimony Grid ─── */
.spse-testimonies-grid {
    display: grid;
    gap: 28px;
}

.spse-testimonies-grid.spse-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.spse-testimonies-grid.spse-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ─── Testimony Card ─── */
.spse-testimony-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(38, 34, 98, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spse-testimony-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(38, 34, 98, 0.12);
}

/* ─── Card Thumbnail ─── */
.spse-card-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #1a1654;
    overflow: hidden;
}

.spse-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.spse-testimony-card:hover .spse-card-thumb img {
    transform: scale(1.05);
}

.spse-card-thumb-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1654, #262262);
}

.spse-card-thumb-placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.25);
}

/* ─── Play Overlay ─── */
.spse-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(38, 34, 98, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.spse-play-overlay svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.spse-testimony-card:hover .spse-play-overlay {
    opacity: 1;
}

.spse-testimony-card:hover .spse-play-overlay:hover {
    background: rgba(198, 162, 79, 0.9);
}

/* ─── Duration Badge ─── */
.spse-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1;
}

/* ─── Card Info ─── */
.spse-card-info {
    padding: 18px 20px 22px;
}

.spse-card-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #262262;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.35;
}

.spse-card-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ─── No Results ─── */
.spse-no-testimonies {
    text-align: center;
    color: #888;
    font-size: 16px;
    padding: 60px 20px;
}

/* ─── Single Testimony Page ─── */
.spse-single-testimony {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.spse-single-testimony .spse-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #1a1654;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(38, 34, 98, 0.12);
}

.spse-single-testimony .spse-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spse-single-testimony .spse-testimony-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #262262;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.spse-single-testimony .spse-testimony-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0ede6;
}

.spse-single-testimony .spse-testimony-meta .spse-meta-duration {
    background: #262262;
    color: #c6a24f;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.spse-single-testimony .spse-testimony-content {
    color: #444;
    font-size: 17px;
    line-height: 1.75;
}

.spse-single-testimony .spse-testimony-content p {
    margin-bottom: 1.2em;
}

/* ─── Category Tags ─── */
.spse-testimony-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #f0ede6;
}

.spse-testimony-categories a {
    display: inline-block;
    background: #f9f7f2;
    color: #262262;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.spse-testimony-categories a:hover {
    background: #262262;
    color: #c6a24f;
}

/* ─── Back to Testimonies / Navigation ─── */
.spse-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #262262;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s;
}

.spse-back-link:hover {
    color: #c6a24f;
}

.spse-back-link svg {
    width: 18px;
    height: 18px;
}

.spse-more-testimonies {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #f0ede6;
}

.spse-more-testimonies h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #262262;
    font-size: 24px;
    margin: 0 0 24px;
}

.spse-more-testimonies .spse-testimonies-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ─── Archive Page ─── */
.spse-archive-header {
    background: linear-gradient(135deg, #1a1654 0%, #262262 45%, #2d2a6e 100%);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 48px;
}

.spse-archive-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 42px;
    margin: 0 0 8px;
}

.spse-archive-header p {
    color: #d4c89a;
    font-size: 18px;
    margin: 0;
}

.spse-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* ─── Category Filter Bar ─── */
.spse-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.spse-category-filter a {
    display: inline-block;
    padding: 8px 22px;
    border: 2px solid #262262;
    border-radius: 50px;
    color: #262262;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.spse-category-filter a:hover,
.spse-category-filter a.active {
    background: #262262;
    color: #c6a24f;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .spse-testimonies-grid.spse-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .spse-more-testimonies .spse-testimonies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .spse-testimonies-grid.spse-cols-3,
    .spse-testimonies-grid.spse-cols-2 {
        grid-template-columns: 1fr;
    }

    .spse-more-testimonies .spse-testimonies-grid {
        grid-template-columns: 1fr;
    }

    .spse-featured-info {
        padding: 20px 24px 24px;
    }

    .spse-featured-info h2 {
        font-size: 22px;
    }

    .spse-single-testimony .spse-testimony-title {
        font-size: 26px;
    }

    .spse-archive-header {
        padding: 40px 20px;
    }

    .spse-archive-header h1 {
        font-size: 32px;
    }

    .spse-single-testimony {
        padding: 24px 16px 60px;
    }
}

@media (max-width: 480px) {
    .spse-play-overlay {
        width: 48px;
        height: 48px;
        opacity: 1;
    }

    .spse-play-overlay svg {
        width: 18px;
        height: 18px;
    }

    .spse-card-info {
        padding: 14px 16px 18px;
    }

    .spse-card-info h3 {
        font-size: 15px;
    }
}
