/* Era of Director Specific Styles */
.era-director-hero {
    background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%);
    color: white;
    padding: 5rem 0 3rem;
}

.era-director-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.era-director-hero .hero-text h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.era-director-hero .hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.era-director-hero .hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.era-director-hero .article-meta {
    color: rgba(255, 255, 255, 0.8);
}

.era-director-hero .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0;
}

/* Chapter Sections */
.chapter-section {
    padding: 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

.chapter-section:last-child {
    border-bottom: none;
}

.chapter-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.chapter-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3a86ff;
    opacity: 0.3;
    font-family: 'Montserrat', sans-serif;
}

.chapter-header h2 {
    margin: 0;
    font-size: 2.2rem;
    color: #1a365d;
}

/* Paradigm Shift Card */
.paradigm-shift-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.shift-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.old-paradigm, .new-paradigm {
    padding: 1.5rem;
    border-radius: 8px;
}

.old-paradigm {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
}

.new-paradigm {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #3a86ff;
}

.old-paradigm h3, .new-paradigm h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #495057;
}

.old-paradigm h3 i {
    color: #6c757d;
}

.new-paradigm h3 i {
    color: #3a86ff;
}

.old-paradigm ul, .new-paradigm ul {
    list-style: none;
    padding: 0;
}

.old-paradigm li, .new-paradigm li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.old-paradigm li i {
    color: #6c757d;
}

.new-paradigm li i {
    color: #3a86ff;
}

.shift-quote {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3a86ff;
    position: relative;
}

.shift-quote i.fa-quote-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #3a86ff;
    opacity: 0.3;
    font-size: 2rem;
}

.shift-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0 0 0.5rem 0;
    padding-left: 2rem;
}

.quote-author {
    text-align: right;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Quote Grid */
.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.quote-card {
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.professionals-quote {
    background: linear-gradient(135deg, #3a86ff 0%, #2667cc 100%);
    color: white;
}

.insight-quote {
    background: linear-gradient(135deg, #ff9a3c 0%, #ff7b00 100%);
    color: white;
}

.original-quote {
    background: linear-gradient(135deg, #38b000 0%, #2b8c00 100%);
    color: white;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.2;
    font-size: 3rem;
}

.quote-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Era Transition */
.era-transition {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.transition-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.transition-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: #3a86ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-content h4 {
    margin: 0 0 0.5rem 0;
    color: #1a365d;
}

/* Quote Carousel */
.quote-carousel {
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    text-align: center;
    padding: 0 1rem;
}

.carousel-item p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.carousel-author {
    color: #6c757d;
    font-size: 0.9rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.carousel-prev, .carousel-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: #3a86ff;
    color: white;
    transform: scale(1.1);
}

/* Agent Philosophy */
.agent-philosophy {
    margin: 2rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.philosophy-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #3a86ff;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: #3a86ff;
    font-size: 1.8rem;
}

.philosophy-card h3 {
    margin: 0 0 1rem 0;
    color: #1a365d;
}

.philosophy-card p {
    font-style: italic;
    color: #6c757d;
    margin: 0;
}

/* Key Quotes Section */
.key-quotes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.key-quotes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.key-quote {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.professionals .quote-marker {
    background: #3a86ff;
}

.industry .quote-marker {
    background: #ff9a3c;
}

.original .quote-marker {
    background: #38b000;
}

.quote-text {
    flex: 1;
}

.quote-text p {
    margin: 0 0 0.3rem 0;
    font-weight: 500;
    color: #1a365d;
}

.quote-source {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Agent Metaphors */
.agent-metaphors {
    margin: 3rem 0;
}

.metaphor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.metaphor-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.metaphor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.metaphor-card h4 {
    color: #3a86ff;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.metaphor-card p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* ERA Explanation */
.era-explanation {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.era-comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.era-old, .era-new {
    flex: 1;
    padding: 2rem;
    border-radius: 8px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.era-old {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #adb5bd;
}

.era-new {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #3a86ff;
}

.era-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.era-header i {
    font-size: 2rem;
}

.era-old .era-header i {
    color: #6c757d;
}

.era-new .era-header i {
    color: #3a86ff;
}

.era-header h3 {
    margin: 0;
    color: #1a365d;
}

.era-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.era-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.era-old .era-features li i {
    color: #6c757d;
}

.era-new .era-features li i {
    color: #3a86ff;
}

.era-arrow {
    font-size: 2rem;
    color: #3a86ff;
    opacity: 0.7;
}

/* ERA Quotes */
.era-quotes-section {
    margin: 3rem 0;
}

.era-quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.era-quote-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.era-quote-card:hover {
    transform: translateY(-5px);
}

.era-quote-card.highlight-quote {
    border: 2px solid #3a86ff;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
}

.quote-signature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.signature-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3a86ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.signature-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.era-quote-card p {
    margin: 0;
    font-size: 1.1rem;
    color: #1a365d;
    line-height: 1.5;
}

/* ERA Implications */
.era-implications {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.implications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.implication-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.implication-card h4 {
    color: #3a86ff;
    margin: 0 0 0.8rem 0;
}

.implication-card p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mantra Wall */
.mantra-wall {
    margin: 3rem 0;
}

.mantra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.mantra-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mantra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mantra-card.professionals-card {
    border: 2px solid #3a86ff;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.mantra-text h3 {
    color: #1a365d;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.mantra-text p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.mantra-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e9ecef;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.mantra-card.professionals-card .mantra-type {
    background: #3a86ff;
    color: white;
}

/* New Vocabulary */
.new-vocabulary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.vocabulary-list {
    margin-top: 1.5rem;
}

.vocabulary-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.vocabulary-item:last-child {
    border-bottom: none;
}

.vocab-term {
    font-weight: 600;
    color: #1a365d;
    min-width: 150px;
}

.vocab-definition {
    color: #6c757d;
    flex: 1;
}

/* Vibe Quotes */
.vibe-quotes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.vibe-quote {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.warning-quote {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
}

.reality-quote {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid #0dcaf0;
}

.brand-quote {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #198754;
}

.acceptance-quote {
    background: linear-gradient(135deg, #e2e3e5 0%, #d3d6d8 100%);
    border: 1px solid #6c757d;
}

.visionary-quote {
    background: linear-gradient(135deg, #cce5ff 0%, #b8daff 100%);
    border: 1px solid #0d6efd;
}

.vibe-icon {
    font-size: 1.5rem;
    color: #1a365d;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.vibe-content p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a365d;
    margin: 0 0 0.5rem 0;
}

.vibe-context {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Additional Insights */
.additional-insights {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
}

.insight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.insight-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3a86ff;
}

.insight-card p {
    margin: 0;
    font-style: italic;
    color: #1a365d;
    line-height: 1.5;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%);
    color: white;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
}

.conclusion-header {
    text-align: center;
    margin-bottom: 2rem;
}

.conclusion-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.conclusion-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.final-insight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.insight-icon {
    font-size: 2rem;
    color: #3a86ff;
}

.insight-text p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.core-belief {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.core-belief h3 {
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.belief-content {
    text-align: center;
}

.belief-quote {
    position: relative;
    padding: 2rem;
    margin: 1.5rem 0;
}

.belief-quote i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    opacity: 0.3;
    color: #3a86ff;
}

.belief-quote i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 2rem;
    opacity: 0.3;
    color: #3a86ff;
}

.belief-quote p {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a86ff;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.final-quote-section {
    text-align: center;
    margin: 2rem 0;
}

.final-quote-card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3a86ff;
}

.final-quote-mark {
    font-size: 2rem;
    color: #3a86ff;
    margin-bottom: 1rem;
}

.final-quote-content p {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
}

.final-quote-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

.call-to-reflection {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.reflection-box {
    text-align: center;
}

.reflection-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #3a86ff;
}

.reflection-question i {
    font-size: 1.5rem;
}

.closing-statement {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.closing-icon {
    font-size: 3rem;
    color: #3a86ff;
    opacity: 0.8;
}

.closing-text h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.closing-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.closing-signature {
    font-weight: 600;
    color: #3a86ff;
    margin-top: 1rem !important;
    font-style: italic;
}

/* Sidebar Widgets Specific to Era Article */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a86ff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.pl-quotes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.pl-quote {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #3a86ff;
    position: relative;
}

.pl-quote-marker {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #3a86ff;
    opacity: 0.3;
}

.pl-quote p {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #495057;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.related-icon {
    width: 50px;
    height: 50px;
    background: #3a86ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.related-article h4 {
    margin: 0;
    font-size: 1rem;
    color: #1a365d;
}

.related-article span {
    font-size: 0.8rem;
    color: #6c757d;
}

.download-guide {
    text-align: center;
}

.download-guide p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.btn-small {
    display: inline-block;
    background: #3a86ff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-small:hover {
    background: #2667cc;
    color: white;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .era-director-hero .hero-content {
        flex-direction: column;
    }
    
    .era-director-hero .hero-image {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .shift-comparison {
        grid-template-columns: 1fr;
    }
    
    .era-comparison {
        flex-direction: column;
    }
    
    .era-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .era-director-hero .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .chapter-header h2 {
        font-size: 1.8rem;
    }
    
    .belief-quote p {
        font-size: 1.4rem;
    }
    
    .closing-statement {
        flex-direction: column;
        text-align: center;
    }
    
    .closing-icon {
        margin-bottom: 1rem;
    }
    
    .vocabulary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .mantra-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .metaphor-cards {
        grid-template-columns: 1fr;
    }
    
    .implications-grid {
        grid-template-columns: 1fr;
    }
}