/* ============================================
   BLOGS PAGE STYLES - Lovette Jallow
   Cream + Tan/Brown Theme (Matching Home Page)
   ============================================ */

/* Font Faces */
@font-face {
    font-family: "Playfair Display";
    font-weight: 500;
    font-display: swap;
    src: var(--lj-font-65d0c3b53fd6) format("woff2"),
         var(--lj-font-aed59634dc34) format("woff");
}

@font-face {
    font-family: "Playfair Display";
    font-weight: 900;
    font-display: swap;
    src: var(--lj-font-a8e193d32df5) format("woff2"),
         var(--lj-font-1d0ad30173bd) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 400;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
         var(--lj-font-e99f2dc4c893) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 500;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
         var(--lj-font-e99f2dc4c893) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 600;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
         var(--lj-font-e99f2dc4c893) format("woff");
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --color-primary: #D2B48C;
    --color-primary-dark: #995A3B;
    --color-primary-light: #FCF1DD;
    --color-text: #17110A;
    --color-text-light: #17110A;
    --color-text-muted: #17110A;
    --color-bg: #FCF1DD;
    --color-bg-light: #FCF1DD;
    --color-bg-green: #BD9450;
    --color-border: rgba(210, 180, 140, 0.15);
    --color-border-light: rgba(0, 0, 0, 0.08);
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Inclusive Sans", sans-serif;
    --font-ui: "Playfair Display", serif;
    --container-max: 1280px;
    --container-narrow: 1100px;
    --spacing-section: 100px;
    --spacing-section-mobile: 60px;
    --transition-base: 0.3s ease;
}

/* ============================================
   HERO SECTION (Matching Home Page)
   ============================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background-image: var(--lj-img-f803f32e726f);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to left,
            rgba(23, 17, 10, 0.7) 0%,
            rgba(23, 17, 10, 0.55) 40%,
            rgba(23, 17, 10, 0) 70%
        );
    z-index: 0;
}

.hero-section > * {
    transform: scaleX(-1);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

.hero-content {
    max-width: 1100px;
    padding: 0 100px;
    margin-right: auto;
    transform: translateY(-40%);
    padding-top: 150px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 24px;
    margin-top: 80px;
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    white-space: normal;
}

.hero-title .perspective-text {
    font-style: italic;
    color: var(--color-primary);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(210, 180, 140, 0.2);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 180, 140, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   PODCAST CTA CARD
   ============================================ */
.podcast-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-primary);
    border-radius: 12px;
    padding: 24px 32px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
    max-width: 680px;
    gap: 24px;
}

.podcast-cta-content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.podcast-cta-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.podcast-cta-icon i {
    font-size: 24px;
    color: #ffffff;
}

.podcast-cta-text {
    flex: 1;
}

.podcast-cta-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.podcast-cta-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.podcast-cta-button {
    padding: 12px 24px;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.podcast-cta-button:hover {
    background: #ffffff;
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* ============================================
   MAIN CONTENT SECTION (3-Column Layout)
   ============================================ */
.main-content-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.main-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* LEFT & RIGHT COLUMNS: Small Blogs */
.small-blogs-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.small-blog-card {
    background: transparent;
}

.small-blog-link {
    display: block;
    text-decoration: none;
}

.small-blog-image {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.small-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.small-blog-content {
    padding: 0;
}

.small-blog-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    margin: 0 0 8px;
    transition: color var(--transition-base);
}

.small-blog-card:hover .small-blog-title {
    color: var(--color-primary);
}

.small-blog-excerpt {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 12px;
}

.small-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: #000000;
}

/* CENTER COLUMN: Main Blogs */
.main-blogs-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.main-blog-card {
    background: transparent;
}

.main-blog-link {
    display: block;
    text-decoration: none;
}

.main-blog-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.main-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.main-blog-content {
    text-align: center;
    padding: 0;
}

.main-blog-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin: 0 0 20px;
}

.main-blog-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   COMBINED SECTION: Podcasts + Top Posts + Recent Posts
   ============================================ */
.posts-combined-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.posts-combined-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.posts-combined-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* SIDEBAR COLUMN */
.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 24px;
}

/* Sidebar Podcasts */
.sidebar-podcasts {
    display: flex;
    flex-direction: column;
}

.sidebar-podcast-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(210, 180, 140, 0.15);
    border-radius: 8px;
    padding: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-podcast-card:hover {
    background: rgba(210, 180, 140, 0.25);
}

.sidebar-podcast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.sidebar-podcast-info {
    flex: 1;
}

.sidebar-podcast-label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    display: block;
    margin-bottom: 4px;
}

.sidebar-podcast-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

.sidebar-podcast-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Top Posts */
.sidebar-top-posts {
    display: flex;
    flex-direction: column;
}

.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-post-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.sidebar-post-info {
    flex: 1;
}

.sidebar-post-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar-post-date {
    font-family: var(--font-ui);
    font-size: 12px;
    color: #666666;
}

.sidebar-post-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RECENT POSTS MAIN */
.recent-posts-main {
    display: flex;
    flex-direction: column;
}

.recent-posts-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 32px;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.recent-post-card {
    background: transparent;
}

.recent-post-card a {
    text-decoration: none;
}

.recent-post-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

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

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

.recent-post-content {
    padding: 0;
}

.recent-post-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}

.recent-post-title a {
    color: inherit;
}

.recent-post-card:hover .recent-post-title {
    color: var(--color-primary);
}

.recent-post-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 12px;
}

.recent-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: #666666;
}

.recent-post-date,
.recent-post-author {
    color: #666666;
}

/* Responsive for combined section */
@media (max-width: 1024px) {
    .posts-combined-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .sidebar-column {
        flex-direction: row;
        gap: 32px;
    }
    
    .sidebar-podcasts,
    .sidebar-top-posts {
        flex: 1;
    }
    
    .recent-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar-column {
        flex-direction: column;
    }
    
    .recent-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive for 3-column layout */
@media (max-width: 1024px) {
    .main-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .small-blogs-column:last-child {
        grid-column: 1 / -1;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .main-content-grid {
        grid-template-columns: 1fr;
    }
    
    .main-blogs-column {
        order: -1;
    }
}

/* ============================================
   FEATURED POSTS SECTION (legacy - keeping for compatibility)
   ============================================ */
.featured-posts-section {
    padding: var(--spacing-section) 0;
    background: var(--color-bg);
    display: none; /* Hidden - using new 3-column layout instead */
}

.featured-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-post-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

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

.featured-post-content {
    padding: 28px 32px 32px;
}

.featured-post-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 16px;
    transition: color var(--transition-base);
}

.featured-post-card:hover .featured-post-title {
    color: var(--color-primary);
}

.featured-post-excerpt {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--color-text-muted);
}

.featured-post-date,
.featured-post-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-post-meta span::before {
    content: '•';
    margin-right: 16px;
    color: var(--color-primary);
}

.featured-post-meta span:first-child::before {
    display: none;
}

/* ============================================
   HIGHLIGHT ARTICLE SECTION
   ============================================ */
.highlight-article-section {
    padding: 80px 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.highlight-article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.highlight-article-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.highlight-article-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.highlight-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.highlight-article-content {
    color: #fff;
}

.highlight-article-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #000000;
}

.highlight-article-excerpt {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 32px;
    opacity: 0.9;
}

.highlight-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-ui);
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.highlight-article-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    color: var(--color-primary);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-base);
}

.highlight-article-btn:hover {
    background: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.highlight-article-btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.highlight-article-btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   CATEGORY POSTS SECTION
   ============================================ */
.category-posts-section {
    padding: var(--spacing-section) 0;
    background: var(--color-bg);
}

.category-posts-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0;
}

.section-title em {
    font-style: italic;
    color: var(--color-primary);
}

/* Category Grid Layout */
.category-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.category-main-posts {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Standard Blog Card */
.blog-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    background: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(210, 180, 140, 0.1);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-content {
    padding: 24px 24px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-category {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text);
    margin: 0 0 12px;
    transition: color var(--transition-base);
}

.blog-card:hover .blog-card-title {
    color: var(--color-primary);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--color-text-muted);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
}

.blog-card-meta .separator {
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Sidebar Most Popular */
.category-sidebar {
    background: var(--color-bg-light);
    border-radius: 16px;
    padding: 32px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-primary);
}

.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-post {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border-light);
    text-decoration: none;
    transition: all var(--transition-base);
}

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

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

.sidebar-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content {
    flex: 1;
    min-width: 0;
}

.sidebar-post-title {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-base);
}

.sidebar-post-date {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ============================================
   PODCASTS SECTION
   ============================================ */
.podcasts-section {
    padding: 80px 0;
    background: var(--color-bg-green);
}

.podcasts-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.podcast-header {
    text-align: center;
    margin-bottom: 48px;
}

.podcast-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: var(--color-text);
    margin: 0 0 16px;
}

.podcast-title em {
    font-style: italic;
    color: var(--color-primary);
}

.podcast-card {
    background: #FCF8F3;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(210, 180, 140, 0.08);
    text-decoration: none;
    transition: all var(--transition-base);
}

.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(210, 180, 140, 0.12);
}

.podcast-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.podcast-content {
    flex: 1;
}

.podcast-label {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.podcast-episode-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    transition: color var(--transition-base);
}

.podcast-card:hover .podcast-episode-title {
    color: var(--color-primary);
}

/* ============================================
   TOP POSTS SECTION
   ============================================ */
.top-posts-section {
    padding: var(--spacing-section) 0;
    background: var(--color-bg);
}

.top-posts-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.top-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.top-post-card {
    background: var(--color-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.top-post-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 16px 48px rgba(210, 180, 140, 0.1);
    transform: translateY(-4px);
}

.top-post-image {
    height: 240px;
    overflow: hidden;
}

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

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

.top-post-content {
    padding: 24px;
}

.top-post-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0 0 12px;
    transition: color var(--transition-base);
}

.top-post-card:hover .top-post-title {
    color: var(--color-primary);
}

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

.top-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ============================================
   RECENT POSTS SECTION
   ============================================ */
.recent-posts-section {
    padding: var(--spacing-section) 0;
    background: var(--color-bg-light);
}

.recent-posts-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.recent-posts-header {
    text-align: center;
    margin-bottom: 60px;
}

.recent-posts-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: var(--color-text);
    margin: 0;
}

.recent-posts-title em {
    font-style: italic;
    color: var(--color-primary);
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.recent-post-card {
    background: #FCF8F3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.recent-post-card:hover {
    box-shadow: 0 16px 48px rgba(210, 180, 140, 0.12);
    transform: translateY(-6px);
}

.recent-post-image {
    height: 220px;
    overflow: hidden;
}

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

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

.recent-post-content {
    padding: 28px;
}

.recent-post-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text);
    margin: 0 0 12px;
    transition: color var(--transition-base);
}

.recent-post-card:hover .recent-post-title {
    color: var(--color-primary);
}

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

.recent-post-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--color-text-muted);
}

.recent-post-date {
    color: var(--color-text-muted);
}

.recent-post-author {
    color: var(--color-primary);
    font-weight: 500;
}

/* ============================================
   MAKEUP SECTION (2-Column Layout)
   ============================================ */
.makeup-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.makeup-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.makeup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT: Featured Article */
.makeup-featured {
    display: flex;
    flex-direction: column;
}

.makeup-featured-link {
    display: block;
    text-decoration: none;
}

.makeup-featured-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 32px;
    border-radius: 12px;
    overflow: hidden;
}

.makeup-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.makeup-featured:hover .makeup-featured-image img {
    transform: scale(1.03);
}

.makeup-featured-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.makeup-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin: 0 0 20px;
}

.makeup-featured-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

/* RIGHT: Makeup Posts List */
.makeup-posts-column {
    display: flex;
    flex-direction: column;
}

.makeup-column-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 32px;
}

.makeup-posts-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.makeup-post-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
}

.makeup-post-item:hover .makeup-post-title {
    color: var(--color-primary);
}

.makeup-post-info {
    flex: 1;
}

.makeup-post-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

.makeup-post-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 10px;
}

.makeup-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: #666666;
}

.makeup-post-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.makeup-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive for makeup section */
@media (max-width: 768px) {
    .makeup-grid {
        grid-template-columns: 1fr;
    }
    
    .makeup-featured {
        order: -1;
    }
}

/* ============================================
   DEI SECTION (2-Column Layout)
   ============================================ */
.dei-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.dei-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.dei-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT: Featured Article */
.dei-featured {
    display: flex;
    flex-direction: column;
}

.dei-featured-link {
    display: block;
    text-decoration: none;
}

.dei-featured-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 32px;
    border-radius: 12px;
    overflow: hidden;
}

.dei-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.dei-featured:hover .dei-featured-image img {
    transform: scale(1.03);
}

.dei-featured-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.dei-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin: 0 0 20px;
}

.dei-featured-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

/* RIGHT: DEI Posts List */
.dei-posts-column {
    display: flex;
    flex-direction: column;
}

.dei-column-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 32px;
}

.dei-posts-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dei-post-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dei-post-item:hover .dei-post-title {
    color: var(--color-primary);
}

.dei-post-info {
    flex: 1;
}

.dei-post-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

.dei-post-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 10px;
}

.dei-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: #666666;
}

.dei-post-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.dei-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive for DEI section */
@media (max-width: 768px) {
    .dei-grid {
        grid-template-columns: 1fr;
    }
    
    .dei-featured {
        order: -1;
    }
}

/* ============================================
   READ MORE LINK
   ============================================ */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.read-more-link:hover {
    color: var(--color-primary-dark);
}

.read-more-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-base);
}

.read-more-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #FCF8F3;
    border: 1px solid var(--color-border-light);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition-base);
}

.pagination-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.pagination-btn.prev,
.pagination-btn.next {
    width: auto;
    padding: 0 20px;
    gap: 8px;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .category-posts-grid,
    .dei-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .category-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .top-posts-grid,
    .recent-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-posts-grid,
    .dei-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlight-article-image {
        order: 1;
    }
    
    .highlight-article-content {
        order: 2;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        padding: 0 40px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }
    
    /* Mobile hero - match home page pattern */
    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
        background-image: none !important;
        background-color: #000 !important;
        display: flex;
        align-items: flex-end;
        transform: none !important;
    }

    .hero-section::before,
    .hero-section::after {
        display: none !important;
    }

    .hero-section > * {
        transform: none !important;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 24px 144px;
        justify-content: flex-end;
        text-align: center;
        max-width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        z-index: 2;
    }

    .hero-content {
        padding: 0;
        transform: none !important;
        max-width: 100%;
        z-index: 2;
        text-align: center;
        margin-right: 0;
        margin-left: 0;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;
        line-height: 1.15;
        color: #fff;
    }

    .hero-eyebrow {
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 14px;
        letter-spacing: 0.12em;
        color: #D2B48C;
    }

    .hero-subtitle {
        color: rgba(255, 255, 255, 0.85);
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        text-align: center;
        padding: 11px 13px;
        font-size: 14px;
    }

    .hero-buttons .btn-secondary {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
        background: transparent;
    }

    .scroll-indicator {
        bottom: 80px;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Touch targets */
    .btn-primary,
    .btn-secondary,
    .highlight-article-btn,
    .podcast-cta-button {
        min-height: 48px;
    }

    .featured-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .top-posts-grid,
    .recent-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .category-posts-grid,
    .dei-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .podcast-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .podcast-label {
        justify-content: center;
    }
    
    .category-sidebar {
        padding: 24px;
    }
    
    .sidebar-post {
        flex-direction: column;
        gap: 12px;
    }
    
    .sidebar-post-image {
        width: 100%;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px calc(120px + env(safe-area-inset-bottom));
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 16px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 11px;
        font-size: 13px;
    }

    .featured-posts-container,
    .category-posts-container,
    .podcasts-container,
    .top-posts-container,
    .recent-posts-container,
    .category-highlight-container,
    .dei-container,
    .highlight-article-container,
    .main-content-container,
    .posts-combined-container,
    .makeup-container {
        padding: 0 16px;
    }
    
    .category-posts-grid,
    .dei-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .category-highlight-header,
    .dei-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .featured-post-content {
        padding: 16px;
    }

    .featured-post-title {
        font-size: 18px;
    }

    .podcast-card {
        padding: 24px 16px;
    }

    .category-sidebar {
        padding: 16px;
    }

    .highlight-article-container {
        gap: 24px;
    }

    .highlight-article-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .highlight-article-excerpt {
        font-size: 15px;
    }

    /* Podcast CTA stack on small mobile */
    .podcast-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .podcast-cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .podcast-cta-button {
        width: 100%;
        text-align: center;
    }

    /* Blog card content padding */
    .blog-card-content {
        padding: 16px;
    }

    .top-post-content {
        padding: 16px;
    }

    .recent-post-content {
        padding: 16px;
    }
}

/* ============================================
   FOOTER STYLES (Matching Home Page)
   ============================================ */
.site-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-brand h6 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-brand h6 a {
    color: #fff;
    text-decoration: none;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact span {
    font-family: var(--font-body);
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ============================================
   MOBILE NAVIGATION OVERLAY
   ============================================ */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    padding: 80px 32px 32px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

@media (max-width: 991px) {
    .mobile-nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 24px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 20px;
    }
}


