    /* Full width layout adjustments */
    .full-width-container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .main-content-wrapper {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .article-main-section {
        display: flex;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .article-sidebar {
        flex: 0 0 350px;
        max-width: 350px;
    }
    
    .article-content-area {
        flex: 1;
        min-width: 0; /* Prevent flex item from overflowing */
    }

    /* Sticky Sidebar */
    .sticky-sidebar {
        position: sticky;
        top: calc(100px + 1rem);
        z-index: 10;
    }
    @media (max-width: 991.98px) {
        .sticky-sidebar {
            position: static;
        }
    }

    /* Share Bar (now static below featured image) */
    .static-share {
        display: flex;
        gap: 10px;
        margin: 1.5rem 0;
        justify-content: center;
    }
    .static-share .share-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(11, 156, 160, 0.2);
        background: linear-gradient(135deg, #0b9ca0 0%, #087c78 100%);
        color: white;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(11, 156, 160, 0.3);
    }
    .static-share .share-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(11, 156, 160, 0.4);
        background: linear-gradient(135deg, #087c78 0%, #0b9ca0 100%);
    }

    /* Author Social Links */
    .author-social-links {
        display: flex;
        gap: 8px;
        margin-top: 10px;
    }
    .author-social-link {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        border: 1px solid rgba(11, 156, 160, 0.2);
        background: rgba(11, 156, 160, 0.1);
        color: #087c78;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
    }
    .author-social-link:hover {
        background: linear-gradient(135deg, #0b9ca0 0%, #087c78 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(11, 156, 160, 0.3);
    }

    /* Copy Link Popup */
    .copy-link-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 9999;
        border: 2px solid #0b9ca0;
        text-align: center;
        display: none;
    }
    .copy-link-popup.show {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
    .copy-link-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        display: none;
    }
    .copy-link-overlay.show {
        display: block;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translate(-50%, -60%); }
        to { opacity: 1; transform: translate(-50%, -50%); }
    }

    /* Excerpt box */
    .excerpt-box {
        border-left: 5px solid #0b9ca0;
        background: rgba(11, 156, 160, 0.05);
        position: relative;
        border-radius: 8px;
    }
    .excerpt-box i {
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
    }

    /* Subscribe widget */
    .subscribe-widget input.form-control {
        border: 1px solid rgba(11, 156, 160, 0.2);
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.8);
    }
    .subscribe-widget input.form-control:focus {
        border-color: #0b9ca0;
        box-shadow: 0 0 0 0.2rem rgba(11, 156, 160, 0.25);
    }
    .subscribe-widget .btn {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }

    /* Image caption overlay */
    .image-caption-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        font-size: 0.875rem;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
    }

    /* For the main article image in the detail page */
    .article-img-main {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 0.5rem;
    }

    /* For related posts (smaller cards) */
    .article-img-related {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }

    /* For latest posts (grid cards) */
    .article-img-latest {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }

    /* Category badge */
    .badge.bg-danger {
        background: linear-gradient(135deg, #0b9ca0 0%, #087c78 100%) !important;
        font-size: 0.75rem;
        padding: 0.35em 0.6em;
        border-radius: 0.35rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
    }

    /* Mobile Pagination */
    @media (max-width: 767.98px) {
        .pagination {
            flex-wrap: wrap;
            gap: 4px;
        }
        .page-link {
            min-width: 36px;
            height: 36px;
            font-size: 0.875rem;
        }
    }

    .hashtag-badge {
        display: inline-block;
        padding: 0.4rem 0.9rem;
        border-radius: 25px;
        background: rgba(11, 156, 160, 0.1);
        border: 1px solid rgba(11, 156, 160, 0.3);
        font-size: 0.9rem;
        color: #087c78;
        transition: all 0.3s ease-in-out;
        font-weight: 500;
    }
    .hashtag-badge:hover {
        background: linear-gradient(135deg, #0b9ca0 0%, #087c78 100%);
        border-color: #0b9ca0;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(11, 156, 160, 0.3);
    }

    .prev-next-wrapper {
        display: flex;
        gap: 15px;
        margin: 20px 0;
    }

    .prev-next-card {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 15px 20px;
        border: 1px solid rgba(11, 156, 160, 0.2);
        border-radius: 10px;
        background: rgba(11, 156, 160, 0.05);
        transition: all 0.3s ease-in-out;
        min-width: 0;
    }

    .prev-next-card.text-end {
        justify-content: flex-end;
    }

    .prev-next-card:hover {
        background: rgba(11, 156, 160, 0.1);
        box-shadow: 0 8px 25px rgba(11, 156, 160, 0.15);
        transform: translateY(-3px);
        border-color: rgba(11, 156, 160, 0.4);
    }

    .prev-next-card .arrow {
        font-size: 1.5rem;
        color: #0b9ca0;
    }

    .prev-next-card .fw-bold {
        color: #087c78;
    }

    /* Enhanced card hover effects */
    .card {
        transition: all 0.3s ease;
        border: 1px solid rgba(11, 156, 160, 0.1);
    }

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

    /* Button hover effects */
    .btn[style*="#12b2bb"]:hover {
        background: linear-gradient(135deg, #0b9ca0 0%, #087c78 100%) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(11, 156, 160, 0.3);
    }

    /*  Mobile (stack vertically) */
    @media (max-width: 768px) {
        .prev-next-wrapper {
            flex-direction: column;
        }
        .prev-next-card {
            width: 100%;
            justify-content: center;
            text-align: center;
        }
        .prev-next-card.text-end {
            justify-content: center;
        }
        .author-social-links {
            justify-content: center;
        }
        
        /* Full width mobile adjustments */
        .article-main-section {
            flex-direction: column;
            padding: 0 10px;
        }
        
        .article-sidebar {
            flex: 1;
            max-width: 100%;
            width: 100%;
        }
        
        .article-content-area {
            width: 100%;
        }
    }

    /* ================= Sports Media Pro Author CSS ================= */
    .article-author-box {
        background: rgba(11, 156, 160, 0.05);
        border-left: 5px solid #0b9ca0;
        padding: 20px;
        border-radius: 8px;
        display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 25px;
        border: 1px solid rgba(11, 156, 160, 0.1);
    }
    .article-author-box .author-photo {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
        box-shadow: 0 4px 12px rgba(11, 156, 160, 0.3);
    }
    .article-author-box .author-name,
    .article-author-box .co-name,
    .article-author-box .editor-name {
        font-weight: 600;
        color: #087c78;
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease;
    }
    .article-author-box .author-name:hover,
    .article-author-box .co-name:hover,
    .article-author-box .editor-name:hover {
        color: #0b9ca0;
    }
    .article-author-box .role-badge {
        background: linear-gradient(135deg, #0b9ca0 0%, #087c78 100%);
        color: white;
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 4px;
        margin-left: 6px;
        border: none;
    }
    .article-author-box .author-meta-info {
        color: #555;
        font-size: 13px;
        margin-top: 6px;
    }
    .article-author-box .updated-text {
        color: #0b9ca0;
        font-style: italic;
        font-weight: 500;
    }
    @media (max-width: 768px) {
        .article-author-box { flex-direction: column; align-items: flex-start; }
    }

    /* Main content background */
    .main-content-bg {
        background: linear-gradient(135deg, #f8fdff 0%, #f0f9fa 100%);
        min-height: 100vh;
    }

    /* ================= Ad Slot Styling ================= */
    .ad-slot {
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(11, 156, 160, 0.1);
        overflow: hidden;
        margin-bottom: 1.5rem;
    }

    .ad-slot-header {
        background: linear-gradient(135deg, #f8fdff 0%, #f0f9fa 100%);
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(11, 156, 160, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ad-slot-label {
        font-size: 0.75rem;
        color: #0b9ca0;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
    }

    .ad-slot-content {
        padding: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 90px;
        background: rgba(11, 156, 160, 0.03);
    }

    /* Specific ad placements */
    .ad-slot-header_banner {
        margin-bottom: 2rem;
        border-radius: 0.75rem;
    }

    .ad-slot-home_sidebar {
        margin-bottom: 1.5rem;
    }

    .ad-slot-article_footer {
        margin-top: 3rem;
        border-top: 3px solid rgba(11, 156, 160, 0.2);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .ad-slot-content {
            padding: 1rem;
            min-height: 70px;
        }
    }

    /* ================= CONTENT STYLING ================= */
    .article-content {
        line-height: 1.8;
        font-size: 1.1rem;
        color: #2d3748;
    }

    /* Blockquote Styling - For quoted texts */
    .article-content blockquote {
        border-left: 4px solid #0b9ca0;
        background: rgba(11, 156, 160, 0.05);
        padding: 1.5rem 2rem;
        margin: 2rem 0;
        font-style: italic;
        border-radius: 0 8px 8px 0;
        position: relative;
    }

    .article-content blockquote:before {
        content: '"';
        font-size: 3rem;
        color: #0b9ca0;
        opacity: 0.3;
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        font-family: Georgia, serif;
    }

    .article-content blockquote p {
        margin-bottom: 0.5rem;
        color: #087c78;
        font-weight: 500;
    }

    .article-content blockquote cite {
        display: block;
        margin-top: 1rem;
        font-size: 0.9rem;
        color: #666;
        font-style: normal;
        font-weight: 500;
    }

    .article-content blockquote cite:before {
        content: "— ";
    }

    /* Link Styling - Show only text, no URL */
    .article-content a {
        color: #0b9ca0;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 2px solid rgba(11, 156, 160, 0.3);
        transition: all 0.3s ease;
        padding: 0 2px;
    }

    .article-content a:hover {
        color: #087c78;
        border-bottom-color: #0b9ca0;
        background: rgba(11, 156, 160, 0.1);
    }

    /* Remove URL display for links while keeping functionality */
    .article-content a[href*="//"]:not([class*="btn"]):not([class*="badge"]):not([class*="share"]):after {
        content: "" !important;
        display: none !important;
    }

    /* Image Styling within content */
    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 2rem 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 3px solid white;
        display: block;
    }

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

    /* Figure and caption styling */
    .article-content figure {
        margin: 2rem 0;
        text-align: center;
    }

    .article-content figure img {
        margin-bottom: 0.5rem;
    }

    .article-content figcaption {
        font-size: 0.875rem;
        color: #666;
        font-style: italic;
        padding: 0.5rem 1rem;
        background: rgba(11, 156, 160, 0.05);
        border-radius: 0 0 8px 8px;
        margin-top: -0.5rem;
    }

    /* Embedded content styling */
    .article-content .embed-responsive {
        margin: 2rem 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Social media embeds */
    .article-content .twitter-tweet,
    .article-content .instagram-media,
    .article-content .fb-post,
    .article-content .tiktok-embed {
        margin: 2rem auto !important;
        border-radius: 12px !important;
        overflow: hidden;
    }

    /* Paragraph and text formatting */
    .article-content p {
        margin-bottom: 1.5rem;
        text-align: justify;
    }

    .article-content h2, 
    .article-content h3, 
    .article-content h4 {
        color: #087c78;
        margin: 2.5rem 0 1.5rem 0;
        font-weight: 700;
        line-height: 1.3;
    }

    .article-content h2 {
        font-size: 1.8rem;
        border-bottom: 2px solid rgba(11, 156, 160, 0.2);
        padding-bottom: 0.5rem;
    }

    .article-content h3 {
        font-size: 1.5rem;
    }

    .article-content h4 {
        font-size: 1.3rem;
    }

    /* List styling */
    .article-content ul, 
    .article-content ol {
        margin: 1.5rem 0;
        padding-left: 2rem;
    }

    .article-content li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .article-content ul li {
        list-style-type: disc;
    }

    .article-content ol li {
        list-style-type: decimal;
    }

    /* Code and pre formatting */
    .article-content pre {
        background: #1a202c;
        color: #e2e8f0;
        padding: 1.5rem;
        border-radius: 8px;
        overflow-x: auto;
        margin: 1.5rem 0;
        border-left: 4px solid #0b9ca0;
    }

    .article-content code {
        background: rgba(11, 156, 160, 0.1);
        color: #087c78;
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
        font-size: 0.9em;
        font-weight: 500;
    }

    /* Table styling */
    .article-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .article-content th {
        background: linear-gradient(135deg, #0b9ca0 0%, #087c78 100%);
        color: white;
        font-weight: 600;
        padding: 1rem;
        text-align: left;
    }

    .article-content td {
        padding: 1rem;
        border-bottom: 1px solid rgba(11, 156, 160, 0.1);
    }

    .article-content tr:nth-child(even) {
        background: rgba(11, 156, 160, 0.03);
    }

    /* Horizontal rule */
    .article-content hr {
        border: none;
        height: 2px;
        background: linear-gradient(90deg, transparent, #0b9ca0, transparent);
        margin: 2.5rem 0;
    }

    /* Social embed wrappers */
    .social-embed {
        margin: 2rem 0;
        text-align: center;
    }

    /* External link styling */
    .external-link {
        color: #0b9ca0 !important;
        text-decoration: none !important;
        font-weight: 600;
        border-bottom: 2px solid rgba(11, 156, 160, 0.3);
        transition: all 0.3s ease;
    }

    .external-link:hover {
        color: #087c78 !important;
        border-bottom-color: #0b9ca0;
        background: rgba(11, 156, 160, 0.1);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .article-content {
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .article-content blockquote {
            padding: 1rem 1.5rem 1rem 1.5rem;
            margin: 1.5rem 0;
        }
        
        .article-content h2 {
            font-size: 1.5rem;
        }
        
        .article-content h3 {
            font-size: 1.3rem;
        }
        
        .article-content img {
            margin: 1.5rem 0;
            border-radius: 8px;
        }
    }

    /* Broken image fallback */
    .article-content img:before {
        content: " ";
        display: block;
        position: absolute;
        top: -10px;
        left: 0;
        height: calc(100% + 10px);
        width: 100%;
        background-color: #f8f9fa;
        border: 2px dashed #dee2e6;
        border-radius: 8px;
    }

    .article-content img:after {
        content: "🚫 Image not available";
        display: block;
        font-size: 14px;
        color: #6c757d;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }