/* ==========================================================================
   PREMIUM BLOG POST TEMPLATE STYLES (BloggingX Layout Alignment)
   Namespace: .premium-post-template
   ========================================================================== */

/* Core Typography & Spacing */
/* Hide default Astra single post title banner */
.post-template-single-premium .ast-single-entry-banner,
.post-template-single-premium .ast-single-post-banner {
    display: none !important;
}

/* ── Reset ALL Astra outer wrappers to full-width ──
   Astra wraps content in .site-content > #primary > .ast-container > article
   Each adds max-width or padding that breaks the header alignment.
   We override them all here so our premium-container controls alignment. */
.premium-post-template,
.premium-post-template #primary,
.post-template-single-premium #primary,
.post-template-single-premium .site-content,
.post-template-single-premium .ast-container,
.post-template-single-premium #content,
.post-template-single-premium .content-area,
body.post-template-single-premium #page,
body.post-template-single-premium .site-content-contain {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* Reset the article element's default Astra margins */
.premium-post-template article.post {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.premium-post-template {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2D3748;
    line-height: 1.8;
    font-size: 19px;
    -webkit-font-smoothing: antialiased;
}

/* Main Container Grid — padding matches header (px-4 md:px-12 lg:px-20) */
.premium-post-template .premium-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 40px auto 0 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    .premium-post-template .premium-container {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

@media (min-width: 1024px) {
    .premium-post-template .premium-container {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
}


.premium-main-column {
    display: flex;
    flex-direction: column;
}

/* Reading Progress Bar */
.premium-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}

.premium-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3182CE 0%, #319795 100%);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Breadcrumb Navigation */
.premium-breadcrumbs {
    font-size: 14px;
    color: #718096;
    margin-bottom: 16px;
}

.premium-breadcrumbs a {
    color: #4A5568;
    text-decoration: none;
    transition: color 0.2s;
}

.premium-breadcrumbs a:hover {
    color: #3182CE;
}

.premium-breadcrumbs span {
    margin: 0 8px;
    color: #A0AEC0;
}

/* Category Badges */
.premium-category-badge-inline {
    display: inline-block;
    background: #EBF8FF;
    color: #2B6CB0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 12px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    vertical-align: middle;
}

.premium-category-badge-inline:hover {
    background: #2B6CB0;
    color: #FFF;
    text-decoration: none;
}

/* Title & Meta Details */
.premium-post-title {
    font-size: clamp(32px, 3.8vw, 46px);
    font-weight: 800;
    line-height: 1.25;
    color: #1A202C;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.premium-meta-wrapper-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.premium-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.premium-meta-details {
    font-size: 15px;
    color: #4A5568;
}

.premium-author-name a {
    font-weight: 700;
    color: #1A202C;
    text-decoration: none;
}

.premium-author-name a:hover {
    color: #3182CE;
}

.premium-meta-text {
    margin-left: 12px;
    color: #718096;
}

.premium-share-floating {
    position: fixed;
    top: 250px;
    left: calc((100vw - var(--ast-global-container-width, 1200px)) / 2 - 60px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

@media (max-width: 1350px) {
    .premium-share-floating {
        display: none !important;
    }
}

.premium-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EDF2F7;
    color: #4A5568;
    text-decoration: none;
    transition: all 0.2s ease;
}

.premium-share-btn:hover {
    transform: translateY(-2px);
    color: #FFF;
}

.premium-share-btn.twitter:hover {
    background: #1DA1F2;
}

.premium-share-btn.facebook:hover {
    background: #1877F2;
}

.premium-share-btn.linkedin:hover {
    background: #0077B5;
}

.premium-share-btn.email:hover {
    background: #808080;
}

.premium-share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Hero Featured Image */
.premium-hero-image-wrap {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.premium-hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Area Styling */
.premium-content-inner {
    background: #FFF;
    padding: 0;
    margin-bottom: 40px;
}

.premium-content-inner p {
    margin-bottom: 24px;
    font-size: 19px;
    line-height: 1.8;
}

.premium-content-inner h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1A202C;
    margin-top: 40px;
    margin-bottom: 20px;
}

.premium-content-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A202C;
    margin-top: 30px;
    margin-bottom: 16px;
}

.premium-content-inner a {
    color: #134CD8;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
    font-weight: 600;
}

.premium-content-inner a:hover {
    color: #002BB0;
}

/* Blockquotes */
.premium-content-inner blockquote {
    border-left: 5px solid #134CD8;
    background: #F7FAFC;
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 20px;
    color: #4A5568;
}

/* 2-Column Table of Contents layout inside premium content */
.premium-post-template .uagb-toc__list,
.premium-post-template .ez-toc-list {
    border: 1px solid #E2E8F0 !important;
    border-radius: 8px !important;
    padding: 24px !important;
    background: #FAFBFC !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 24px !important;
    list-style: none !important;
}

@media (max-width: 768px) {

    .premium-post-template .uagb-toc__list,
    .premium-post-template .ez-toc-list {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

.premium-post-template .uagb-toc__list li a,
.premium-post-template .ez-toc-list li a {
    font-size: 15px !important;
    color: #3182CE !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.premium-post-template .uagb-toc__list li a:hover,
.premium-post-template .ez-toc-list li a:hover {
    text-decoration: underline !important;
}

/* Callout Alert Boxes */
.premium-callout {
    display: flex;
    gap: 16px;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    border-left: 5px solid;
    font-size: 16px;
}

.premium-callout-icon {
    font-size: 20px;
    line-height: 1;
}

.premium-callout-content {
    flex: 1;
}

.premium-callout-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: #1A202C;
}

/* Callout Variants */
.premium-callout.info {
    border-left-color: #3182CE;
    background: #EBF8FF;
}

.premium-callout.warning {
    border-left-color: #DD6B20;
    background: #FFFAF0;
}

.premium-callout.success {
    border-left-color: #38A169;
    background: #F0FFF4;
}

.premium-callout.note {
    border-left-color: #4A5568;
    background: #EDF2F7;
}

.premium-callout.affiliate {
    border-left-color: #805AD5;
    background: #FAF5FF;
}

.premium-callout.tip {
    border-left-color: #319795;
    background: #E6FFFA;
}

/* Reusable Custom Buttons */
.premium-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #134CD8 0%, #002BB0 100%);
    color: #FFF !important;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(19, 76, 216, 0.2);
    transition: all 0.2s ease;
    cursor: pointer;
}

.premium-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(19, 76, 216, 0.3);
}

/* Pros and Cons */
.premium-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.premium-pc-card {
    background: #FFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.premium-pc-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-pc-card.pros .premium-pc-title {
    color: #2F855A;
}

.premium-pc-card.cons .premium-pc-title {
    color: #C53030;
}

.premium-pc-list {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

.premium-pc-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
}

.premium-pc-list li::before {
    position: absolute;
    left: 0;
    top: 4px;
    font-weight: 700;
}

.premium-pc-card.pros .premium-pc-list li::before {
    content: "✓";
    color: #38A169;
}

.premium-pc-card.cons .premium-pc-list li::before {
    content: "✗";
    color: #E53E3E;
}

/* Premium FAQ Accordion */
.premium-faq-accordion {
    margin: 30px 0;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
}

.premium-faq-item {
    border-bottom: 1px solid #E2E8F0;
}

.premium-faq-item:last-child {
    border-bottom: none;
}

.premium-faq-question {
    width: 100%;
    text-align: left;
    background: #FFF;
    border: none;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 16px;
    color: #2D3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.premium-faq-question:hover {
    background: #F7FAFC;
}

.premium-faq-question::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
    color: #718096;
}

.premium-faq-item.active .premium-faq-question::after {
    content: "−";
}

.premium-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #FFF;
}

.premium-faq-answer-inner {
    padding: 0 20px 16px;
    font-size: 15px;
    color: #4A5568;
}

/* Tables styling */
body.post-template-single-premium .premium-post-template .premium-content-inner table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;

    font-size: 15px !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid #E2E8F0 !important;
    background: #FFF !important;
}

body.post-template-single-premium .premium-post-template .premium-content-inner table th,
body.post-template-single-premium .premium-post-template .premium-content-inner th {
    background-color: #134CD8 !important;
    color: #FFF !important;
    font-weight: 700 !important;
    padding: 14px 20px !important;
    text-align: center !important;
    border: none !important;
    border-bottom: 2px solid #002BB0 !important;
}

/* Left-align the first header (Plan name) */
body.post-template-single-premium .premium-post-template .premium-content-inner table th:first-child,
body.post-template-single-premium .premium-post-template .premium-content-inner th:first-child {
    text-align: left !important;
}

body.post-template-single-premium .premium-post-template .premium-content-inner table td,
body.post-template-single-premium .premium-post-template .premium-content-inner td {
    padding: 14px 20px !important;
    background: #FFF !important;
    color: #2D3748 !important;
    border: none !important;
    border-bottom: 1px solid #E2E8F0 !important;
    text-align: center !important;
}

/* Left-align the first column data cell (Plan name) */
body.post-template-single-premium .premium-post-template .premium-content-inner table td:first-child,
body.post-template-single-premium .premium-post-template .premium-content-inner td:first-child {
    text-align: left !important;
    font-weight: 600 !important;
    color: #1A202C !important;
}

/* Add vertical borders between columns internally */
body.post-template-single-premium .premium-post-template .premium-content-inner table th:not(:last-child),
body.post-template-single-premium .premium-post-template .premium-content-inner th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body.post-template-single-premium .premium-post-template .premium-content-inner table td:not(:last-child),
body.post-template-single-premium .premium-post-template .premium-content-inner td:not(:last-child) {
    border-right: 1px solid #F1F5F9 !important;
}

body.post-template-single-premium .premium-post-template .premium-content-inner table tr:last-child td,
body.post-template-single-premium .premium-post-template .premium-content-inner tr:last-child td {
    border-bottom: none !important;
}

body.post-template-single-premium .premium-post-template .premium-content-inner table tr:hover td,
body.post-template-single-premium .premium-post-template .premium-content-inner tr:hover td {
    background-color: #F7FAFC !important;
}

/* Sidebar Columns Setup */
.premium-sidebar {
    position: relative;
}

.premium-sidebar-inner {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Premium Sidebar Card Base */
.premium-sidebar-card {
    background: #FFF;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #E2E8F0;
}

/* 1. Semrush Blue Trial CTA Widget */
.premium-sidebar-blue-trial {
    background: #134CD8;
    color: #FFF;
    border: none;
    text-align: center;
}

.premium-trial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.premium-gift-icon {
    font-size: 28px;
}

.premium-trial-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
    margin: 0;
    line-height: 1.3;
}

.premium-trial-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.premium-trial-link-box {
    border: 2px dashed rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    font-family: monospace;
    font-size: 13px;
    color: #FFF;
    margin-bottom: 12px;
    word-break: break-all;
}

.premium-trial-exclusive {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.premium-trial-cta-btn {
    display: block;
    background: #FF5E2B;
    color: #FFF;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    transition: background-color 0.2s;
    box-shadow: 0 4px 10px rgba(255, 94, 43, 0.3);
}

.premium-trial-cta-btn:hover {
    background: #E04E1F;
}

.premium-trial-secure {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 14px;
    margin-bottom: 0;
}

/* 2. Checklist Card styling */
.premium-sidebar-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 16px;
    border-bottom: 1px solid #EDF2F7;
    padding-bottom: 8px;
}

.premium-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.premium-checklist li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #4A5568;
}

.premium-checklist li .check-icon {
    position: absolute;
    left: 0;
    top: 2px;
    color: #38A169;
    font-weight: 800;
}

.premium-checklist-link {
    font-size: 13px;
    color: #134CD8;
    font-weight: 700;
    text-decoration: none;
}

.premium-checklist-link:hover {
    text-decoration: underline;
}

/* 3. Sidebar Author Profile Widget */
.premium-sidebar-author-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.premium-sidebar-author-profile img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.premium-sidebar-author-details {
    display: flex;
    flex-direction: column;
}

.premium-sidebar-author-title {
    font-size: 16px;
    font-weight: 800;
    color: #1A202C;
    margin: 0;
}

.premium-sidebar-author-short-bio {
    font-size: 11px;
    color: #718096;
    margin: 2px 0 0 0;
    line-height: 1.3;
}

.premium-sidebar-author-description {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.premium-sidebar-author-btn {
    display: block;
    text-align: center;
    background: #134CD8;
    color: #FFF;
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.premium-sidebar-author-btn:hover {
    background: #002BB0;
}

/* 4. Trust box Widget Card */
.premium-sidebar-trust-box {
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
}

.premium-trust-more {
    margin-top: 12px;
    margin-bottom: 0;
}

.premium-trust-more a {
    color: #134CD8;
    text-decoration: none;
    font-weight: 600;
}

.premium-trust-more a:hover {
    text-decoration: underline;
}

/* Author Box (bottom of article) */
.premium-author-box {
    background: #FFF;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #E2E8F0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.premium-author-avatar-big img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.premium-author-content {
    flex: 1;
}

.premium-author-meta-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #A0AEC0;
    margin-bottom: 4px;
}

.premium-author-box-name {
    font-size: 18px;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 8px;
}

.premium-author-bio {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 12px;
}

.premium-author-links {
    display: flex;
    gap: 12px;
}

.premium-author-link {
    font-size: 13px;
    color: #134CD8;
    text-decoration: none;
    font-weight: 600;
}

/* Related Posts Section (Semrush style square cards) */
.premium-related-posts-section {
    margin-top: 40px;
    border-top: 1px solid #E2E8F0;
    padding-top: 30px;
}

.premium-related-title {
    font-size: 18px;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 20px;
}

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

.premium-related-card {
    background: #FFF;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.premium-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.premium-related-image {
    height: 140px;
    overflow: hidden;
    border-bottom: 1px solid #E2E8F0;
}

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

.premium-related-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-related-post-title {
    font-size: 14px;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.4;
    margin: 0;
}

.premium-related-post-title a {
    color: inherit;
    text-decoration: none;
}

.premium-related-post-title a:hover {
    color: #134CD8;
}

/* Comments Section */
.premium-comments-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 30px;
    border: none;
}

/* Mobile share bar */
.premium-share-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Breakpoints */



/* ==========================================================================
   REUSABLE PREMIUM COUPON CARD DESIGN (BloggingX Aligned)
   ========================================================================== */
.premium-coupons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.premium-coupon-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    overflow: hidden;
    background: #FFF;
    border: 1px solid #E2E8F0;
    box-shadow: none !important;
    min-height: 160px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .premium-coupon-card {
        min-height: 160px !important;
    }

    .premium-coupon-left,
    .premium-coupon-right {
        height: auto !important;
        align-self: stretch !important;
    }
}

/* Color variant borders */
.premium-coupon-color-orange {
    border-color: #FF5E2B;
}

.premium-coupon-color-purple {
    border-color: #805AD5;
}

.premium-coupon-color-blue {
    border-color: #134CD8;
}

.premium-coupon-left {
    width: 33%;
    flex: 1 1 220px;
    background: #171821;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.premium-coupon-brand-wrap {
    text-align: center;
    width: 100%;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgba(23, 24, 33, 0.8);
}

.premium-coupon-logo {
    color: #FFF;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.premium-coupon-plan {
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Plan label colors */
.premium-coupon-color-orange .premium-coupon-plan {
    color: #FF5E2B;
}

.premium-coupon-color-purple .premium-coupon-plan {
    color: #9F7AEA;
}

.premium-coupon-color-blue .premium-coupon-plan {
    color: #4299E1;
}

.premium-coupon-preview-img {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}

.premium-coupon-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.premium-coupon-right {
    width: 67%;
    flex: 1 1 300px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.premium-coupon-title {
    font-size: 16px;
    font-weight: 800;
    color: #1A202C;
    margin: 0 0 4px 0 !important;
    line-height: 1.3;
}

body.post-template-single-premium .premium-post-template .premium-content-inner .premium-coupon-desc {
    font-size: 14px !important;
    color: #4A5568 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.5 !important;
}

.premium-coupon-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.premium-coupon-color-orange .premium-coupon-verified {
    color: #C05621;
}

.premium-coupon-color-purple .premium-coupon-verified {
    color: #38A169;
}

.premium-coupon-color-blue .premium-coupon-verified {
    color: #38A169;
}

.premium-coupon-verified .verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: currentColor;
    color: #FFF;
    font-size: 9px;
    font-weight: 900;
}

.premium-coupon-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    color: #FFF !important;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.premium-coupon-color-orange .premium-coupon-btn {
    background: #FF5E2B;
    box-shadow: 0 4px 12px rgba(255, 94, 43, 0.25);
}

.premium-coupon-color-orange .premium-coupon-btn:hover {
    background: #E04E1F;
    box-shadow: 0 6px 16px rgba(255, 94, 43, 0.4);
}

.premium-coupon-color-purple .premium-coupon-btn {
    background: #805AD5;
    box-shadow: 0 4px 12px rgba(128, 90, 213, 0.25);
}

.premium-coupon-color-purple .premium-coupon-btn:hover {
    background: #6B46C1;
    box-shadow: 0 6px 16px rgba(128, 90, 213, 0.4);
}

.premium-coupon-color-blue .premium-coupon-btn {
    background: #134CD8;
    box-shadow: 0 4px 12px rgba(19, 76, 216, 0.25);
}

.premium-coupon-color-blue .premium-coupon-btn:hover {
    background: #002BB0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .premium-post-template .premium-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-content {
        padding-top: 0 !important;
    }

    .premium-post-template .premium-container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .premium-main-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .premium-post-template {
        font-size: 18px !important;
    }

    .premium-content-inner {
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .premium-content-inner p,
    .premium-content-inner h2,
    .premium-content-inner h3 {
        max-width: 100% !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
    }

    .premium-related-grid {
        grid-template-columns: 1fr !important;
    }

    .premium-pros-cons-grid {
        grid-template-columns: 1fr !important;
    }

    .premium-author-box {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px !important;
    }

    /* Responsive adjustment for coupon card */
    .premium-coupon-card {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .premium-coupon-left,
    .premium-coupon-right {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 auto !important;
        box-sizing: border-box !important;
    }

    .premium-coupon-left {
        height: 140px !important;
        padding: 0 !important;
    }
}