/* ================================================
   ROOT VARIABLES
   ================================================ */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #1a1a1a;
    --accent-color: #f5f5f5;
    --text-dark: #212121;
    --text-light: #757575;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* ================================================
   GLOBAL STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
.header-main {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    border-bottom: 3px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 1.2rem 0;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.logo h1 br {
    display: block;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

.btn-search {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-search:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    margin-top: 0;
}

.hero-featured {
    height: 600px;
    overflow: hidden;
}

.hero-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-featured:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 3rem;
}

.hero-content {
    max-width: 600px;
}

.badge-category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(211, 47, 47, 0.3);
}

/* Sidebar Featured */
.sidebar-featured {
    display: flex;
    flex-direction: column;
    height: 600px;
}

.sidebar-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sidebar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sidebar-item:hover img {
    transform: scale(1.1);
}

.sidebar-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.sidebar-content h5 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0.5rem 0 0.25rem;
}

.badge-category-small {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ================================================
   CONTENT GRID SECTION
   ================================================ */
.content-grid {
    background: var(--accent-color);
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* Article Cards */
.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.article-large .article-image {
    height: 400px;
}

.article-small .article-image {
    height: 200px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.article-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-title-small {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-weight: 700;
}

.article-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.article-link:hover {
    color: #b71c1c;
}

.article-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.article-link:hover i {
    transform: translateX(5px);
}

.article-meta-small {
    color: var(--text-light);
    font-size: 0.8rem;
    display: block;
}

/* ================================================
   QUOTE SECTION
   ================================================ */
.quote-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: #fff;
    padding: 5rem 0;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.quote-author {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ================================================
   INTERVIEWS SECTION
   ================================================ */
.interviews-section {
    background: #fff;
}

.interview-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.interview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.interview-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.interview-card:hover .interview-image img {
    transform: scale(1.1);
}

.interview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.interview-card:hover .interview-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 4rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.play-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.interview-content {
    padding: 1.5rem;
}

.interview-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    border-radius: 3px;
}

.interview-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.interview-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.interview-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.interview-meta i {
    margin-right: 0.4rem;
    color: var(--primary-color);
}

/* ================================================
   PLAYLISTS SECTION
   ================================================ */
.playlists-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 0;
}

.playlist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.playlist-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.playlist-cover {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.playlist-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.playlist-card:hover .playlist-cover img {
    transform: scale(1.1);
}

.playlist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.playlist-card:hover .playlist-overlay {
    opacity: 1;
}

.btn-play-large {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-play-large:hover {
    background: #b71c1c;
    transform: scale(1.15);
}

.playlist-info {
    padding: 1.5rem;
}

.playlist-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.playlist-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ================================================
   NEWSLETTER SECTION
   ================================================ */
.newsletter-section {
    background: var(--accent-color);
    padding: 4rem 0;
}

.newsletter-container {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.newsletter-text {
    color: var(--text-light);
    font-size: 1.1rem;
}

.newsletter-form .form-control {
    border: 2px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    border-radius: 4px 0 0 4px;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-subscribe {
    background: var(--primary-color);
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: #b71c1c;
}

/* ================================================
   FOOTER
   ================================================ */
.footer-main {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    padding: 4rem 0 2rem;
}

.footer-brand h4 {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 991px) {
    .hero-featured {
        height: 400px;
    }
    
    .sidebar-featured {
        height: auto;
        flex-direction: row;
    }
    
    .sidebar-item {
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .hero-overlay {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-excerpt {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .article-large .article-image {
        height: 300px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .newsletter-container {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .sidebar-featured {
        flex-direction: column;
    }
}

/* ================================================
   ANIMATIONS & TRANSITIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card,
.interview-card,
.playlist-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
}
/* ================================================
   ARTICLE PAGE STYLES
   ================================================ */

/* Breadcrumb */
.article-breadcrumb {
    padding: 2rem 0 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-light);
    padding: 0 0.5rem;
}

/* Article Header */
.article-header {
    padding: 2rem 0;
}

.article-page-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.article-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.meta-item {
    display: inline-block;
}

.meta-separator {
    color: var(--border-color);
}

.author-link,
.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.author-link:hover,
.category-link:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* Article Featured Image */
.article-featured-image {
    margin: 3rem 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content strong {
    font-weight: 700;
    color: var(--text-dark);
}

.article-content em {
    font-style: italic;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.article-content a:hover {
    color: #b71c1c;
}

.article-quote {
    background: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
}

.article-subheading {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.article-footer-text {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.external-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.social-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    margin: 0 0.25rem;
}

/* Article Tags */
.article-tags {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tag-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 1rem;
    font-size: 0.95rem;
}

.article-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 0.9rem;
    margin: 0.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.article-tag:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ================================================
   RELATED POSTS SECTION
   ================================================ */
.related-posts {
    background: var(--accent-color);
}

.section-title-small {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.related-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.related-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-post-image {
    height: 220px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.related-post-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ================================================
   SIDEBAR WIDGETS
   ================================================ */
.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

/* Search Widget */
.search-widget .search-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem;
}

.search-widget .search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-search-widget {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-search-widget:hover {
    background: #b71c1c;
    color: #fff;
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-posts-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    transition: var(--transition);
}

.recent-posts-list a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.categories-list a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.category-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Newsletter Widget */
.newsletter-widget .widget-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-sidebar-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem;
}

.newsletter-sidebar-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-subscribe-sidebar {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-subscribe-sidebar:hover {
    background: #b71c1c;
}

/* ================================================
   SCROLL TO TOP BUTTON
   ================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #b71c1c;
    transform: translateY(-5px);
}

/* ================================================
   RESPONSIVE DESIGN FOR ARTICLE PAGE
   ================================================ */
@media (max-width: 991px) {
    .article-page-title {
        font-size: 2.2rem;
    }
    
    .article-content {
        font-size: 1.05rem;
    }
    
    .lead-paragraph {
        font-size: 1.15rem;
    }
    
    .article-quote {
        font-size: 1.1rem;
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .article-page-title {
        font-size: 1.8rem;
    }
    
    .article-meta-info {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .meta-separator {
        display: none;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .article-quote {
        font-size: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .article-subheading {
        font-size: 1.5rem;
    }
    
    .sidebar-widget {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575px) {
    .article-page-title {
        font-size: 1.5rem;
    }
    
    .related-post-title {
        font-size: 0.9rem;
    }
}
/* ================================================
   READING PROGRESS BAR
   ================================================ */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.reading-progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.2s ease;
}
/* ================================================
   SOCIAL SHARE SECTION
   ================================================ */
.social-share-section {
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.share-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
}

.share-btn i {
    font-size: 1.2rem;
}

.share-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(188, 24, 136, 0.3);
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(24, 119, 242, 0.3);
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #0c85d0;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(29, 161, 242, 0.3);
}

.share-tiktok {
    background: linear-gradient(45deg, #000000 0%, #ff0050 100%);
}

.share-tiktok:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 0, 80, 0.3);
}

.share-spotify {
    background: #1db954;
}

.share-spotify:hover {
    background: #169c46;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(29, 185, 84, 0.3);
}

.share-apple {
    background: linear-gradient(135deg, #fa233b 0%, #fb5c74 100%);
}

.share-apple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(250, 35, 59, 0.3);
}

/* ================================================
   EXCLUSIVE VIDEO SECTION
   ================================================ */
.exclusive-video-section {
    background: var(--accent-color);
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.video-section-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.video-description {
    max-width: 700px;
    margin: 0 auto;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.video-platforms {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    display: inline-block;
}

.video-platforms p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.platform-link {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.platform-link:hover {
    background: #b71c1c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(211, 47, 47, 0.3);
}

/* ================================================
   ADVERTISEMENT WIDGET
   ================================================ */
.ad-widget {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.ad-container {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ad-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-placeholder {
    border: 2px dashed var(--border-color);
    border-radius: 6px;
}

/* ================================================
   FIGURE CAPTION
   ================================================ */
.article-featured-image figcaption {
    font-size: 0.95rem;
    padding: 0.75rem 0;
}

/* ================================================
   RESPONSIVE DESIGN FOR NEW ELEMENTS
   ================================================ */
@media (max-width: 767px) {
    .social-share-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .share-btn {
        justify-content: center;
        width: 100%;
    }
    
    .exclusive-video-section {
        padding: 2rem 1rem;
    }
    
    .video-section-title {
        font-size: 1.5rem;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
    
    .platform-links {
        flex-direction: column;
    }
    
    .platform-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .video-platforms {
        padding: 1rem;
    }
    
    .video-platforms p {
        font-size: 1rem;
    }
}
/* ================================================
   COMMENTS SECTION
   ================================================ */
.comments-section {
    background: var(--accent-color);
}

.comments-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.comments-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.comment-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comment-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.comment-form .form-control,
.comment-form textarea {
    border: 2px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: var(--transition);
}

.comment-form .form-control:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-check-input {
    border: 2px solid var(--border-color);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
}

.btn-submit-comment {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-submit-comment:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.3);
}

/* ================================================
   TAGS CLOUD WIDGET
   ================================================ */
.tags-widget {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-cloud-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tag-cloud-item:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ================================================
   RESPONSIVE DESIGN FOR COMMENTS
   ================================================ */
@media (max-width: 767px) {
    .comment-form {
        padding: 1.5rem;
    }
    
    .comments-title {
        font-size: 1.75rem;
    }
    
    .btn-submit-comment {
        width: 100%;
        padding: 0.85rem;
    }
}

@media (max-width: 575px) {
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment-form {
        padding: 1rem;
    }
    
    .tags-cloud {
        gap: 0.5rem;
    }
    
    .tag-cloud-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ================================================
   ADDITIONAL SIDEBAR STYLING
   ================================================ */
.sidebar-widget.tags-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

/* ================================================
   FORM VALIDATION STYLES
   ================================================ */
.comment-form .form-control.is-invalid,
.comment-form textarea.is-invalid {
    border-color: #dc3545;
}

.comment-form .form-control.is-valid,
.comment-form textarea.is-valid {
    border-color: #28a745;
}

.invalid-feedback,
.valid-feedback {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ================================================
   ACCESSIBILITY IMPROVEMENTS
   ================================================ */
.comment-form .form-control:focus,
.comment-form textarea:focus,
.form-check-input:focus {
    outline: none;
}

.btn-submit-comment:focus {
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.3);
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
/* ================================================
   RELEASES PAGE SPECIFIC STYLES
   ================================================ */
.article-releases-page {
    background: #fff;
}

.releases-content {
    font-size: 1.05rem;
}

/* Release Entry Styling */
.release-entry {
    padding: 2rem 0;
}

.release-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.artist-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0;
    font-family: 'Inter', sans-serif;
}

.section-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Embed Section */
.video-embed-section {
    margin: 2rem 0;
}

.video-container {
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-caption {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Spotify Embed Section */
.spotify-embed-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 8px;
}

.embed-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.spotify-player {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section Divider */
.section-divider {
    border: none;
    border-top: 3px solid var(--border-color);
    margin: 3rem 0;
    opacity: 0.5;
}

/* Additional Releases Section */
.additional-releases-section {
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* ================================================
   EMBEDDED CONTENT RESPONSIVE
   ================================================ */
.ratio-16x9 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.ratio-16x9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================================================
   RELEASES PAGE LAYOUT
   ================================================ */
.releases-content .release-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.releases-content h3:first-of-type {
    margin-top: 0;
}

/* ================================================
   MUSIC PLAYER STYLING
   ================================================ */
.music-player-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.music-player-section h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ================================================
   ALBUM ARTWORK DISPLAY
   ================================================ */
.album-artwork {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.album-artwork img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   RELEASE INFO CARDS
   ================================================ */
.release-info-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.release-info-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.release-info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.release-info-card .release-date {
    color: var(--primary-color);
    font-weight: 600;
}

/* ================================================
   STREAMING LINKS SECTION
   ================================================ */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 8px;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.streaming-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(211, 47, 47, 0.2);
}

.streaming-link i {
    font-size: 1.2rem;
}

/* ================================================
   RESPONSIVE DESIGN FOR RELEASES PAGE
   ================================================ */
@media (max-width: 991px) {
    .release-heading {
        font-size: 1.5rem;
    }
    
    .artist-name {
        font-size: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .spotify-embed-section {
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .release-entry {
        padding: 1.5rem 0;
    }
    
    .release-heading {
        font-size: 1.3rem;
    }
    
    .artist-name {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .video-embed-section,
    .spotify-embed-section {
        margin: 1.5rem 0;
    }
    
    .additional-releases-section {
        padding: 1.5rem;
    }
    
    .streaming-links {
        flex-direction: column;
    }
    
    .streaming-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .release-heading {
        font-size: 1.2rem;
    }
    
    .artist-name {
        font-size: 1rem;
    }
    
    .embed-title {
        font-size: 1rem;
    }
    
    .spotify-embed-section {
        padding: 0.75rem;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
    .video-embed-section,
    .spotify-embed-section {
        display: none;
    }
    
    .release-entry {
        page-break-inside: avoid;
    }
}

/* ================================================
   ACCESSIBILITY ENHANCEMENTS
   ================================================ */
.video-container:focus-within {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.spotify-player:focus-within {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Skip to content for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ================================================
   LOADING STATE FOR EMBEDS
   ================================================ */
.embed-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: var(--accent-color);
    border-radius: 8px;
}

.embed-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* ================================================
   INTERVIEW PAGE SPECIFIC STYLES
   ================================================ */
.interview-page {
    background: #fff;
}

.interview-content {
    font-size: 1.08rem;
    line-height: 1.8;
}

/* Interview Questions Styling */
.interview-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    font-family: 'Inter', sans-serif;
}

.interview-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.interview-content em {
    font-style: italic;
    color: var(--text-light);
}

/* Video Section for Interviews */
.video-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

/* Interview Highlight Box */
.interview-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.interview-highlight p {
    margin-bottom: 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Artist Info Card */
.artist-info-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.artist-info-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.artist-info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.artist-info-card .artist-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.artist-info-card .artist-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.artist-info-card .artist-link-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(211, 47, 47, 0.3);
}

/* Quote Block for Interviews */
.interview-quote-block {
    background: var(--accent-color);
    border-left: 5px solid var(--primary-color);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
}

.interview-quote-block::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.interview-quote-block .quote-author {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
}

/* Interview Stats/Achievements */
.interview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Holiday Theme Accent */
.holiday-accent {
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.holiday-accent h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.holiday-accent p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ================================================
   RESPONSIVE DESIGN FOR INTERVIEW PAGE
   ================================================ */
@media (max-width: 991px) {
    .interview-question {
        font-size: 1.3rem;
    }
    
    .interview-content {
        font-size: 1.05rem;
    }
    
    .interview-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .interview-question {
        font-size: 1.2rem;
        margin: 2rem 0 1rem;
    }
    
    .interview-content {
        font-size: 1rem;
    }
    
    .interview-quote-block {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .artist-info-card {
        padding: 1.5rem;
    }
    
    .artist-info-card .artist-links {
        flex-direction: column;
    }
    
    .artist-info-card .artist-link-btn {
        width: 100%;
        justify-content: center;
    }
    
    .interview-stats {
        grid-template-columns: 1fr;
    }
    
    .holiday-accent {
        padding: 1rem;
    }
}

@media (max-width: 575px) {
    .interview-question {
        font-size: 1.1rem;
    }
    
    .video-section-title {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* ================================================
   PRINT STYLES FOR INTERVIEW
   ================================================ */
@media print {
    .interview-question {
        color: #000;
        page-break-after: avoid;
    }
    
    .interview-content p {
        page-break-inside: avoid;
    }
    
    .video-embed-section {
        display: none;
    }
}

/* ================================================
   ACCESSIBILITY ENHANCEMENTS
   ================================================ */
.interview-content a:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.interview-question:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .interview-question {
        border-bottom-width: 3px;
    }
    
    .interview-quote-block {
        border-left-width: 6px;
    }
}
/* ================================================
   FEATURE PAGE SPECIFIC STYLES
   ================================================ */
.feature-page {
    background: #fff;
}

.feature-content {
    font-size: 1.08rem;
    line-height: 1.85;
}

.feature-content p {
    margin-bottom: 1.75rem;
    color: var(--text-dark);
}

/* Feature Page Subheadings */
.feature-content .article-subheading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.feature-content .article-subheading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

/* Dark Theme Accent for Kill A Man Article */
.dark-theme-accent {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 3rem 0;
}

.dark-theme-accent h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dark-theme-accent p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Pull Quote Styling */
.feature-pull-quote {
    background: var(--accent-color);
    border-left: 5px solid var(--primary-color);
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
}

.feature-pull-quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    position: absolute;
    top: -15px;
    left: 20px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.feature-pull-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
}

/* Artist Spotlight Box */
.artist-spotlight-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.artist-spotlight-box h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-spotlight-box .artist-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.artist-info-item {
    padding: 1rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.artist-info-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.artist-info-value {
    color: var(--text-light);
    font-size: 1rem;
}

/* Music Genre Tags */
.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.genre-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.2);
}

.genre-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(211, 47, 47, 0.3);
    color: #fff;
}

/* Listen Now Section */
.listen-now-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    color: #fff;
}

.listen-now-section h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
}

.listen-now-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.streaming-platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.streaming-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.3);
}

.streaming-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.2);
}

.streaming-btn i {
    font-size: 1.3rem;
}

/* ================================================
   RESPONSIVE DESIGN FOR FEATURE PAGE
   ================================================ */
@media (max-width: 991px) {
    .feature-content {
        font-size: 1.05rem;
    }
    
    .feature-content .article-subheading {
        font-size: 1.5rem;
    }
    
    .feature-pull-quote {
        font-size: 1.2rem;
        padding: 2rem 1.5rem;
    }
    
    .artist-spotlight-box {
        padding: 2rem;
    }
    
    .listen-now-section {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .feature-content {
        font-size: 1rem;
    }
    
    .feature-content .article-subheading {
        font-size: 1.3rem;
        margin: 2rem 0 1rem;
    }
    
    .feature-pull-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .dark-theme-accent {
        padding: 1.5rem;
    }
    
    .artist-spotlight-box {
        padding: 1.5rem;
    }
    
    .artist-spotlight-box .artist-info {
        grid-template-columns: 1fr;
    }
    
    .streaming-platform-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .streaming-btn {
        width: 100%;
        justify-content: center;
    }
    
    .listen-now-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .feature-content .article-subheading {
        font-size: 1.2rem;
    }
    
    .feature-pull-quote {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .genre-tags {
        gap: 0.5rem;
    }
    
    .genre-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}
/* ================================================
   CHRISTMAS INTERVIEW SPECIFIC STYLES
   ================================================ */
.christmas-interview {
    background: #fff;
}

/* Interview List Styling */
.interview-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.interview-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    line-height: 1.6;
    transition: var(--transition);
}

.interview-list li:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

/* Artist Contact Section */
.artist-contact-section {
    border: 2px solid var(--border-color);
    margin: 3rem 0;
}

.artist-contact-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.social-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-links-inline .btn {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.social-links-inline .btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Christmas Theme Decorations */
.christmas-decoration {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 50%, #c41e3a 100%);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    margin: 3rem 0;
}

.christmas-decoration::before {
    content: '❄';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.christmas-decoration::after {
    content: '🎄';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

/* Holiday Message Box */
.holiday-message-box {
    background: linear-gradient(135deg, #165b33 0%, #0f3d22 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.holiday-message-box h4 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.holiday-message-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ================================================
   RESPONSIVE DESIGN FOR CHRISTMAS INTERVIEW
   ================================================ */
@media (max-width: 767px) {
    .interview-list li {
        padding: 0.85rem 1.25rem;
    }
    
    .artist-contact-section {
        padding: 1.5rem;
    }
    
    .social-links-inline {
        flex-direction: column;
    }
    
    .social-links-inline .btn {
        width: 100%;
    }
    
    .holiday-message-box {
        padding: 2rem 1.5rem;
    }
    
    .holiday-message-box h4 {
        font-size: 1.5rem;
    }
}
/* ================================================
   VIDEO SHOWCASE PAGE STYLES
   ================================================ */
.video-showcase {
    background: #fff;
}

.video-releases {
    font-size: 1.05rem;
}

/* Video Release Section */
.video-release-section {
    margin: 3rem 0;
}

.video-release-section .video-container {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

/* Featured Artist Block */
.featured-artist-block {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.artist-block-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-description {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Spotify Section */
.spotify-section {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
}

.spotify-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.spotify-embed-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Album Spotlight Section */
.album-spotlight-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 8px;
    color: #fff;
}

.spotlight-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.album-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.album-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

.streaming-links-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.streaming-links-compact .btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
}

.streaming-links-compact .btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Release Info Section */
.release-info-section {
    padding: 2rem;
    background: var(--accent-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.release-info-section .section-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.release-info-section p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Additional Releases Section */
.additional-releases {
    padding: 2rem;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.additional-releases .section-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Video Grid Layout (Alternative) */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.video-grid-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.video-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ================================================
   RESPONSIVE DESIGN FOR VIDEO SHOWCASE
   ================================================ */
@media (max-width: 991px) {
    .featured-artist-block {
        padding: 2rem;
    }
    
    .artist-block-title {
        font-size: 1.5rem;
    }
    
    .album-spotlight-section {
        padding: 2rem;
    }
    
    .spotlight-title {
        font-size: 1.6rem;
    }
    
    .album-title {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    .video-release-section {
        margin: 2rem 0;
    }
    
    .featured-artist-block {
        padding: 1.5rem;
    }
    
    .artist-block-title {
        font-size: 1.3rem;
    }
    
    .spotify-section {
        padding: 1.5rem;
    }
    
    .album-spotlight-section {
        padding: 1.5rem;
    }
    
    .spotlight-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .streaming-links-compact {
        flex-direction: column;
    }
    
    .streaming-links-compact .btn {
        width: 100%;
        justify-content: center;
    }
    
    .release-info-section {
        padding: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .artist-block-title {
        font-size: 1.2rem;
    }
    
    .spotlight-title {
        font-size: 1.2rem;
    }
    
    .album-title {
        font-size: 1.2rem;
    }
}

/* ================================================
   LOADING STATES FOR VIDEOS
   ================================================ */
.video-loading {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--accent-color);
    border-radius: 8px;
}

.video-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
