/* Import Open Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,:wght@0,300;0,500;0,700;1,300;1,500&display=swap');
       /* Basic Reset and Layout */
        body {    
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
         
        img {
            max-width: 100%;
            height: auto;
            display: block; /* Optional: Removes extra space below the image */
        }

        #container {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
            background-color: #fff;            
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);            
            display: flex;
            flex-direction: column;
            min-height: 100vh; /* Ensures footer is at the bottom */
        }
        .article {
          text-align: left;
	      max-width: 800px;
          margin: 0 auto;
  	      padding: 20px;
  	      box-sizing: border-box;
          align-content: left;
          color: black;
  	      background-color: white;
        }
        /* Header Styling */
        header {
        
            background-color: #10331a;
            
            
            color: white;
            /* padding: 5px 10px; */
            text-align: center;
        }
/*
        header h1 {
            margin-bottom: 1px;
        }
*/
        #header-image {
            width: 100%;
            height: 100%; /* Adjust height as needed */
            color: black;
            background-color: silver; /* Placeholder color #aef5c1; */
            margin-bottom: 5px;
            overflow: hidden;
        }

        #header-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the area */
        }

        #header-links {
            padding: 10px 0;
            color: white;
            background-color: #10331a;
        }

        #header-links a {
            color: yellow;
            text-decoration: none;
            padding: 0 15px;
        }

        /* Main Content Area */
        #main-content {
            display: flex;
            flex: 1; /* Allows this section to grow and push the footer down */
            padding: 20px;
        }

        /* Navigation Styling */
        .navigation {
            padding: 15px;
            background-color: #eee;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .navigation h2 {
            margin-top: 0;
            color: darkgreen; /* #10331a; */
            border-bottom: 2px solid #ccc;
            padding-bottom: 5px;
            margin-bottom: 10px;
        }

        .navigation ul {
            list-style: none;
            padding: 0;
        }

        .navigation li {
            margin-bottom: 8px;
        }

        .navigation a {
            text-decoration: none;
            color: #33076b; /* #007bff; */
            display: block;
        }

        .navigation a:hover {
            text-decoration: underline;
        }

        /* Left Navigation Tree (Authors/Articles) */
        #left-nav {
            flex: 1; /* Takes up 1/5 of the space (approx 20%) */
            margin-right: 20px;
            min-width: 180px;
        }

        .author-section ul {
            list-style: none;
            padding-left: 15px;
            margin-top: 5px;
            border-left: 2px solid #ddd;
        }

        .author-section h3 {
            margin: 0;
            color: #222;
            font-size: 1.1em;
            cursor: pointer;
        }

        /* Center Content (Featured Article) */
        #center-content {
            flex: 3; /* Takes up 3/5 of the space (approx 60%) */
            padding: 20px;
            background-color: white;
            border-left: 1px solid white;
            border-right: 1px solid white;
        }

        #center-content h2 {
            color: #33076b; /* Rosebud-like color */
        }

        /* Right Navigation (Interviews) */
        #right-nav {
            flex: 1; /* Takes up 1/5 of the space (approx 20%) */
            margin-left: 20px;
            min-width: 180px;
        }

        /* Footer Styling */
        footer {
            text-align: center;
            padding: 10px 20px;
            background-color: #10331a;
            color: white;
            font-size: 0.9em;
            margin-top: auto; /* Pushes the footer to the bottom */
        }
        
        /* ===== POST-SPECIFIC STYLES ===== */

.post {
    background: white;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.comments {
    margin-top: 20px;
    width: 100%;
}

.comment {
    background: #f0f0f0;
    padding: 10px;
    margin: 8px 0;
    border-radius: 4px;
}

.comment strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.comment-form {
    margin-top: 15px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.comment-form button {
    padding: 8px 12px;
    background-color: #10331a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.comment-form button:hover {
    background-color: #0d2915; /* Slightly darker for hover effect */
}

.email-note {
    font-size: 12px;
    color: #666;
    margin-top: -8px;
    margin-bottom: 10px;
}

.bordered-paragraph {
    border: 5px solid green;
    padding: 5px; /* Adds space between text and border */
}
/* Add to smopoststyle.css for better post typography */
.article p {
    line-height: 1.6;
    margin-bottom: 1.2em;
}

.article h1, .article h2, .article h3 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.article a {
    color: #10331a;
    text-decoration: underline;
}

.article a:hover {
    color: #0d2915;
}
/* The container for one speaker's turn */
/* 1. Target the paragraph itself */
/* 1. Main Container: Constrain width for optimal reading comfort */
.play-script {
    max-width: 750px;       /* Prevents lines from getting too long to track */
    margin: 2rem auto;      /* Centers the script on your page */
    line-height: 1.6;       /* The "Golden Ratio" for readability */
    font-size: 1.1rem;      /* Slightly larger for a relaxed reading experience */
    color: #333;            /* Softens the contrast against pure white */
}

/* 2. Base Paragraph Style */
.play-script p {
    padding-left: 70px;     /* The "Gutter" for names */
    text-indent: -70px;     /* Pulls the name back into the gutter */
    margin-bottom: 0.25rem; /* Tight spacing for internal paragraph breaks */
    margin-top: 0;S
}

/* 3. The Speaker Name (Markdown **J:**) */
.play-script p strong:first-child {
    display: inline-block;
    width: 60px;            /* Sufficient for initials + colon */
    text-align: right;
    margin-right: 10px;
    text-indent: 0;         /* Keeps the name from shifting left */
    vertical-align: top;
    color: #000;            /* Keeps names distinct */
}

/* 4. The "Continuation" Logic */
/* If a paragraph does NOT start with a name, keep it aligned to the text */
.play-script p:not(:has(strong:first-child)) {
    text-indent: 0;
}

/* 5. Visual Rhythm: Speaker Change vs Paragraph Break */
/* Adds extra space ONLY when a new speaker starts (except for the very first line) */
.play-script p:has(strong:first-child):not(:first-child) {
    margin-top: 2rem; 
}
/* Optional: Add these if you want body styling different from main site */
/*
body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background: #f9f9f9;
}
*/
/* WhatsApp Shortcode Styles */
/* WhatsApp Shortcode Styles */
.wa-wrapper {
    display: flex;
    width: 100%;
    margin: 12px 0; /* Space between bubbles */
    clear: both;
}

/* Forces the "Sent" wrapper to push content to the right */
.wa-right {
    justify-content: flex-end;
}

.wa-bubble {
    display: block;
    max-width: 80%; /* Leaves room on the side for the "chat" look */
    box-sizing: border-box;
    padding: 10px 15px;
    border-radius: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    word-wrap: break-word; /* Prevents long links from breaking the bubble */
}

/* RECEIVED: White/Grey background, sticks to the left */
.wa-received {
    background-color: #f1f1f1 !important;
    color: #111b21 !important;
    border-top-left-radius: 2px;
    margin-right: auto; 
}

/* SENT: WhatsApp Green, sticks to the right */
.wa-sent {
    background-color: #dcf8c6 !important;
    color: #111b21 !important;
    border-top-right-radius: 2px;
    margin-left: auto; 
}
/* Custom Textbox for Longhand Aesthetic */
.custom-textbox {
    font-family: 'Dancing Script', cursive;
    font-weight: 700; /* Uses the thicker 'bold' stroke */
    font-size: 1.5rem; /* Larger size for better legibility */
    line-height: 1.6;
    color: #222; /* Darker ink color */
    
    background-color: #fdfaf0; /* Light parchment-style background */
    padding: 20px;
    margin: 20px 0;
    border-left: 6px solid #d4a373; /* A sturdy accent border */
    border-radius: 2px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.textbox-heading {
    display: block;
    font-weight: bold;
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: #8b5e3c;
    border-bottom: 1px solid #e0d1bc;
}

/* This forces the Markdown paragraphs to stay on the same line as the header */
.custom-textbox p {
    display: inline; 
}

/* If you have a second paragraph, this ensures it starts on a new line 
   while the first one still runs-in with the header */
.custom-textbox p ~ p {
    display: block;
    margin-top: 10px;
}

OGPoststyle,css:
