/* ──────────────────────────────────────────────────────────────────────────
   SPOTLIGHT DETAIL PAGE - Modern Design
   ────────────────────────────────────────────────────────────────────────── */

/* ── Featured Image ── */
.spotlight-detail-featured-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(197, 82, 160, 0.12);
    transition: box-shadow 0.3s ease;
    max-width: 100%;
    max-height: 500px;
    display: block;
    margin: 0 auto;
}

.spotlight-detail-featured-image:hover {
    box-shadow: 0 16px 48px rgba(197, 82, 160, 0.18);
}

.spotlight-detail-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

/* ── Article Header ── */
.spotlight-detail-header {
    text-align: center;
}

.spotlight-detail-title {
    font-size: 42px;
    font-weight: 700;
    font-family: "Jost", sans-serif;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #c552a0 0%, #861fa3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ── Metadata ── */
.spotlight-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666666;
}

.spotlight-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(197, 82, 160, 0.08);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.spotlight-detail-meta span i {
    color: #c552a0;
    font-size: 16px;
}

.spotlight-detail-meta span:hover {
    background: rgba(197, 82, 160, 0.15);
}

/* ── Main Content ── */
.spotlight-detail-content {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.spotlight-detail-content h1,
.spotlight-detail-content h2,
.spotlight-detail-content h3,
.spotlight-detail-content h4,
.spotlight-detail-content h5,
.spotlight-detail-content h6 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.spotlight-detail-content h1 { font-size: 36px; }
.spotlight-detail-content h2 { font-size: 32px; }
.spotlight-detail-content h3 { font-size: 28px; }
.spotlight-detail-content h4 { font-size: 24px; }
.spotlight-detail-content h5 { font-size: 20px; }
.spotlight-detail-content h6 { font-size: 18px; }

.spotlight-detail-content p {
    margin-bottom: 20px;
}

.spotlight-detail-content a {
    color: #c552a0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.spotlight-detail-content a:hover {
    color: #861fa3;
    text-decoration: underline;
}

.spotlight-detail-content ul,
.spotlight-detail-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.spotlight-detail-content li {
    margin-bottom: 12px;
}

.spotlight-detail-content blockquote {
    border-left: 4px solid #c552a0;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: #666666;
    background: rgba(197, 82, 160, 0.05);
    padding: 16px 20px;
    border-radius: 6px;
}

.spotlight-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 8px;
}

/* ── Share Section ── */
.spotlight-detail-share {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.share-title {
    font-size: 18px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
}

.share-btn i {
    font-size: 16px;
}

.share-btn.facebook {
    background: #f0f7ff;
    border-color: #1877f2;
    color: #1877f2;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.share-btn.twitter {
    background: #f0f9ff;
    border-color: #1da1f2;
    color: #1da1f2;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
}

.share-btn.linkedin {
    background: #f0f7ff;
    border-color: #0a66c2;
    color: #0a66c2;
}

.share-btn.linkedin:hover {
    background: #0a66c2;
    color: #ffffff;
}

/* ── Related Spotlights ── */
.related-spotlights-section {
    background: linear-gradient(135deg, rgba(197, 82, 160, 0.03) 0%, transparent 100%);
    border-top: 1px solid rgba(197, 82, 160, 0.1);
    border-bottom: 1px solid rgba(197, 82, 160, 0.1);
}

/* ── Responsive Design ── */
@media (max-width: 991px) {
    .spotlight-detail-featured-image {
        max-height: 400px;
        margin-bottom: 40px;
    }

    .spotlight-detail-featured-image img {
        max-height: 400px;
    }

    .spotlight-detail-title {
        font-size: 36px;
    }

    .spotlight-detail-meta {
        gap: 16px;
    }

    .spotlight-detail-meta span {
        padding: 6px 12px;
        font-size: 13px;
    }

    .spotlight-detail-content {
        font-size: 15px;
    }

    .spotlight-detail-content h1 { font-size: 32px; }
    .spotlight-detail-content h2 { font-size: 28px; }
    .spotlight-detail-content h3 { font-size: 24px; }
}

@media (max-width: 767px) {
    .spotlight-detail-featured-image {
        margin-bottom: 30px;
        max-height: 300px;
    }

    .spotlight-detail-featured-image img {
        max-height: 300px;
    }

    .spotlight-detail-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .spotlight-detail-meta {
        flex-direction: column;
        gap: 12px;
    }

    .spotlight-detail-meta span {
        width: 100%;
        justify-content: center;
    }

    .spotlight-detail-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .spotlight-detail-content h1 { font-size: 26px; }
    .spotlight-detail-content h2 { font-size: 24px; }
    .spotlight-detail-content h3 { font-size: 20px; }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .spotlight-detail-featured-image {
        max-height: 250px;
        margin-bottom: 24px;
    }

    .spotlight-detail-featured-image img {
        max-height: 250px;
    }

    .spotlight-detail-title {
        font-size: 24px;
    }
}

/* ── Dark Mode ── */
.theme-dark .spotlight-detail-title {
    background: linear-gradient(135deg, #e8a3c8 0%, #f0bfd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-dark .spotlight-detail-featured-image {
    box-shadow: 0 12px 36px rgba(197, 82, 160, 0.2);
}

.theme-dark .spotlight-detail-featured-image:hover {
    box-shadow: 0 16px 48px rgba(197, 82, 160, 0.25);
}

.theme-dark .spotlight-detail-header {
    color: #ffffff;
}

.theme-dark .spotlight-detail-meta {
    color: #b0b0b0;
}

.theme-dark .spotlight-detail-meta span {
    background: rgba(197, 82, 160, 0.12);
    color: #e8a3c8;
}

.theme-dark .spotlight-detail-meta span:hover {
    background: rgba(197, 82, 160, 0.18);
}

.theme-dark .spotlight-detail-content {
    color: #b0b0b0;
}

.theme-dark .spotlight-detail-content h1,
.theme-dark .spotlight-detail-content h2,
.theme-dark .spotlight-detail-content h3,
.theme-dark .spotlight-detail-content h4,
.theme-dark .spotlight-detail-content h5,
.theme-dark .spotlight-detail-content h6 {
    color: #ffffff;
}

.theme-dark .spotlight-detail-content a {
    color: #e8a3c8;
}

.theme-dark .spotlight-detail-content a:hover {
    color: #f0bfd5;
}

.theme-dark .spotlight-detail-content blockquote {
    background: rgba(197, 82, 160, 0.08);
    color: #b0b0b0;
    border-left-color: #c552a0;
}

.theme-dark .spotlight-detail-share {
    border-top-color: rgba(197, 82, 160, 0.15);
}

.theme-dark .share-title {
    color: #ffffff;
}

.theme-dark .related-spotlights-section {
    background: linear-gradient(135deg, rgba(197, 82, 160, 0.05) 0%, transparent 100%);
    border-top-color: rgba(197, 82, 160, 0.15);
    border-bottom-color: rgba(197, 82, 160, 0.15);
}