/* ==========================================
   BLOG STYLES - WOCOO Design System
   Matches dark theme with orange/pink accents
   ========================================== */

/* ==========================================
   PAGE LAYOUT
   ========================================== */

.blog-single-page {
    background: #0E0E0F;
    min-height: 100vh;
    padding-top: 80px; /* Account for fixed header */
}

/* ==========================================
   HERO SECTION - Full Width Background Image
   ========================================== */

.blog-hero-section {
    position: relative;
    padding: 80px 0 100px;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Background Image */
.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blog-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Gradient Overlay for Readability */
.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 14, 15, 0.3) 0%,
        rgba(14, 14, 15, 0.6) 40%,
        rgba(14, 14, 15, 0.95) 100%
    );
    z-index: 2;
}

/* Hero Content */
.blog-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Breadcrumb */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 24px;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-breadcrumb a:hover {
    color: #F39200;
}

.blog-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.blog-breadcrumb .current {
    color: #FFFFFF;
}

/* Category Badge */
.blog-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F39200 0%, #E6177D 100%);
    color: #FFFFFF;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* Title */
.blog-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0 0 24px 0;
    max-width: 900px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Meta */
.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.blog-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.blog-hero-meta .meta-item svg {
    opacity: 0.7;
}

/* No featured image fallback */
.blog-hero-section.no-image {
    background: linear-gradient(180deg, #1A1B1C 0%, #0E0E0F 100%);
    min-height: auto;
    padding: 60px 0 80px;
}

.blog-hero-section.no-image .blog-hero-overlay {
    display: none;
}

/* ==========================================
   FEATURED IMAGE (Remove old section - now in hero)
   ========================================== */

.blog-featured-section {
    display: none; /* Image now in hero background */
}

/* ==========================================
   ARTICLE CONTENT
   ========================================== */

.blog-content-section {
    padding: 48px 0 64px;
}

.blog-article {
    color: #E0E0E0;
    font-size: 18px;
    line-height: 1.8;
}

/* Headings - Pink for H2, Orange for H3/H4 */
.blog-article h2 {
    font-size: 32px;
    font-weight: 700;
    color: #E6177D;
    margin: 56px 0 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(230, 23, 125, 0.2);
}

.blog-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.blog-article h3 {
    font-size: 24px;
    font-weight: 600;
    color: #F39200;
    margin: 40px 0 16px;
}

.blog-article h4 {
    font-size: 18px;
    font-weight: 600;
    color: #F39200;
    margin: 32px 0 12px;
}

/* Paragraphs */
.blog-article p {
    margin: 0 0 24px;
}

/* Links */
.blog-article a {
    color: #F39200;
    text-decoration: none;
    border-bottom: 1px solid rgba(243, 146, 0, 0.3);
    transition: all 0.2s;
}

.blog-article a:hover {
    color: #E6177D;
    border-bottom-color: #E6177D;
}

/* Strong/Bold */
.blog-article strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* Lists */
.blog-article ul,
.blog-article ol {
    margin: 24px 0;
    padding-left: 24px;
}

.blog-article li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.blog-article ul li::marker {
    color: #F39200;
}

.blog-article ol li::marker {
    color: #F39200;
    font-weight: 600;
}

/* Horizontal Rule */
.blog-article hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 146, 0, 0.3), transparent);
    margin: 48px 0;
}

/* Blockquote */
.blog-article blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.05) 0%, rgba(230, 23, 125, 0.05) 100%);
    border-left: 4px solid #F39200;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #A7A9A9;
}

.blog-article blockquote p:last-child {
    margin-bottom: 0;
}

/* Tables - Beautiful Dark Theme */
.blog-article table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0;
    font-size: 15px;
    background: #0E0E0F;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #000000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.blog-article th {
    background: linear-gradient(135deg, #E6177D 0%, #C41E3A 100%);
    color: #FFFFFF;
    font-weight: 700;
    text-align: left;
    padding: 18px 24px;
    border-bottom: 2px solid #000000;
    border-right: 2px solid #000000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-article th:last-child {
    border-right: none;
}

.blog-article td {
    padding: 16px 24px;
    border-bottom: 2px solid #000000;
    border-right: 2px solid #000000;
    color: #E0E0E0;
    vertical-align: middle;
    background: #0E0E0F;
}

.blog-article td:last-child {
    border-right: none;
}

.blog-article tr:last-child td {
    border-bottom: none;
}

.blog-article tbody tr {
    transition: all 0.2s ease;
}

.blog-article tbody tr:nth-child(even) td {
    background: #141415;
}

.blog-article tbody tr:hover td {
    background: rgba(243, 146, 0, 0.08);
}

/* WOCOO highlighted row in tables */
.blog-article tr.wocoo-row td {
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.15) 0%, rgba(230, 23, 125, 0.1) 100%) !important;
    color: #FFFFFF;
    font-weight: 600;
}

.blog-article tr.wocoo-row td:first-child {
    color: #F39200;
}

/* Pricing comparison table specific styles */
.blog-article table strong {
    color: #F39200;
}

/* Table links */
.blog-article table a {
    color: #F39200;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.blog-article table a:hover {
    color: #E6177D;
    border-bottom-color: #E6177D;
}

/* Responsive table */
@media (max-width: 768px) {
    .blog-article table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-article th,
    .blog-article td {
        padding: 12px 16px;
        white-space: nowrap;
    }
}

/* CTA Button in content */
.blog-article .wp-block-button__link,
.blog-article .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #F39200 0%, #E6177D 100%);
    padding: 18px 36px;
    border-radius: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    border: none;
    color: #FFFFFF !important;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(243, 146, 0, 0.4);
    transition: all 0.3s ease;
    margin: 32px 0;
}

.blog-article .wp-block-button__link:hover,
.blog-article .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(243, 146, 0, 0.5);
}

/* Stager/Hook box at top */
.blog-article .stager-box {
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.1) 0%, rgba(230, 23, 125, 0.1) 100%);
    border: 1px solid rgba(243, 146, 0, 0.3);
    border-left: 4px solid #F39200;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 0 0 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
}

.blog-article .stager-box strong {
    color: #F39200;
}

.blog-article .stager-box em {
    color: #E6177D;
    font-style: normal;
    font-weight: 600;
}

/* Sager/Pull Quote Box - Red from logo */
.blog-article .sager-box {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08) 0%, rgba(230, 23, 125, 0.08) 100%);
    border: 2px solid rgba(196, 30, 58, 0.4);
    border-radius: 20px;
    padding: 48px 56px;
    margin: 56px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(196, 30, 58, 0.1);
}

.blog-article .sager-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 100px;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, #C41E3A 0%, #E6177D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    line-height: 1;
}

.blog-article .sager-quote {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.blog-article .sager-attribution {
    display: block;
    font-size: 15px;
    background: linear-gradient(135deg, #C41E3A 0%, #E6177D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .blog-article .sager-box {
        padding: 36px 28px;
    }
    
    .blog-article .sager-box::before {
        font-size: 70px;
        left: 20px;
        top: -15px;
    }
    
    .blog-article .sager-quote {
        font-size: 18px;
    }
}

/* Manual Sager quote styling (for Gutenberg blocks with amber color) */
.blog-article p:has(.has-luminous-vivid-amber-color) {
    font-size: 22px !important;
    line-height: 1.6;
    text-align: center;
    padding: 40px;
    margin: 48px 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08) 0%, rgba(230, 23, 125, 0.08) 100%);
    border: 2px solid rgba(243, 146, 0, 0.4);
    border-radius: 16px;
}

.blog-article .has-luminous-vivid-amber-color {
    font-size: 22px !important;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-article p:has(.has-luminous-vivid-amber-color) {
        font-size: 18px !important;
        padding: 24px;
    }
    
    .blog-article .has-luminous-vivid-amber-color {
        font-size: 18px !important;
    }
}

/* FAQ Accordion - Matching Landing Page Style */
.blog-article .blog-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}

.blog-article .faq-item {
    background-color: #242526;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #F39200; /* Default orange */
}

/* Alternating colors for FAQ items */
.blog-article .faq-item:nth-child(1) { border-top-color: #F39200; }
.blog-article .faq-item:nth-child(2) { border-top-color: #1DA538; }
.blog-article .faq-item:nth-child(3) { border-top-color: #0FAADF; }
.blog-article .faq-item:nth-child(4) { border-top-color: #A943E7; }
.blog-article .faq-item:nth-child(5) { border-top-color: #E6177D; }
.blog-article .faq-item:nth-child(6) { border-top-color: #F39200; }
.blog-article .faq-item:nth-child(7) { border-top-color: #1DA538; }

.blog-article .faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    user-select: none;
    transition: background 0.2s ease;
    font-family: inherit;
    color: #FFFFFF;
}

.blog-article .faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.blog-article .faq-question span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
}

.blog-article .faq-icon,
.blog-article .faq-toggle {
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

/* Match icon color to border */
.blog-article .faq-item:nth-child(1) .faq-icon,
.blog-article .faq-item:nth-child(1) .faq-toggle { color: #F39200; }
.blog-article .faq-item:nth-child(2) .faq-icon,
.blog-article .faq-item:nth-child(2) .faq-toggle { color: #1DA538; }
.blog-article .faq-item:nth-child(3) .faq-icon,
.blog-article .faq-item:nth-child(3) .faq-toggle { color: #0FAADF; }
.blog-article .faq-item:nth-child(4) .faq-icon,
.blog-article .faq-item:nth-child(4) .faq-toggle { color: #A943E7; }
.blog-article .faq-item:nth-child(5) .faq-icon,
.blog-article .faq-item:nth-child(5) .faq-toggle { color: #E6177D; }
.blog-article .faq-item:nth-child(6) .faq-icon,
.blog-article .faq-item:nth-child(6) .faq-toggle { color: #F39200; }
.blog-article .faq-item:nth-child(7) .faq-icon,
.blog-article .faq-item:nth-child(7) .faq-toggle { color: #1DA538; }

.blog-article .faq-item.active .faq-icon,
.blog-article .faq-item.active .faq-toggle,
.blog-article .faq-item.open .faq-icon,
.blog-article .faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.blog-article .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.blog-article .faq-item.active .faq-answer,
.blog-article .faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px 32px;
}

.blog-article .faq-answer p {
    font-size: 16px;
    color: #A7A9A9;
    line-height: 1.6;
    margin: 0;
}

.blog-article .faq-answer a {
    color: #F39200;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.blog-article .faq-answer a:hover {
    border-bottom-color: #F39200;
}

@media (max-width: 768px) {
    .blog-article .faq-question {
        padding: 20px;
    }
    
    .blog-article .faq-question span:first-child {
        font-size: 16px;
    }
    
    .blog-article .faq-item.active .faq-answer,
    .blog-article .faq-item.open .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* Code */
.blog-article code {
    background: rgba(243, 146, 0, 0.1);
    color: #F39200;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Monaco', 'Consolas', monospace;
}

.blog-article pre {
    background: #1A1B1C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    overflow-x: auto;
    margin: 24px 0;
}

.blog-article pre code {
    background: none;
    padding: 0;
    color: #E0E0E0;
}

/* Images in content */
.blog-article img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

/* WordPress figure/figcaption */
.blog-article figure {
    margin: 32px 0;
}

.blog-article figcaption {
    text-align: center;
    color: #A7A9A9;
    font-size: 14px;
    margin-top: 12px;
}

/* ==========================================
   TAGS SECTION
   ========================================== */

.blog-tags-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 32px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-label {
    color: #A7A9A9;
    font-size: 14px;
    font-weight: 500;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    background: #242526;
    color: #A7A9A9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.tag-item:hover {
    background: linear-gradient(135deg, #F39200 0%, #E6177D 100%);
    color: #FFFFFF;
    border-color: transparent;
}

/* ==========================================
   SHARE SECTION
   ========================================== */

.blog-share-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.share-label {
    color: #A7A9A9;
    font-size: 14px;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #242526;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #A7A9A9;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.share-btn:hover {
    background: linear-gradient(135deg, #F39200 0%, #E6177D 100%);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.blog-cta-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #0E0E0F 0%, #1A1B1C 100%);
}

.blog-cta-card {
    background: linear-gradient(135deg, #242526 0%, #1A1B1C 100%);
    border: 1px solid rgba(243, 146, 0, 0.2);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 0 48px rgba(243, 146, 0, 0.1);
}

.blog-cta-card .cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px;
}

.blog-cta-card .cta-content p {
    color: #A7A9A9;
    font-size: 16px;
    margin: 0;
    max-width: 500px;
}

/* ==========================================
   RELATED POSTS
   ========================================== */

.blog-related-section {
    padding: 64px 0 80px;
    background: #0E0E0F;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.related-card {
    background: linear-gradient(135deg, #242526 0%, #1A1B1C 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243, 146, 0, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.related-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-content {
    padding: 24px;
}

.related-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 12px;
    line-height: 1.4;
    transition: color 0.2s;
}

.related-card:hover .related-content h3 {
    color: #F39200;
}

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

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .blog-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    
    .blog-cta-card .cta-content p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .blog-single-page {
        padding-top: 70px;
    }
    
    .blog-hero-section {
        min-height: 350px;
        padding: 60px 0 80px;
    }
    
    .blog-hero-section.no-image {
        padding: 40px 0 60px;
    }
    
    .blog-hero-title {
        font-size: 28px;
    }
    
    .blog-hero-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .blog-article {
        font-size: 16px;
    }
    
    .blog-article h2 {
        font-size: 24px;
        margin: 40px 0 16px;
        padding-top: 24px;
    }
    
    .blog-article h3 {
        font-size: 20px;
    }
    
    .blog-article table {
        font-size: 13px;
    }
    
    .blog-article th,
    .blog-article td {
        padding: 10px 12px;
    }
    
    .blog-tags-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-share-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-cta-card {
        padding: 32px 24px;
    }
    
    .blog-cta-card .cta-content h2 {
        font-size: 22px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   WORDPRESS BLOCK OVERRIDES
   ========================================== */

.blog-article .wp-block-table {
    margin: 32px 0;
}

.blog-article .wp-block-table table {
    margin: 0;
}

.blog-article .wp-block-button__link {
    background: linear-gradient(135deg, #F39200 0%, #E6177D 100%);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    border: none;
    color: #FFFFFF !important;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 24px rgba(243, 146, 0, 0.4);
    transition: all 0.3s;
}

.blog-article .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(243, 146, 0, 0.6);
}

/* Fix for emoji/special chars in content */
.blog-article p:has(> strong:first-child) {
    margin-top: 32px;
}

/* ==========================================
   BLOG ARCHIVE PAGE
   ========================================== */

.blog-archive-page {
    background: #0E0E0F;
    min-height: 100vh;
    padding-top: 80px;
}

/* ==========================================
   ARCHIVE HERO
   ========================================== */

.blog-archive-hero {
    padding: 60px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, #1A1B1C 0%, #0E0E0F 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.15) 0%, rgba(230, 23, 125, 0.15) 100%);
    border: 1px solid rgba(243, 146, 0, 0.3);
    color: #F39200;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.blog-archive-hero .hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px;
    line-height: 1.1;
}

.blog-archive-hero .hero-subtitle {
    font-size: 18px;
    color: #A7A9A9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================
   FEATURED POST (Large Card)
   ========================================== */

.blog-featured-post {
    padding: 48px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, #1A1B1C 0%, #242526 100%);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243, 146, 0, 0.3);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 48px rgba(243, 146, 0, 0.1);
}

.featured-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
}

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

.featured-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #242526 0%, #1A1B1C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3A3B3C;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(14, 14, 15, 0.3) 0%, transparent 100%);
}

.featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-category {
    display: inline-block;
    background: linear-gradient(135deg, #F39200 0%, #E6177D 100%);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.featured-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px;
    line-height: 1.25;
    transition: color 0.3s;
}

.featured-card:hover .featured-title {
    color: #F39200;
}

.featured-excerpt {
    font-size: 16px;
    color: #A7A9A9;
    line-height: 1.7;
    margin: 0 0 24px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6B6D6D;
}

.featured-meta svg {
    opacity: 0.6;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F39200;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.featured-card:hover .featured-cta {
    gap: 12px;
}

/* ==========================================
   RECENT POSTS GRID
   ========================================== */

.blog-recent-posts {
    padding: 48px 0 80px;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

/* Grid Layout - Responsive */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Auto-resize for 2 posts */
.posts-grid.posts-count-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

/* Auto-resize for 1 post */
.posts-grid.posts-count-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
}

/* Post Card */
.post-card {
    background: linear-gradient(135deg, #1A1B1C 0%, #242526 100%);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 146, 0, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 32px rgba(243, 146, 0, 0.08);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #242526;
}

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

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

.post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #242526 0%, #1A1B1C 100%);
    color: #3A3B3C;
}

.post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.post-category {
    background: rgba(243, 146, 0, 0.15);
    color: #F39200;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    font-size: 12px;
    color: #6B6D6D;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 12px;
    line-height: 1.4;
    transition: color 0.3s;
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card:hover .post-title {
    color: #F39200;
}

.post-excerpt {
    font-size: 14px;
    color: #A7A9A9;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.post-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6B6D6D;
}

.post-read-more {
    font-size: 13px;
    font-weight: 600;
    color: #F39200;
    transition: letter-spacing 0.3s;
}

.post-card:hover .post-read-more {
    letter-spacing: 1px;
}

/* ==========================================
   PAGINATION
   ========================================== */

.blog-pagination {
    margin-top: 48px;
    text-align: center;
}

.pagination-info {
    font-size: 14px;
    color: #6B6D6D;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */

.blog-newsletter-section {
    padding: 0 0 80px;
}

.newsletter-card {
    background: linear-gradient(135deg, #242526 0%, #1A1B1C 100%);
    border: 1px solid rgba(243, 146, 0, 0.2);
    border-radius: 20px;
    padding: 64px;
    text-align: center;
    box-shadow: 0 0 64px rgba(243, 146, 0, 0.08);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.15) 0%, rgba(230, 23, 125, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #F39200;
}

.newsletter-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.newsletter-card p {
    font-size: 16px;
    color: #A7A9A9;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ==========================================
   ARCHIVE RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 280px;
    }
    
    .featured-placeholder {
        min-height: 280px;
    }
    
    .featured-content {
        padding: 32px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posts-grid.posts-count-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-archive-page {
        padding-top: 70px;
    }
    
    .blog-archive-hero {
        padding: 40px 0 32px;
    }
    
    .blog-archive-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .blog-featured-post {
        padding: 32px 0;
    }
    
    .featured-image {
        min-height: 220px;
    }
    
    .featured-placeholder {
        min-height: 220px;
    }
    
    .featured-content {
        padding: 24px;
    }
    
    .featured-title {
        font-size: 22px;
    }
    
    .featured-excerpt {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid.posts-count-2 {
        max-width: none;
    }
    
    .post-image {
        height: 180px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .newsletter-card {
        padding: 40px 24px;
    }
    
    .newsletter-card h2 {
        font-size: 24px;
    }
}