/* ================================
   UNIFIED STYLESHEET
   Combines: style.css, saint-style.css, saint-style-serto.css, all-apostle.css
   ================================ */

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

body {
    font-family: 'EB Garamond', 'Noto Sans Syriac Western', 'Gayathri', serif;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
    color: #2c2416;
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(139, 69, 19, 0.02) 0px, transparent 1px, transparent 2px, rgba(139, 69, 19, 0.02) 3px),
        repeating-linear-gradient(90deg, rgba(139, 69, 19, 0.02) 0px, transparent 1px, transparent 2px, rgba(139, 69, 19, 0.02) 3px);
    pointer-events: none;
    z-index: 0;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    color: #f5e6d3;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #d4af37;
}

@media (max-width: 768px) {
    header {
        position: relative !important;
        top: auto !important;
    }
}

.header-content {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cross-symbol {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: bold;
}

.site-title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #f5e6d3;
}

.syriac-title {
    font-family: "Noto Sans Syriac Western", 'Gayathri', sans-serif;
    font-size: 1.8rem;
    color: #d4af37;
    direction: rtl;
}

.syriac-west {
    font-family: 'Noto Sans Syriac Western', 'Gayathri', serif;
    direction: rtl;
    unicode-bidi: isolate;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

nav a {
    color: #f5e6d3;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

nav a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

nav a.active {
    color: gold;
    font-weight: bold;
}

/* Malayalam specific overrides for menu */
/* Enforce consistent font for menu items across all languages */
nav a {
    font-family: 'EB Garamond', serif !important;
    /* Force English font for English menu text */
    font-size: 1.1rem;
    /* Standard size */
}

/* Enforce consistent font for site title */
.site-title h1 {
    font-family: 'EB Garamond', serif !important;
}

/* ================================
   BREADCRUMB
   ================================ */
.breadcrumb {
    max-width: 1350px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
    font-size: 1rem;
    color: #7d2222;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: #5c1a1a;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #d4af37;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }

    50% {
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    }
}

/* ================================
   HERO SECTION (Homepage)
   ================================ */
.hero {
    position: relative;
    max-width: 1350px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    z-index: 1;
}

.hero-banner {
    background:
        linear-gradient(135deg, rgba(92, 26, 26, 0.95) 0%, rgba(125, 34, 34, 0.95) 100%),
        url('images/jesus-desiples.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 4px solid #d4af37;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.hero-banner::before {
    content: '✵';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.hero-banner::after {
    content: '✵';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    animation: pulse 2s ease-in-out infinite 1s;
}

.hero-title {
    font-size: 3rem;
    color: #f5e6d3;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.hero-syriac {
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 2rem;
    direction: rtl;
    animation: fadeIn 1.5s ease-out 0.6s both;
}

.hero-text {
    font-size: 1.4rem;
    color: #f5e6d3;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out 0.9s both;
}

/* Responsive Hero Banner Classes */
.sidebar-mobile-toggle i.fa-times {
    display: none;
}

.hero-flex-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image-frame {
    flex: 0 0 400px;
    aspect-ratio: 1 / 1;
    border: 4px solid #d4af37;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-info-content {
    flex: 1;
    min-width: 300px;
}

.hero-info-content h1,
.hero-info-content h2,
.hero-info-content p {
    text-align: left;
}

@media (max-width: 992px) {
    .hero-flex-container {
        gap: 2rem;
    }

    .hero-image-frame {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 1.5rem;
    }

    .hero-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-image-frame {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .hero-info-content {
        width: 100%;
    }

    .hero-info-content h1,
    .hero-info-content h2,
    .hero-info-content p {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-image-frame {
        max-width: 200px;
        border-width: 3px;
    }

    .hero-banner {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-syriac {
        font-size: 1.4rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}


/* ================================
   VERSE BANNER (Homepage)
   ================================ */
.verse-banner {
    max-width: 1350px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
    text-align: center;
    z-index: 1;
    position: relative;
    animation: slideIn 1.2s ease-out;
    overflow: hidden;
}

.verse-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #5c1a1a;
    font-weight: 600;
    animation: glow 3s ease-in-out infinite;
}

/* ================================
   PAGE HEADERS (Apostles & Saints)
   ================================ */
.page-header {
    max-width: 1350px;
    margin: 2rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Apostles Header Banner */
.apostles-header-banner {
    background: linear-gradient(135deg, rgba(92, 26, 26, 0.95) 0%, rgba(125, 34, 34, 0.95) 100%), url('images/jesus-desiples.jpg');
    border: 4px solid #d4af37;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.apostles-header-banner h1 {
    font-size: 3.5rem;
    color: #f5e6d3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.apostles-header-banner .subtitle {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-style: italic;
}

.apostles-header-banner .syriac-name {
    font-family: 'EB Garamond', 'Noto Sans Syriac Western', 'Gayathri', sans-serif;
    font-size: 2rem;
    color: #d4af37;
    direction: rtl;
    margin-bottom: 1.5rem;
}

.apostles-intro {
    font-size: 1.3rem;
    color: #f5e6d3;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

/* Saint Header Banner */
.saint-header-banner {
    position: relative;
    /* Replaced gradient with leather texture and added an overlay for text readability */
    background: linear-gradient(rgba(92, 26, 26, 0.6), rgba(92, 26, 26, 0.6)),
        url('images/bright_maroon_leather.png') center/cover no-repeat;
    border: 4px solid #d4af37;
    border-radius: 8px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.saint-portrait {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    border: 5px solid #d4af37;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #d4af37;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

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

.saint-header-info h1 {
    font-size: 2.8rem;
    color: #f5e6d3;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.saint-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.saint-syriac-name {
    font-family: 'EB Garamond', 'Noto Sans Syriac Western', 'Gayathri', sans-serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
    direction: rtl;
}


.saint-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.meta-item {
    background: rgba(212, 175, 55, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #d4af37;
}

.meta-label {
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    font-size: 1.3rem;
    color: #f5e6d3;
    font-weight: 600;
}

/* ================================
   MAIN CONTENT LAYOUTS
   ================================ */
.main-content {
    max-width: 1350px;
    margin: 2rem auto;
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* For homepage - different layout */
.main-content.homepage {
    margin: 0 auto;
    padding: 2rem;
}

.content-area {
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Full width content (for apostles page) */
.content-full {
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ================================
   SECTION TITLES
   ================================ */
.section-title {
    font-size: 2.2rem;
    color: #5c1a1a;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.section-title:first-child {
    margin-top: 0;
}

/* Section title with icon */
.section-title.with-icon {
    font-size: 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-icon {
    font-size: 1.8rem;
    color: #d4af37;
}

/* Centered section title */
.section-title.centered {
    text-align: center;
}

/* ================================
   APOSTLE COMPONENTS
   ================================ */
.apostle-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(92, 26, 26, 0.02) 100%);
    border: 3px solid #d4af37;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.apostle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.apostle-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.apostle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    border: 3px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #d4af37;
    flex-shrink: 0;
}

.apostle-names h3 {
    font-size: 2rem;
    color: #5c1a1a;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.apostle-subtitle {
    font-size: 1.2rem;
    color: #7d2222;
    font-style: italic;
}

.apostle-feast {
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: 600;
    margin-top: 0.3rem;
}

.apostle-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c2416;
    text-align: justify;
}

.apostle-content p {
    margin-bottom: 1rem;
}

/* Twelve Apostles Grid */
.twelve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.twelve-item {
    background: linear-gradient(135deg, rgba(92, 26, 26, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    padding: 1.5rem;
    border: 2px solid #d4af37;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.twelve-item:hover {
    transform: translateY(-5px);
}

.twelve-number {
    font-size: 2rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.twelve-name {
    font-size: 1.2rem;
    color: #5c1a1a;
    font-weight: 600;
}

/* ================================
   SAINT COMPONENTS
   ================================ */
.saint-image-section {
    margin: 2rem 0;
    text-align: center;
}

.saint-image-container {
    display: inline-block;
    border: 5px solid #d4af37;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
}

.saint-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    font-size: 1.1rem;
    color: #5c1a1a;
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}

.dual-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.dual-image-item {
    text-align: center;
}

.dual-image-container {
    border: 4px solid #d4af37;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.story-content {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #2c2416;
    text-align: justify;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content p:first-of-type:first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin: 0.1rem 0.5rem 0 0;
    color: #5c1a1a;
}

.story-content ul,
.story-content ol {
    margin: 1.5rem 0 2rem;
    padding-left: 2.5rem;
}

.story-content li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.5rem;
}

.story-content ul {
    list-style: none;
}

.story-content ul li::before {
    content: "❖";
    color: #d4af37;
    font-size: 0.9em;
    position: absolute;
    left: -1.5rem;
    top: 0.5em;
    line-height: 1;
}

.story-content ol {
    list-style-type: decimal;
}

.story-content ol li::marker {
    color: #5c1a1a;
    font-weight: 600;
}

.story-content h3 {
    font-size: 1.8rem;
    color: #5c1a1a;
    margin: 2.5rem 0 1rem;
    border-left: 5px solid #d4af37;
    padding-left: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.story-content h3:first-child {
    margin-top: 0;
}

.oath-box {
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 3px solid #d4af37;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(92, 26, 26, 0.15);
    position: relative;
    overflow: hidden;
}

.oath-box::before {
    content: "♰";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.1);
    transform: rotate(15deg);
    pointer-events: none;
}

.oath-box p {
    background: rgba(212, 175, 55, 0.08);
    padding: 1.5rem;
    border-left: 5px solid #d4af37;
    border-radius: 6px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2416;
    font-style: italic;
    margin-bottom: 0;
}

.featured-saint {
    background: linear-gradient(135deg, rgba(92, 26, 26, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.saint-icon {
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    border: 4px solid #d4af37;
    border-radius: 4px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #d4af37;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.saint-name {
    font-size: 1.8rem;
    color: #5c1a1a;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.saint-dates {
    text-align: center;
    color: #7d2222;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.saint-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c2416;
}

/* Saints Grid */
.saints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.saint-card {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.saint-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.saint-card-icon {
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    border: 3px solid #d4af37;
    border-radius: 4px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #d4af37;
}

.saint-card-name {
    font-size: 1.3rem;
    color: #5c1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.saint-card-title {
    font-size: 1rem;
    color: #7d2222;
    font-style: italic;
}

/* ================================
   COMMON CONTENT COMPONENTS
   ================================ */
.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(92, 26, 26, 0.05) 100%);
    border-left: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box p {
    font-size: 1.3rem;
    font-style: italic;
    color: #5c1a1a;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 3px solid #d4af37;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.quote-box h3 {
    font-size: 1.6rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #2c2416;
    font-style: italic;
}

/* Timeline Box */
.timeline-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 3px solid #d4af37;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.timeline-box h3 {
    font-size: 1.8rem;
    color: #8B0000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline-list {
    list-style: none;
    margin-top: 1rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #d4af37, #5c1a1a);
}

.timeline-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c2416;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-list li:before {
    content: '◆';
    position: absolute;
    left: -2.2rem;
    color: #d4af37;
    font-size: 1.5rem;
    top: -0.1rem;
}

.timeline-year {
    font-weight: 700;
    color: #5c1a1a;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.3rem;
}

.prayer-box {
    background: linear-gradient(135deg, rgba(92, 26, 26, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 3px solid #d4af37;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.prayer-box h3 {
    font-size: 1.8rem;
    color: #5c1a1a;
    margin-bottom: 1rem;
}

.prayer-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #2c2416;
    font-style: italic;
    text-align: justify;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(92, 26, 26, 0.05) 100%);
    padding: 1.5rem;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateX(5px);
}

.info-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #5c1a1a;
    margin-bottom: 0.5rem;
}

.info-card-text {
    font-size: 1.1rem;
    color: #2c2416;
    line-height: 1.6;
}

/* ================================
   TRADITION SECTION (Homepage)
   ================================ */
.tradition-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tradition-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 241, 232, 0.9) 100%);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tradition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(92, 26, 26, 0.2);
}

.tradition-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.tradition-title {
    font-size: 1.5rem;
    color: #5c1a1a;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tradition-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c2416;
    text-align: justify;
}

/* ================================
   SIDEBAR
   ================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.85);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.widget-title {
    font-size: 1.5rem;
    color: #5c1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

.widget-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c2416;
}

.quick-facts {
    list-style: none;
}

.quick-facts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.quick-facts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fact-label {
    font-family: 'EB Garamond', 'Noto Sans Syriac Western', 'Gayathri', serif;
    font-weight: 700;
    color: #5c1a1a;
    margin-bottom: 0.3rem;
    display: block;
}

.feast-day {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid #d4af37;
    border-radius: 4px;
}

.feast-date {
    font-weight: 700;
    color: #5c1a1a;
    margin-bottom: 0.3rem;
}

.feast-saint {
    color: #7d2222;
}

.related-saints {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-saint-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.related-saint-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.related-saint-icon {
    width: 50px;
    height: 60px;
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    border: 2px solid #d4af37;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.related-saint-name {
    font-size: 1.1rem;
    color: #5c1a1a;
    font-weight: 600;
}

.photo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.photo-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    border: 2px solid #d4af37;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 2rem;
}

.ad-space {
    background: rgba(212, 175, 55, 0.05);
    padding: 1rem;
    text-align: center;
    border: 2px dashed #d4af37;
    border-radius: 4px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d2222;
    font-size: 0.9rem;
}

.announcement-box {
    background: rgba(212, 175, 55, 0.15);
    padding: 1rem;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.announcement-title {
    font-weight: 700;
    color: #5c1a1a;
    margin-bottom: 0.5rem;
}

.announcement-text {
    font-size: 1rem;
    color: #2c2416;
}

/* ================================
   ROYAL LETTER
   ================================ */
.royal-letter {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-left: 4px solid #d4af37;
    border-radius: 4px 8px 8px 4px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(92, 26, 26, 0.05);
    position: relative;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3b2a1a;
}

.royal-letter p {
    margin-bottom: 1rem;
}

.royal-letter p:last-child {
    margin-bottom: 0;
}

.royal-letter::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #ffffff;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
    font-family: 'Gayathri', sans-serif;
}

.language-switcher:hover {
    background: #d4af37;
    color: #5c1a1a;
    transform: scale(1.1);
}

.language-switcher.ml-size {
    font-size: 2.2rem;
    padding-bottom: 5px;
}

/* ================================
   FOOTER
   ================================ */
footer {
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    color: #f5e6d3;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid #d4af37;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.7rem;
}

.footer-menu a {
    color: #f5e6d3;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #d4af37;
}

.contact-info p {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 1rem;
    color: #d4af37;
    font-style: italic;
}

/* ================================
   UTILITY CLASSES
   ================================ */
a.no-style,
a.no-style:visited,
a.no-style:hover,
a.no-style:active,
a.no-style:focus {
    color: inherit;
    text-decoration: none;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 968px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .saint-header-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .saint-portrait {
        margin: 0 auto;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-syriac {
        font-family: 'EB Garamond', 'Gayathri', 'Noto Sans Syriac Western', sans-serif;
        font-size: 1.5rem;
    }

    .apostle-header {
        flex-direction: column;
        text-align: center;
    }

    .apostle-content {
        text-align: left;
    }
}

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

    .main-content {
        display: block !important;
        padding: 0 !important;
    }

    .content-area {
        padding: 1.5rem !important;
    }

    .sidebar {
        margin-top: 2rem;
    }

    /* Fix for Saint Header overflow on mobile */
    .saint-header-banner {
        padding: 1.5rem !important;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .saint-header-info {
        width: 100%;
        text-align: center;
        padding: 0 0.5rem;
    }

    .saint-header-info h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .saint-syriac-name {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .saint-meta {
        justify-content: center;
        gap: 1rem;
    }

    .meta-item {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem;
    }

    /* Fix for Section Title overflow */
    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-title.with-icon {
        font-size: 1.5rem !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .saint-header-info h1 {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    .saint-portrait {
        width: 200px;
        height: 240px;
    }

    .content-area {
        padding: 1rem !important;
    }
}

/* ================================
   APOSTLE LIST BOX (New Style)
   ================================ */
.apostle-list-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 241, 232, 0.9) 100%);
    border-left: 5px solid #d4af37;
    border-radius: 0 8px 8px 0;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(92, 26, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.apostle-list-box::after {
    content: "🕊️";
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

.apostle-list-box h3 {
    color: #5c1a1a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.apostle-list-box p {
    margin-bottom: 1.5rem;
    color: #5c1a1a;
    font-style: italic;
    font-size: 1.1rem;
}

.apostle-list-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apostle-list-box li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #2c2416;
    line-height: 1.6;
    transition: transform 0.2s ease;
}

.apostle-list-box li:last-child {
    margin-bottom: 0;
}

/* ================================
   TITLES GRID & CARDS
   ================================ */
.titles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.title-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
    border: 1px solid #e0c080;
    border-top: 4px solid #800000;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.title-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

.title-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(139, 69, 19, 0.15);
    border-color: #d4af37;
}

.title-name {
    color: #800000;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.title-origin {
    color: #5c4033;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .titles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .title-card {
        padding: 1.5rem;
    }
}

/* ================================
   MALAYALAM RESPONSIVE OVERRIDES
   ================================ */
@media (max-width: 768px) {
    html[lang="ml"] .saint-header-info h1 {
        font-size: 1.6rem !important;
        /* Smaller than English */
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    html[lang="ml"] .section-title {
        font-size: 1.5rem !important;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    html[lang="ml"] .saint-subtitle {
        font-size: 1.3rem !important;
    }

    html[lang="ml"] .saint-syriac-name {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    html[lang="ml"] .saint-header-info h1 {
        font-size: 1.4rem !important;
    }

    html[lang="ml"] .section-title {
        font-size: 1.3rem !important;
    }

    html[lang="ml"] .saint-header-banner {
        padding: 1rem !important;
    }

    /* Ensure long words don't overflow container */
    html[lang="ml"] .saint-header-info,
    html[lang="ml"] .content-area {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

.apostle-list-box li:hover {
    transform: translateX(5px);
}

.apostle-list-box li::before {
    content: "📜";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.4rem;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.1));
}

.apostle-list-box li strong {
    color: #7d2222;
    font-weight: 700;
    margin-right: 0.5rem;
    display: block;
    margin-bottom: 0.2rem;
}

/* ================================
   DIVINE PROMISE BOX (Custom Style)
   ================================ */
.divine-promise-box {
    background: linear-gradient(135deg, #fffcf5 0%, #f7efd2 100%);
    border: 1px solid #e0c080;
    border-left: 6px solid #800000;
    /* Deep red for martyrdom/royalty */
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
    overflow: hidden;
}

/* Decorative background element */
.divine-promise-box::before {
    position: absolute;
    right: -10px;
    top: -20px;
    font-size: 10rem;
    opacity: 0.07;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
}

.divine-promise-box.peter::before {
    content: "🗝️";
}

.divine-promise-box.george::before {
    content: "🛡️";
}

.divine-promise-box.thomas::before {
    content: "📐";
}

.divine-promise-box h3 {
    color: #800000;
    font-family: 'EB Garamond', 'Noto Sans Syriac Western', 'Gayathri', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.divine-promise-box h3::before {
    content: "✨";
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.divine-promise-box .quote-text {
    font-family: 'EB Garamond', 'Noto Sans Syriac Western', 'Gayathri', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    color: #2c1810;
    position: relative;
    z-index: 1;
    text-align: center;
    border-top: 1px solid rgba(128, 0, 0, 0.1);
    border-bottom: 1px solid rgba(128, 0, 0, 0.1);
    padding: 1.5rem 0;
}

.divine-promise-box .quote-text::before {
    content: "“";
    font-family: serif;
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.divine-promise-box .quote-text::after {
    content: "”";
    font-family: serif;
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    bottom: -2.5rem;
    right: -1rem;
    opacity: 0.3;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #ffffff;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
    font-family: 'EB Garamond', 'Gayathri', serif;
}

.language-switcher:hover {
    background: #d4af37;
    color: #5c1a1a;
}

.language-switcher.ml-size {
    font-size: 2.2rem;
    padding-bottom: 5px;
}

/* ================================
   MALAYALAM TYPOGRAPHY OVERRIDES
   ================================ */
html[lang="ml"] body {
    font-size: 0.85em;
    /* Further reduced from 0.95em */
    line-height: 1.5;
    /* Further reduced from 1.6 */
}

html[lang="ml"] p {
    margin-bottom: 1.0rem;
    /* Further reduced spacing */
}

html[lang="ml"] h1 {
    font-size: 2.2rem;
    line-height: 1.25;
}

html[lang="ml"] h2 {
    font-size: 1.4rem;
    line-height: 1.25;
}

html[lang="ml"] h3 {
    font-size: 1.2rem;
    line-height: 1.25;
}

html[lang="ml"] .sidebar-widget {
    font-size: 0.9rem;
    /* Further reduced from 1rem */
    line-height: 1.4;
}

.saint-header-banner {
    position: relative;
}

/* ================================
   FAQ ACCORDION
   ================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.faq-item {
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid #d4af37;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(92, 26, 26, 0.1);
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #5c1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.2);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c2416;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* ================================
   DID YOU KNOW SECTION
   ================================ */
.did-you-know {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(92, 26, 26, 0.05) 100%);
    border-radius: 12px;
    border-left: 6px solid #d4af37;
    border-right: 6px solid #d4af37;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 8px 24px rgba(92, 26, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.did-you-know::after {
    content: "💡";
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 10rem;
    opacity: 0.08;
    transform: rotate(-15deg);
    pointer-events: none;
}

.did-you-know h3 {
    font-size: 1.8rem;
    color: #5c1a1a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.8rem;
    margin-top: 0;
}

.did-you-know-icon {
    font-size: 2rem;
    line-height: 1;
}

.did-you-know p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c2416;
    margin-bottom: 1.2rem;
}

.did-you-know p[style*="italic"] {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #5c1a1a;
    font-size: 1.35rem;
    color: #5c1a1a;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.did-you-know p:last-child {
    margin-bottom: 0;
}

/* ================================
   LANGUAGE SWITCHER
   ================================ */
.language-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #ffffff;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
    font-family: 'EB Garamond', 'Gayathri', sans-serif;
}

.language-switcher.ml-size {
    font-size: 2.2rem;
    padding-bottom: 5px;
}

.language-switcher:hover {
    background: #d4af37;
    color: #5c1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ================================
   MOBILE IMAGE & DROP-CAP FIX
   ================================ */
@media (max-width: 850px) {
    .saint-inline-img {
        float: none !important;
        display: block !important;
        margin: 1.5rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
        /* Force larger size as requested */
        height: auto !important;
        border: 4px solid #d4af37 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }

    .story-content {
        text-align: left !important;
    }

    /* Prevent drop-cap collision with floated images (if any remain)
       and make it look better on small screens */
    .story-content p:first-of-type:first-letter {
        float: none !important;
        display: inline-block !important;
        font-size: 2.8rem !important;
        margin: 0 0.2rem 0 0 !important;
        vertical-align: middle !important;
    }
}