/*
Theme Name: victorhanson
Theme URI: https://dreamcowebsites.com/
Author: dreamcowebsites
Author URI: https://dreamcowebsites.com/
Description: Victor Hanson
Requires at least: 5.3
Tested up to: 6.4.2
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: victorhanson

/* ===================================
   THE BLADE OF PERSEUS - MAIN STYLES
   Victor Davis Hanson Official Website
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Navy Blue Palette */
    --navy-deep: #0A1628;
    --navy-primary: #0F172A;
    --navy-medium: #1E293B;

    /* Crimson Red Palette */
    --crimson-primary: #BE123C;
    --crimson-dark: #9F1239;
    --crimson-light: #E11D48;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-700: #334155;

    /* Typography */
    --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --container: 1200px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 20px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-ui);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font-family: var(--font-ui);
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: var(--font-ui);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER SYSTEM ===== */

/* Top Utility Bar */
.top-bar {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
    border-bottom: 3px solid var(--crimson-primary);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: var(--crimson-primary);
    border-color: var(--crimson-primary);
    transform: translateY(-2px);
}

/* Auth Section */
.auth-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    position: relative;
}

.search-input {
    padding: 6px 10px 6px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-size: 12px;
    width: 160px;
    transition: all var(--transition-base);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    outline: none;
    background: var(--white);
    color: var(--navy-primary);
    border-color: var(--white);
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    font-size: 13px;
}

.auth-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
}

.auth-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-premium {
    background: var(--crimson-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(190, 18, 60, 0.3);
    transition: all var(--transition-base);
}

.btn-premium:hover {
    background: var(--crimson-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(190, 18, 60, 0.4);
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-primary);
    letter-spacing: -0.02em;
}

.brand:hover {
    color: var(--navy-deep);
}

header .brand img {
    height: 60px !important;
}

/* Navigation */
.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-item {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy-medium);
    position: relative;
    padding: 6px 0;
    transition: all var(--transition-base);
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson-primary), var(--crimson-light));
    transition: transform var(--transition-smooth);
}


.nav-item:hover,
.nav-item.active {
    color: var(--crimson-primary);
}

.nav-item:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy-primary);
    transition: all var(--transition-base);
}

/* ===== PROMO BANNER ===== */
.promo-section {
    background: var(--gray-50);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.ad-leaderboard {
    max-width: 970px;
    height: 90px;
    margin: 0 auto;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 11px;
    text-transform: uppercase;
}

/* ===== LAYOUT SYSTEMS ===== */

/* Two Column Layout (Main + Sidebar) */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0 60px;
}

/* Full Width Content Layout */
.page-layout-full {
    padding: 40px 0 60px;
}

/* Content with Sidebar */
.page-layout-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0 60px;
}

/* ===== TYPOGRAPHY ===== */
.page-title {
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1.2;
    color: var(--navy-deep);
    margin-bottom: 24px;
    font-weight: 700;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.3;
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-weight: 600;
}

.subsection-heading {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--navy-medium);
    margin-bottom: 16px;
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 4px !important;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary, .ihc-login-template-11 .impu-form-submit input {
    background: var(--crimson-primary) !important;
    color: var(--white) !important;
    border: 2px solid var(--crimson-primary) !important;
}


.btn-primary:hover, .ihc-login-template-11 .impu-form-submit input:hover {
    background: var(--crimson-dark) !important;
    border-color: var(--crimson-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}
.ihc-login-form-wrap input.button.button-primary.button-large {
    background: #0F172A !important;
    border-radius: 4px !important;
    border: none !important;
    color: #fff !important;
}
.btn-secondary {
    background: var(--white);
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
}

.btn-secondary:hover {
    background: var(--navy-primary);
    color: var(--white);
}

/* Standard Button Sizes */
.btn-sm {
    padding: 8px 16px !important;
    font-size: 12px !important;
}

.btn-md {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Base Button Hover Effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--crimson-primary);
    border: 1px solid var(--crimson-primary) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* Ensure no underline */
}

.btn-outline:hover {
    border-color: var(--crimson-dark);
    background: var(--crimson-primary);
    color: var(--white);
    text-decoration: none;
}

/* Text Link with Arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 11px;
    color: var(--crimson-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.link-arrow:hover {
    color: var(--crimson-dark);
}

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

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

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-base);
}

.post-card:hover {
    transform: translateY(-4px);
}

.card-image-wrap {
    aspect-ratio: 3/2;
    border-radius: 6px;
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: 12px;
    position: relative;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.premium-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--crimson-primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 3px;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-heading {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.3;
    color: var(--navy-deep);
    margin-bottom: 8px;
    font-weight: 600;
    transition: color var(--transition-base);
}

.post-card:hover .card-heading {
    color: var(--crimson-primary);
}

.card-snippet {
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.read-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--crimson-primary);
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--gray-200);
    transition: color var(--transition-base);
}

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

/* ===== SIDEBAR WIDGETS ===== */
.widget-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.widget-header {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--crimson-primary);
}

.widget-items {
    list-style: none;
}

.widget-items li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 13px;
}

.widget-items li:first-child {
    padding-top: 0;
}

.widget-items li:last-child {
    border: none;
    padding-bottom: 0;
}

.item-title {
    font-weight: 700;
    color: var(--navy-primary);
    font-size: 13px;
    line-height: 1.3;
    display: block;
    margin-bottom: 4px;
    transition: color var(--transition-base);
}

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

.item-subtitle {
    font-size: 10px;
    color: var(--gray-500);
    display: block;
}

/* Ultra Membership Box */
.ultra-block {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
    color: var(--white);
    padding: 24px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 24px;
}

.ultra-badge {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.btn-join {
    background: var(--crimson-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 12px;
    transition: all var(--transition-base);
}

.btn-join:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-medium);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    background: var(--white);
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-deep);
    color: var(--gray-400);
    padding: 60px 0 30px;
    font-size: 13px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-area {
    color: var(--white);
}

.footer-brand-area img {
    height: 72px !important;
}

.footer-heading {
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 11px;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

/* Section Divider - Title Left, CTA Right */
.section-divider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-label {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.2;
    color: var(--navy-deep);
    margin: 0;
    font-weight: 600;
}

.section-cta {
    font-size: 12px;
    font-weight: 700;
    color: var(--crimson-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-base);
}

.section-cta:hover {
    color: var(--crimson-dark);
}

.section-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--crimson-primary);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.section-link:hover {
    color: var(--crimson-dark);
    transform: translateX(4px);
}

/* ===== PAGE: ABOUT ===== */
.hero-bio {
    background: linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
    padding: 60px 0;
    color: white;
    margin-bottom: 60px;
}

.bio-split {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 60px;
    align-items: top;
}

.bio-portrait {
    width: 100%;
    max-width: 400px;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.5);
}

.bio-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bio-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.95;
}

.credentials-list {
    background: #F8FAFC;
    border-left: 4px solid #BE123C;
    padding: 40px;
    border-radius: 0 8px 8px 0;
    margin: 60px 0;
}

.credentials-list h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0F172A;
    margin-bottom: 24px;
}

.credential-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.credential-item {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
}

.credential-item strong {
    display: block;
    color: #BE123C;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.timeline {
    margin: 60px 0;
}

.timeline h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0F172A;
    margin-bottom: 40px;
    text-align: center;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E2E8F0;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #BE123C;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.photo-gallery {
    margin: 60px 0;
}

.photo-gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0F172A;
    margin-bottom: 32px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .bio-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bio-portrait {
        margin: 0 auto;
    }

    .credential-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== PAGE: BLOG ARCHIVE ===== */
.filter-bar {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid #E2E8F0;
    margin-top: 20px;
}

.filter-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 8px;
    display: block;
}

.archive-stats {
    text-align: center;
    padding: 20px;
    background: #0F172A;
    color: white;
    border-radius: 8px;
    margin-bottom: 32px;
}

.archive-stats strong {
    font-size: 32px;
    display: block;
    margin-bottom: 4px;
    color: #BE123C;
}

/* ===== PAGE: BOOKS ===== */
.books-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.book-card {
    text-align: center;
    transition: transform 300ms;
}

.book-card:hover {
    transform: translateY(-8px);
}

.book-cover {
    width: 100%;
    aspect-ratio: 2/3;
    background: #E2E8F0;
    border-radius: 4px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.2);
    overflow: hidden;
}

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

.book-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.book-year {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .books-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===== PAGE: INTERVIEWS ===== */
.interviews-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
    color: #fff;
    padding: 56px 0;
    margin-bottom: 44px;
}

.interviews-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin-bottom: 12px;
}

.interviews-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.7;
}

.feature {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .08);
    margin-bottom: 34px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-media {
    min-height: 320px;
    background: #E2E8F0;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-body {
    padding: 28px;
}

.feature-body .kicker {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #64748B;
    margin-bottom: 10px;
}

.feature-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.2;
    color: #0F172A;
    margin-bottom: 12px;
}

.feature-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 18px;
}

.interview-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.interview-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 18px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
}

.thumb {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #E2E8F0;
}

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

.interview-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 8px;
}

.interview-card .meta {
    font-size: 12px;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.interview-card .desc {
    font-size: 13px;
    color: #334155;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .interview-list {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE: LOGIN ===== */
.login-card {
    max-width: 480px;
	width:100%;
    margin: 0px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0F172A;
    margin-bottom: 8px;
}

.login-header p {
    color: #64748B;
    font-size: 14px;
}

/* ===== PAGE: MY ACCOUNT ===== */
.account-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    margin: 40px 0;
}

.account-nav {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

.account-nav ul {
    list-style: none;
}

.account-nav li a {
    display: block;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: all 200ms;
}

.account-nav li a:hover,
.account-nav li a.active {
    background: white;
    color: #BE123C;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.dashboard-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
}

.status-badge {
    background: #DCFCE7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE: PODCASTS ===== */
.podcast-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
    color: #fff;
    padding: 56px 0;
    margin-bottom: 44px;
}

.podcast-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin-bottom: 12px;
}

.podcast-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.7;
}

.player-card {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .25);
}

.player-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 40px;
}

.player-card .now {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.player-card .title {
    font-weight: 800;
    letter-spacing: .02em;
}

.player-ui {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}

.pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(190, 18, 60, .18);
    color: #fff;
    border: 1px solid rgba(190, 18, 60, .35);
    padding: 6px 10px;
    border-radius: 999px;
}

.scrub {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    overflow: hidden;
    flex: 1;
}

.scrub>span {
    display: block;
    height: 100%;
    width: 38%;
    background: linear-gradient(90deg, #BE123C, #E11D48);
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #94A3B8;
    transition: color 0.2s;
    padding: 4px;
}

.icon-btn:hover {
    color: #fff;
}

.play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.ep-list {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
}

.ep-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #F1F5F9;
    align-items: center;
    transition: background 0.2s;
}

.ep-item:hover {
    background: #F8FAFC;
}

.ep-icon {
    width: 40px;
    height: 40px;
    background: #F1F5F9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    flex-shrink: 0;
}

.ep-content {
    flex: 1;
}

.ep-title {
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
    line-height: 1.3;
}

.ep-meta {
    font-size: 12px;
    color: #64748B;
}

.podcast-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
    color: #fff;
    padding: 56px 0;
    margin-bottom: 44px;
}

.podcast-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin-bottom: 12px;
}

.podcast-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.7;
}

.player-card {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .25);
}

.player-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 40px;
}

.player-card .now {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.player-card .title {
    font-weight: 800;
    letter-spacing: .02em;
}

.player-ui {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}

.pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(190, 18, 60, .18);
    color: #fff;
    border: 1px solid rgba(190, 18, 60, .35);
    padding: 6px 10px;
    border-radius: 999px;
}

.scrub {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    overflow: hidden;
    flex: 1;
}

.scrub>span {
    display: block;
    height: 100%;
    width: 38%;
    background: linear-gradient(90deg, #BE123C, #E11D48);
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, .14);
}

.episode-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.episode {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 18px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
}

.episode-art {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #E2E8F0;
}

.episode-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #0F172A;
    margin-bottom: 6px;
    line-height: 1.25;
}

.episode .meta {
    font-size: 12px;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.episode .desc {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .player-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .episode {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .player-row {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE: SINGLE POST ===== */
.article-header {
    margin-bottom: 32px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E2E8F0;
}

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

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #0F172A;
    margin: 40px 0 20px;
}

.article-content blockquote {
    border-left: 4px solid #BE123C;
    padding-left: 24px;
    margin: 32px 0;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: #475569;
}

.author-box {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 8px;
    margin-top: 60px;
    display: flex;
    gap: 24px;
    border: 1px solid #E2E8F0;
}

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

.comments-section {
    margin-top: 60px;
}

.comment-item {
    padding: 24px 0;
    border-bottom: 1px solid #F1F5F9;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Drop Cap */
.article-content p:first-of-type::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 0.8;
    font-weight: 700;
    color: #BE123C;
    margin-right: 12px;
    margin-top: 4px;
}

/* ===== PAGE: SUBSCRIBE ===== */
.pricing-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.pricing-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 16px;
}

.pricing-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.pricing-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 300ms;
}

.pricing-card:hover {
    border-color: #BE123C;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #BE123C;
    background: linear-gradient(180deg, #FFF 0%, #FEF2F2 100%);
    position: relative;
}

.pricing-badge {
    background: #BE123C;
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.pricing-name {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 12px;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
}

.pricing-period {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 14px;
    color: #334155;
}

.pricing-features li:last-child {
    border: none;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Article Fixes */
.hero-article {
    margin-bottom: 60px;
}

.meta-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 16px;
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background-color: #cbd5e1;
    border-radius: 50%;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    border: none;
}

.btn-primary {
    background-color: #0F172A;
    /* Fallback or var(--navy-primary) if defined */
    color: white;
}

/* Read Link with Hover Arrow */
.read-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #BE123C;
    /* var(--crimson-primary) */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.read-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

.read-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.btn-primary:hover {
    background-color: #020617;
}

/* ===== DETAIL PAGES (Books, Podcasts, Interviews) ===== */

.book-detail-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 64px;
    align-items: start;
}

.book-cover-large {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 32px;
}

.buy-links-box {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.buy-links-box h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--navy-deep);
}

.book-overview {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 48px;
}

.book-testimonials {
    border-top: 2px solid var(--crimson-primary);
    padding-top: 40px;
}

.testimonial-slide {
    padding: 24px;
    background: var(--off-white);
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Podcast Detail */
.episode-meta {
    margin-bottom: 32px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
}

.podcast-player-section {
    background: var(--navy-deep);
    color: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.player-mock {
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.player-play-btn {
    width: 40px;
    height: 40px;
    background: var(--crimson-primary);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
}

.player-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
    background: var(--crimson-primary);
    border-radius: 2px;
}

/* Interview Detail */
.interview-featured-img {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-external {
    margin: 40px 0;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--crimson-primary);
}
.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}


 

@media (max-width: 992px) {
    .book-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .book-sidebar {
        max-width: 400px;
        margin: 0 auto;
    }
}