/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #0066cc;
}

/* Header Styles */
.header {
    border-bottom: 1px solid #000;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}

/* Scrolled header state - hide top bar and nav, move logo left */
.header.scrolled .header-top {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border-bottom: none;
    opacity: 0;
}

.header.scrolled .header-main .container {
    justify-content: flex-start;
}

.header.scrolled .nav {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    opacity: 0;
}

.header-top {
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 12px;
    max-height: 50px;
    overflow: hidden;
    opacity: 1;
    transition: all 0.3s ease;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-date {
    font-style: italic;
    color: #666;
}

.header-weather {
    display: flex;
    gap: 10px;
    align-items: center;
}

.divider {
    color: #ccc;
}

/* Search Icon Button */
.search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon-btn:hover {
    color: #0066cc;
}

/* Search Bar (inline in header) */
.search-bar {
    display: none;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 12px 0;
}

.search-bar.active {
    display: block;
}

.search-bar-inner {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
}

.search-bar-icon {
    color: #888;
    font-size: 16px;
    margin-right: 10px;
}

.search-bar-input {
    flex: 1;
    padding: 12px 0;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    border: none;
    outline: none;
    background: transparent;
}

.search-bar-input::placeholder {
    color: #999;
}

.search-bar-close {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.search-bar-close:hover {
    background: #eee;
    color: #333;
}

.search-results {
    max-height: 350px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    margin-top: -1px;
}

.search-results:empty {
    display: none;
    border: none;
}

.search-result-item {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #f8f8f8;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    color: #111;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
    line-height: 1.3;
}

.search-result-excerpt {
    color: #666;
    font-size: 13px;
    font-family: 'Georgia', serif;
    margin-bottom: 6px;
    line-height: 1.4;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    font-family: 'Ubuntu', sans-serif;
}

.search-result-meta .author {
    color: #0066cc;
}

.search-result-meta .separator {
    color: #ccc;
}

.search-no-results {
    color: #888;
    text-align: center;
    padding: 30px 20px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
}

.search-loading {
    text-align: center;
    padding: 20px;
    color: #888;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-link:hover {
    color: inherit;
}

.logo-image {
    width: 80px;
    height: auto;
}

.logo-divider {
    width: 2px;
    height: 25px;
    background: #000;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 500;
    color: #000;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
    position: absolute;
    right: 20px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
}

/* Navigation */
.nav {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f8f8;
    max-height: 100px;
    overflow: hidden;
    opacity: 1;
    transition: all 0.3s ease;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 12px 0;
    flex: 1;
}

.nav-list a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: 'Ubuntu', Arial, sans-serif;
}

.nav-list a:hover {
    text-decoration: underline;
}

/* Category Navigation Arrows */
.nav .container {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 16px;
    color: #333;
    transition: all 0.2s ease;
}

.nav-arrow:hover:not(:disabled) {
    color: #0066cc;
}

.nav-arrow:disabled {
    cursor: default;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

/* Articles Loading Skeleton */
.articles-loading {
    min-height: 120vh;
    padding-bottom: 40px;
}

.skeleton-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.skeleton-featured-image {
    height: 400px;
    border-radius: 4px;
}

.skeleton-featured-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
}

.skeleton-category {
    width: 80px;
    height: 14px;
}

.skeleton-title {
    width: 100%;
    height: 28px;
}

.skeleton-title-short {
    width: 70%;
}

.skeleton-excerpt {
    width: 100%;
    height: 16px;
}

.skeleton-meta {
    width: 150px;
    height: 14px;
    margin-top: 10px;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.skeleton-card {
    display: flex;
    flex-direction: column;
}

.skeleton-card-image {
    height: 200px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.skeleton-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loading-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #888;
    padding: 20px;
}

.loading-dot {
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.loading-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.articles-loading.hidden {
    display: none;
}

/* Featured Section */
.featured-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #000;
}

.featured-article {
    display: flex;
    flex-direction: column;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Ubuntu', Arial, sans-serif;
}

.featured-title {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.article-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.author {
    font-weight: 600;
    font-family: 'Ubuntu', Arial, sans-serif;
}

/* Verified Badge - Blue Checkmark */
.verified-badge {
    color: #1DA1F2;
    font-size: 16px;
    margin-left: 4px;
    vertical-align: middle;
}

.date {
    color: #999;
    font-size: 13px;
}

/* Views Metric */
.views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #888;
    font-size: 13px;
    font-family: 'Ubuntu', Arial, sans-serif;
}

.views-icon {
    width: 14px;
    height: 14px;
    fill: #888;
}

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

.sidebar-article {
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-article:last-child {
    border-bottom: none;
}

.sidebar-article h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.sidebar-article h3:hover {
    color: #0066cc;
    cursor: pointer;
}

.article-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.grid-article {
    display: flex;
    flex-direction: column;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 12px;
}

.grid-article h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 8px;
    line-height: 1.3;
}

.grid-article h3:hover {
    color: #0066cc;
    cursor: pointer;
}

.grid-article .article-excerpt {
    margin-bottom: 12px;
}

.grid-article .article-meta {
    font-size: 12px;
    margin-top: auto;
}

/* Opinion Section */
.opinion-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000;
}

.opinion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.opinion-article {
    padding: 20px;
    background: #f9f9f9;
    border-left: 3px solid #0066cc;
}

.opinion-article h3 {
    font-size: 18px;
    margin: 10px 0;
}

.opinion-article p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.opinion-article .author {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Sponsors Section */
.sponsors-section {
    margin: 60px 0 40px;
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

.sponsors-title {
    font-family: 'Ubuntu', Arial, sans-serif !important;
    text-align: center;
    border-bottom: none;
    margin-bottom: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-weight: 500;
}

/* UI Messages */
.no-content-message {
    font-family: 'Ubuntu', Arial, sans-serif;
    text-align: center;
    color: #666;
    padding: 40px 20px;
}

.sponsors-wrapper {
    overflow: hidden;
    position: relative;
}

.sponsors-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sponsors-grid.marquee {
    flex-wrap: nowrap;
    justify-content: flex-start;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sponsor-item {
    flex: 0 0 20%;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 10px;
}

.sponsor-item img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.sponsor-item a {
    display: block;
}

.sponsor-item span {
    display: block;
    font-size: 14px;
    color: #333;
    margin-top: 8px;
}

/* Donations Section */
.donations-section {
    margin: 40px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.donations-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    border-bottom: none;
    margin-bottom: 10px;
    font-size: 24px;
    color: #111;
}

.donations-intro {
    text-align: center;
    color: #666;
    font-family: 'Georgia', serif;
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bank-details {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
}

.bank-details h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
}

.bank-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bank-detail-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 500;
}

.detail-value {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.share-btn {
    padding: 8px 16px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Ubuntu', Arial, sans-serif;
    transition: background 0.3s;
}

.share-btn:hover {
    background: #0052a3;
}

.share-btn.twitter {
    background: #000;
}

.share-btn.twitter:hover {
    background: #333;
}

.share-btn.facebook {
    background: #4267B2;
}

.share-btn.facebook:hover {
    background: #365899;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin:hover {
    background: #005582;
}

.share-btn.copy {
    background: #666;
}

.share-btn.copy:hover {
    background: #444;
}

.share-btn i {
    margin-right: 5px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0 12px;
    margin-top: 40px;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.footer-section h4 {
    font-size: 12px;
    margin-bottom: 6px;
    font-family: 'Ubuntu', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 3px;
}

.footer-section a {
    font-size: 13px;
    color: #666;
}

.footer-section a:hover {
    color: #0066cc;
}

.footer-social-section a {
    font-size: 18px;
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #eee;
}

.footer-affiliation {
    font-size: 12px;
    color: #666;
    margin: 0;
    margin-bottom: 10px;
}

.footer-license {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 11px;
    color: #666;
}

.footer-license .cc-license-logo {
    height: 22px;
    width: auto;
}

.footer-license a {
    color: #0066cc;
}

.footer-license a:hover {
    text-decoration: underline;
}

.footer-social a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opinion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-main .container {
        justify-content: flex-start;
    }
    
    .logo-image {
        width: 60px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .logo-divider {
        height: 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav {
        display: none;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-list a {
        display: block;
        padding: 12px 0;
    }
    
    .featured-section {
        grid-template-columns: 1fr;
    }
    
    .skeleton-featured {
        grid-template-columns: 1fr;
    }
    
    .skeleton-featured-image {
        height: 250px;
    }
    
    .skeleton-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-title {
        font-size: 28px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .opinion-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .sponsor-item {
        flex: 0 0 50%;
        min-width: 50%;
        max-width: 200px;
    }

    .donations-section {
        padding: 25px 20px;
    }

    .bank-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-logo-section {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 50px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-divider {
        height: 18px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .featured-title {
        font-size: 22px;
    }
    
    .featured-excerpt {
        font-size: 16px;
    }
    
    .sponsors-grid {
        flex-direction: column;
    }
    
    .sponsor-item {
        flex: 0 0 50%;
        min-width: 50%;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .header-weather {
        font-size: 11px;
        gap: 5px;
    }
    
    .header-date {
        font-size: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-article, .opinion-article {
    animation: fadeIn 0.6s ease-out;
}

/* Inline Loading Spinner */
.inline-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #666;
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 14px;
}

.inline-loader .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #eee;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =================================================================
   Spotlight Section
   ================================================================= */
.spotlight-section {
    margin-bottom: 40px;
}

.spotlight-container {
    position: relative;
    overflow: hidden;
    background: #000;
}

.spotlight-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.spotlight-content {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 60px 30px 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.spotlight-caption {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.spotlight-caption::first-letter {
    font-size: 1.5em;
    font-weight: 900;
}

.spotlight-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 10px 25px;
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.spotlight-btn:hover {
    background: #000;
    color: #fff;
}

/* Spotlight Skeleton */
.spotlight-loading {
    display: flex;
    flex-direction: column;
}

.skeleton-spotlight {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    background: #e9e9e9;
}

.skeleton-spotlight-caption {
    width: 60%;
    height: 24px;
    margin-top: 15px;
    border-radius: 4px;
    background: #e9e9e9;
}

.spotlight-loading.hidden {
    display: none;
}

/* =================================================================
   Free Ads Section (Nonprofit Ads)
   ================================================================= */
.free-ads-section {
    margin: 50px 0 30px;
    padding: 30px 0;
}

.free-ad-container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.free-ad-link {
    display: inline-block;
}

.free-ad-image {
    max-width: 100%;
    max-height: 720px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.free-ad-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 12px;
    color: #888;
    font-family: 'Ubuntu', Arial, sans-serif;
}

.free-ad-label svg {
    width: 14px;
    height: 14px;
    fill: #888;
}

.free-ad-why {
    background: none;
    border: none;
    color: #0066cc;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Ubuntu', Arial, sans-serif;
    padding: 0;
    margin-left: 5px;
}

.free-ad-why:hover {
    text-decoration: underline;
}

.free-ad-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.free-ad-details.expanded {
    max-height: 200px;
}

.free-ad-details-inner {
    padding: 15px 0 5px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-family: 'Ubuntu', Arial, sans-serif;
}

.free-ad-details-inner a {
    color: #0066cc;
}

/* Free Ads Skeleton */
.free-ads-loading {
    display: flex;
    justify-content: center;
}

.skeleton-free-ad {
    width: 100%;
    max-width: 728px;
    height: 120px;
    background: #e9e9e9;
}

.free-ads-loading.hidden {
    display: none;
}

/* In-article Free Ad */
.article-free-ad {
    margin: 40px 0;
    text-align: center;
}

.article-free-ad .free-ad-container {
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .spotlight-caption {
        font-size: 22px;
    }
    
    .spotlight-content {
        padding: 40px 20px 20px;
    }
    
    .spotlight-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .skeleton-spotlight {
        height: 200px;
    }
    
    .skeleton-free-ad {
        height: 80px;
    }
    
    .free-ad-label {
        font-size: 11px;
    }
    
    .free-ad-details-inner {
        font-size: 12px;
    }
}
