/* Premium Single Post Styles */

.premium-single-layout {
    display: grid;
    grid-template-columns: 280px 1fr 340px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

.premium-ad-slot img, .premium-ad-slot ins, .premium-ad-slot div {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .premium-single-layout {
        grid-template-columns: 240px 1fr 300px;
        gap: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .premium-single-layout {
        grid-template-columns: 1fr 300px;
    }
    .premium-single-sidebar-left {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .premium-single-layout {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .premium-single-sidebar-right {
        display: none;
    }

    .premium-single-main {
        padding: 15px;
    }

    .premium-post-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .premium-post-meta-bar {
        gap: 10px;
        font-size: 11px;
    }

    .premium-social-share-bar {
        gap: 8px;
    }

    .premium-social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .premium-google-news-badge {
        height: 28px;
        width: 100%;
        margin-bottom: 5px;
    }

    .premium-whatsapp-channel-btn {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    #premium-article-body {
        font-size: 17px;
        line-height: 1.7;
    }

    .premium-post-tags-box {
        padding: 15px;
    }

    .premium-tags-label {
        width: 100%;
        margin-bottom: 10px;
    }

    .premium-post-share-box {
        flex-wrap: wrap;
        padding: 15px 10px;
    }

    .premium-post-follow-box {
        padding: 25px 15px;
    }

    .premium-follow-text {
        font-size: 16px;
    }

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

/* Sidebar Widgets (Left & Right) */
.premium-sidebar-widget {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.premium-widget-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 2px solid var(--primary-color);
}

.premium-widget-title {
    font-size: 14px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-widget-title i {
    color: var(--primary-color);
}

.premium-widget-nav {
    display: flex;
    gap: 5px;
}

.premium-widget-nav span {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.premium-widget-nav span:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Sidebar Post Items */
.premium-sidebar-post {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

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

.premium-sidebar-post-img {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.premium-sidebar-post-img img {
    width: 100%;
    height: auto;
    display: block;
}

.premium-sidebar-post-title {
    font-family: var(--noto-tamil);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-sidebar-post-title:hover {
    color: var(--primary-color);
}

/* Recent News Specific (Right Sidebar) */
.premium-recent-news-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.premium-recent-news-img {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.premium-recent-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-recent-news-body {
    flex-grow: 1;
}

.premium-recent-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 10px;
    color: #888;
}

.premium-recent-meta-left {
    display: flex;
    gap: 10px;
}

/* Main Article Content Styles */
.premium-single-main {
    background: #fff;
}

.premium-post-head {
    margin-bottom: 25px;
}

.premium-post-title {
    font-family: var(--noto-tamil);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.premium-post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.premium-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-meta-author {
    color: var(--primary-color);
    font-weight: 700;
}

/* Social Share Bar */
.premium-social-share-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.premium-google-news-badge {
    height: 32px;
}

.premium-google-news-badge img {
    height: 100%;
    width: auto;
}

.premium-share-label {
    font-weight: 800;
    font-size: 12px;
    color: #333;
    margin-right: 5px;
}

.premium-social-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.premium-social-icon:hover {
    opacity: 0.8;
}

.premium-social-icon.facebook { background: #3b5998; }
.premium-social-icon.whatsapp { background: #25d366; }
.premium-social-icon.instagram { background: #e4405f; }
.premium-social-icon.telegram { background: #0088cc; }
.premium-social-icon.youtube { background: #ff0000; }
.premium-social-icon.linkedin { background: #0077b5; }
.premium-social-icon.threads { background: #000; }
.premium-social-icon.x { background: #000; }
.premium-social-icon.mail { background: #444; }

.premium-social-icon i {
    color: #fff !important;
}

.premium-whatsapp-channel-btn {
    background: #25d366;
    color: #fff !important;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-whatsapp-channel-btn i {
    color: #fff !important;
}

/* Featured Image */
.premium-post-featured-img {
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.premium-post-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
#premium-article-body {
    font-family: var(--noto-tamil);
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    padding-bottom: 30px;
}

#premium-article-body p {
    margin-bottom: 20px;
}

#premium-article-body b, #premium-article-body strong {
    color: var(--primary-color);
}

/* Post Bottom Sections */
.premium-post-bottom-wrap {
    margin-top: 30px;
}

.premium-post-tags-box {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.premium-tags-label {
    font-weight: 800;
    font-size: 16px;
    color: #333;
    margin-right: 10px;
}

.premium-post-tags-box a {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.premium-post-tags-box a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.premium-post-share-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #fff;
}

.premium-post-follow-box {
    background: #f0f0f0;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
}

.premium-follow-text {
    font-family: var(--noto-tamil);
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.5;
}

.premium-follow-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.premium-btn-follow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.premium-btn-follow i {
    color: #fff !important;
}

.premium-btn-follow:hover {
    transform: translateY(-2px);
}

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

.premium-btn-follow.youtube { background: #ff0000; }
.premium-btn-follow.facebook { background: #3b5998; }
.premium-btn-follow.x { background: #000; }
.premium-btn-follow.instagram { background: #e4405f; }

/* Related Posts Section */
.premium-related-posts {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.premium-related-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.premium-related-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

.premium-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.premium-related-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}

.premium-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.premium-related-img {
    height: 140px;
    overflow: hidden;
}

.premium-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-related-body {
    padding: 12px;
}

.premium-related-title {
    font-family: var(--noto-tamil);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .premium-related-grid {
        grid-template-columns: 1fr;
    }
    .premium-related-img {
        height: 180px;
    }
}

/* Left Sidebar Sliders */
.premium-watch-item, .premium-read-item {
    padding: 15px;
}
