/* Global Styling */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.5;
}
h1 {
    font-size: 40px;
}
body, html {
  overflow-x: hidden;
  max-width: 100vw; /* viewport width */
}
 a {
    text-decoration: none;
  }
/* Container to Restrict Width */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
.logo img {
            height: auto;
            width: 350px;
}

@media (max-width: 768px) {
  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 14px!important;
  }
}
.seo-keywords {
    display: none;
}
.table-info {
  width: 100%;
  border-collapse: collapse;
}

.table-info th, 
.table-info td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .table-info {
    display: block;
    overflow-x: auto; /* Enables horizontal scrolling on small screens */
    white-space: nowrap;
  }
  
  .table-info th, 
  .table-info td {
    padding: 8px;
    font-size: 14px; /* Adjust font size for readability */
    white-space: normal; /* Allows text wrapping on small screens */
    word-wrap: break-word;
  }
}
.imp-info {
    border-radius: 12px;
    border: 1px solid #3baa96;
    padding: 5px;
    margin-bottom: 20px;
}
.imp-info h4 {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
    padding: 5px;
    position: relative;
}

.imp-info h4::after {
    content: "";
    display: block;
    width: 5%; /* Makes the line extend fully */
    height: 2px; /* Thickness of the line */
    background-color: #3baa96; /* Change color as needed */
    position: absolute;
    bottom: 0; /* Places the line directly below the text */
    left: 5px;
}
@media (max-width: 768px) {
    .imp-info {
        border-radius: 8px; /* Slightly smaller border-radius for compact look */
        border: 1px solid #3baa96;
        padding: 8px; /* Adjusted padding for better spacing */
    }

    .imp-info h4 {
        font-size: 18px; /* Slightly smaller font for better fit */
        text-transform: capitalize;
        margin: 0;
        padding: 5px;
        position: relative;
    }

    .imp-info h4::after {
        content: "";
        display: block;
        width: 10%; /* Increased width for better visibility on mobile */
        height: 2px; /* Keeps line thickness */
        background-color: #3baa96;
        position: absolute;
        bottom: 0;
        left: 5px;
    }
}


/* General Styling */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
}

nav {
    display: contents;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    padding: 5px;
    display: block;
    position: relative;       /* needed for ::after positioning */
    transition: color 0.3s ease, background 0.3s ease;
    border-radius: 4px;
}

/* Underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;              /* adjust so it sits nicely */
    width: 0%;
    height: 2px;
    background: #3baa96;      /* same as hover color */
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #3baa96;           
}

/* Animate underline on hover */
.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;              /* expands underline left → right */
}

/* Default Dropdown Styling */
.dropdown {
    display: none;
    background: rgba(20, 20, 20, 0.95);
    padding: 0;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, max-height 0.4s ease-in-out;
    max-height: 0; /* Default: collapsed */
    overflow: hidden;
}

/* Dropdown Item Styling */
.dropdown li {
    padding: 10px 15px;
}

.dropdown a {
    color: white;
    display: block;
}
/* Mobile: Dropdown should expand (push content down) */
@media (max-width: 768px) {
    .dropdown {
        position: relative; /* No overlay */
        width: 100%;
    }

    .dropdown-active {
        display: block !important;
        opacity: 1;
        max-height: 300px; /* Expands naturally */
    }
}

/* Desktop: Dropdown should overlay (absolute positioning) */
@media (min-width: 769px) {
    .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
    }

    .dropdown-active {
        display: block !important;
        opacity: 1;
        max-height: none; /* No expansion */
    }
}
/* Show dropdown when active */
.dropdown-active {
    display: block !important;
    opacity: 1;
    max-height: 300px; /* Adjust to fit content */
}


/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    color: black;
}

.bar {
    width: 30px;
    height: 3px;
    background: #000000;
    margin: 5px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 50px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: auto;
        display: none;
        text-align: left;
        padding: 15px 0;
        z-index: 1000;
        border-radius: 0 0 5px 5px;
    }

    .nav-links li {
        display: block;
        padding: 12px 15px;
    }

    .menu-toggle {
        display: flex;
        margin: 1px auto;
    }

    .nav-active {
        display: flex !important;
        flex-direction: column;
    }
}



/* Hero Section */
.hero {
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    white-space: nowrap;
    text-align: center;
}

.hero h2 {
   font-size: 1.8rem; 
   text-align: center;
}

.hero p {
    font-size: 1.5rem;
    margin: 15px auto;
    font-weight: 600;
    background: #ffa016;
    color: #000000;
    text-align: center;
    border-radius: 12px;
    padding: 5px;
    width: 320px;
}
/* Mobile Styles for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 50px 15px; /* Reduce padding for smaller screens */
    }

    .hero h1 {
        font-size: 1.8rem; /* Reduce font size for mobile */
        white-space: normal; /* Allow text to wrap */
        word-wrap: break-word;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem; /* Slightly smaller text */
    }
}

@media (max-width: 768px) {
    header {
        position: static;
        top: 0;
        left: 0;
        width: 100%;
        background: white; /* Ensure it's visible */
        z-index: 1000; /* Ensure it stays above other elements */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .logo img {
        width: 250px;
    }
    
    nav ul {
        display: none;
    }
    
    .menu-icon {
        display: block;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .content-area {
        padding-top: 20px;
    }
}

/* Button Styling */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #e68900;
}

/* Footer Styling */
footer {
    background: #111;
    color: #eee;
    padding: 20px 15px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    display: inline-block;
    margin-right: 15px;
}

.footer-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3baa96;
}

/* ✅ Mobile (up to 768px) */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        flex: 100%;
        text-align: center;
        margin: 8px 0;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .footer-links li {
        flex: 0 0 50%;   /* each takes 50% width → 2 per row */
        margin: 6px 0;
        text-align: center;
    }
}



.list-style-one {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-style-one li {
    display: flex;
    align-items: center; /* Ensures vertical alignment */
    gap: 8px; /* Adds spacing between the checkmark and text */
    padding: 8px 12px;
    transition: background 0.3s ease-in-out;
}

.list-style-one li::before {
    content: "✔"; /* Unicode checkmark */
    color: #3baa96; /* Primary color */
    font-size: 18px;
    flex-shrink: 0; /* Prevents checkmark from shrinking */
}



/* Consistent Section Styling */
.IndexPageSection {
    padding: 50px 20px;
    background-color: #fff;
}

.IndexPageSection-Container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.IndexPageSection-hero {
    text-align: center;
    margin-bottom: 50px;
}
.IndexPageSection-hero h1 {
    text-align: center; /* Vertically center the items */
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.IndexPageSection-hero .subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* Content Grid */
.IndexPageSection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.IndexPageSection-grid .content-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.IndexPageSection-grid .content-card:hover {
    transform: translateY(-10px);
}

.IndexPageSection-grid .content-card h2 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 10px;
}

.IndexPageSection-grid .content-card p {
    font-size: 1rem;
    color: #666;
}

/* Call to Action Section */
.IndexPageSection-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background-color: #3498db;
    border-radius: 10px;
    color: #fff;
}

.IndexPageSection-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.IndexPageSection-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.IndexPageSection-cta .cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #e67e22;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.IndexPageSection-cta .cta-button:hover {
    background-color: #d35400;
}
/* Content Card Image */
.content-card-image {
    display: block; /* Ensure the image is treated as a block element */
    margin: 0 auto 20px auto; /* Center the image and add space below */
    max-width: 100px; /* Ensure the image doesn't overflow the card */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
}

/* Content Card Styling */
.content-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center; /* Center text inside the card */
}

.content-card:hover {
    transform: translateY(-10px);
}

.content-card h2 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 10px;
}

.content-card p {
    font-size: 1rem;
    color: #666;
}
@media only screen and (max-width: 767px) {
    /* Consistent Section Styling */
    .IndexPageSection {
        padding: 30px 15px; /* Reduced padding for mobile */
    }

    .IndexPageSection-Container {
        max-width: 100%; /* Full width on mobile */
        padding: 0 15px; /* Added padding for better spacing */
    }

    /* Hero Section */
    .IndexPageSection-hero {
        margin-bottom: 30px; /* Reduced margin for mobile */
    }

    .IndexPageSection-hero h1 {
        font-size: 28px; /* Smaller font size for mobile */
        margin-bottom: 15px; /* Reduced margin for mobile */
    }

    .IndexPageSection-hero .subtitle {
        font-size: 1rem; /* Smaller font size for mobile */
    }

    /* Content Grid */
    .IndexPageSection-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 15px; /* Reduced gap for mobile */
    }

    .IndexPageSection-grid .content-card {
        padding: 15px; /* Reduced padding for mobile */
    }

    .IndexPageSection-grid .content-card h2 {
        font-size: 1.25rem; /* Smaller font size for mobile */
    }

    .IndexPageSection-grid .content-card p {
        font-size: 0.9rem; /* Smaller font size for mobile */
    }

    /* Call to Action Section */
    .IndexPageSection-cta {
        margin-top: 30px; /* Reduced margin for mobile */
        padding: 30px 15px; /* Reduced padding for mobile */
    }

    .IndexPageSection-cta h2 {
        font-size: 1.5rem; /* Smaller font size for mobile */
        margin-bottom: 15px; /* Reduced margin for mobile */
    }

    .IndexPageSection-cta p {
        font-size: 1rem; /* Smaller font size for mobile */
        margin-bottom: 15px; /* Reduced margin for mobile */
    }

    .IndexPageSection-cta .cta-button {
        padding: 8px 16px; /* Slightly smaller button for mobile */
        font-size: 0.9rem; /* Smaller font size for mobile */
    }

    /* Content Card Image */
    .content-card-image {
        max-width: 80px; /* Smaller image for mobile */
        margin-bottom: 15px; /* Reduced margin for mobile */
    }
}

/***********************************************************************/
/**************          Stock Folder Css            *******************/
/***********************************************************************/

/* 🔹 Global Styling */
.StockIndexPage {
    font-family: 'Inter', sans-serif;
    color: #333;
    padding: 20px;
}

/* 🔹 Hero Section */
.StockIndexPage-Hero {
    text-align: center;
    padding: 40px 20px;
    background: #3baa96;
    color: white;
    border-radius: 10px;
}

.StockIndexPage-Hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.StockIndexPage-Hero p {
    font-size: 18px;
}

/* 🔹 Study Modules Grid */
.StockIndexPage-Section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.StockIndexPage-Container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    width: 100%;
}

/* 🔹 Study Module Cards */
.StockIndexPage-Module {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border-bottom: 4px solid #3baa96;
}

.StockIndexPage-Module:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 🔹 Icons */
.StockIndexPage-Module .icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ffa016;
}

.StockIndexPage-Module h3 {
    font-size: 18px;
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .StockIndexPage-Hero {
        padding: 30px 15px;
    }

    .StockIndexPage-Hero h1 {
        font-size: 24px;
    }

    .StockIndexPage-Hero p {
        font-size: 16px;
    }

    .StockIndexPage-Container {
        grid-template-columns: 1fr; /* Single-column layout on small screens */
    }

    .StockIndexPage-Module {
        padding: 15px;
        font-size: 16px;
    }

    .StockIndexPage-Module .icon {
        font-size: 30px;
    }
}
/* Stocks INside Pages */
/* 🔹 Breadcrumb */
.StockPagesSection-Breadcrumb {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    margin: 20px;
    background: #3baa96;
    color: #ffa016;
    padding: 5px;
    border-radius: 8px;
}

.StockPagesSection-Breadcrumb a {
    text-decoration: none;
    color: #fff;
}

/* 🔹 Main Layout */
.StockPagesSection-Container {
    display: flex;
    gap: 20px;
}

/* 🔹 Sidebar */
.StockPagesSection-Sidebar {
    width: 250px;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    position: fixed;
    height: auto;
    overflow-y: auto;
}

.StockPagesSection-Sidebar h3 {
    margin-bottom: 10px;
}

.StockPagesSection-Sidebar ul {
    list-style: none;
    padding: 0;
}

.StockPagesSection-Sidebar li {
    margin-bottom: 8px;
}

.StockPagesSection-Sidebar a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px;
    border-radius: 5px;
    transition: 0.3s;
}

.StockPagesSection-Sidebar a:hover {
    background: #3baa96;
    color: white;
}

/* 🔹 Content Section */
.StockPagesSection-Content {
    flex: 1;
    margin-left: 270px;
    padding: 20px;
}
.StockPagesSection-Content p {
    line-height: 1.5;
}
.StockPagesSection-Section {
    display: none;
}
.StockPagesSection-Image img {
    width: 650px;
    height: auto;
    border-radius: 8px;
}
.StockPagesSection-Image-Info img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.StockPagesSection-Image-For-Info img {
    width: 200px;
    height: auto;
    border-radius: 8px;
}
/* Mobile Optimization */
@media (max-width: 768px) {
    .StockPagesSection-Image img {
        max-width: 100%; /* Adjust width for better fit */
    }
    .StockPagesSection-Image-For-Info img {
        max-width: 50%;
    }
    .StockPagesSection-Image-Info img {
        max-width: 100%;
    }
}
.StockPagesSection-Section.active {
    display: block;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
    .StockPagesSection-Container {
        flex-direction: column;
    }

    .StockPagesSection-Sidebar {
        position: static;
        width: 100%;
        height: auto;
    }

    .StockPagesSection-Content {
        margin-left: 0;
    }
}
.example {
    border-left: 3px solid #3baa96;
    background: #f2f2f2;
    padding: 10px;
    font-weight: 500;
    font-style: italic;
}
.example span {
    color: #3baa96;
    font-weight: 700;
}

.example2 {
    border-left: 3px solid #3baa96;
    background: #fff;
    padding: 10px;
    font-style: italic;
}
.example2 span {
    color: #333;
    font-weight: 600;
}


.highlight {
    box-shadow: 3px 3px #3baa96;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
}
.highlight2 {
    box-shadow: 3px 3px #3baa96;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
    background: #fff;
    margin-bottom: 20px;
}
/* Base styles for the list */
.StockPagesSection-List-Info {
    list-style: none;
    padding: 0;
    max-width: auto; 
    margin: auto;
}

/* Clickable list items */
.StockPagesSection-List-Info li {
    background: #3baa96;
    color: #fff;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.StockPagesSection-List-Info li:hover {
    background: #7fb0a7;
    color: #333;
}

/* When expanded, change the entire box to light gray */
.StockPagesSection-List-Info li.active {
    background: #f2f2f2;
    color: #333;
}

/* Arrow indicator */
.StockPagesSection-List-Info li::after {
    content: "▼";
    font-size: 14px;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease-in-out;
}

/* Rotate arrow when active */
.StockPagesSection-List-Info li.active::after {
    transform: rotate(180deg);
}

/* Hidden content (expands on click) */
.StockPagesSection-List-Info .details {
    display: none;
    background: #f2f2f2;  /* Light grey background */
    color: #333;
    padding: 15px;
    border-radius: 8px;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
    border: 2px solid #3baa96;  /* Green border */
    text-align: left;
    margin-top: 10px;
}

/* When expanded, details should fully merge with the heading */
.StockPagesSection-List-Info li.active .details {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .StockPagesSection-List-Info li {
        font-size: 14px;
        padding: 12px 15px;
    }

    .StockPagesSection-List-Info .details {
        font-size: 13px;
        padding: 10px;
    }
}



.StockPagesSection-InfoBoxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.StockPagesSection-InfoBox {
    width: 100%;
    background: #f2f2f2; /* Light background */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.StockPagesSection-InfoBox h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #3baa96; /* Blue heading color */
}

.StockPagesSection-InfoBox p {
    font-size: 1em;
    color: #333;
}
.StockPagesSection-InfoBox ul {
    text-align: left;
    line-height: 1.5;
    background: #fff;
    border-radius: 12px;
}
/* Hover effect */
.StockPagesSection-InfoBox:hover {
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .StockPagesSection-InfoBoxes {
        flex-direction: column;
        gap: 15px;
    }

    .StockPagesSection-InfoBox {
        max-width: 90%; /* Full width on small screens */
    }
    .StockPagesSection-InfoBox p {
        text-align: left;
    }
}
/* Hide dropdown toggle (▼) on desktop */
@media screen and (min-width: 769px) {
    .dropdown-toggle {
        display: none;
    }
}

/* Show dropdown toggle (▼) inline on mobile */
@media screen and (max-width: 768px) {
    .dropdown-toggle {
        display: inline;
        font-size: 14px;
        padding-left: 5px; /* Add some spacing */
    }
}

/* Styling for the StockPagesSection-Elabo div */
.StockPagesSection-Elabo {
    background-color: #f2f2f2; /* Light background for readability */
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    color: #333;
}

/* Heading Styles */
.StockPagesSection-Elabo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.StockPagesSection-Elabo h3 {
    font-size: 1.5rem;
    color: #3baa96; /* Darker shade of blue */
    margin-top: 15px;
}

/* Paragraph Styles */
.StockPagesSection-Elabo p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #444;
}
.StockPagesSection-Elabo pre {
    background: #fff;
    font-size: 16px;
}
/* Unordered List Styles */
.StockPagesSection-Elabo ul {
    list-style: none;
    padding: 0;
    background: #fff;
    border-radius: 8px;
}

.StockPagesSection-Elabo ul li {
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

/* Custom Bullet Points */
.StockPagesSection-Elabo ul li::before {
    content: "✔️"; /* Green check emoji */
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    .StockPagesSection-Elabo {
        padding: 15px;
        margin: 15px 0;
    }

    .StockPagesSection-Elabo h2 {
        font-size: 1.5rem;
    }

    .StockPagesSection-Elabo h3 {
        font-size: 1.3rem;
    }

    .StockPagesSection-Elabo p, 
    .StockPagesSection-Elabo ul li {
        font-size: 0.95rem;
    }
}
/* Styling for the StockPagesSection-Elabo2 div */
.StockPagesSection-Elabo2 {
    background-color: #fff; /* Light background for readability */
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    color: #333;
}

/* Heading Styles */
.StockPagesSection-Elabo2 h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.StockPagesSection-Elabo2 h3 {
    font-size: 1.5rem;
    color: #3baa96; /* Darker shade of blue */
    margin-top: 15px;
}

/* Paragraph Styles */
.StockPagesSection-Elabo2 p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #444;
}
.StockPagesSection-Elabo2 pre {
    background: #f2f2f2;
    font-size: 16px;
}
/* Unordered List Styles */
.StockPagesSection-Elabo2 ul {
    list-style: none;
    padding: 0;
    background: #f2f2f2;
    border-radius: 8px;
}

.StockPagesSection-Elabo2 ul li {
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

/* Custom Bullet Points */
.StockPagesSection-Elabo2 ul li::before {
    content: "✅"; /* Green check emoji */
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    .StockPagesSection-Elabo2 {
        padding: 15px;
        margin: 15px 0;
    }

    .StockPagesSection-Elabo2 h2 {
        font-size: 1.5rem;
    }

    .StockPagesSection-Elabo2 h3 {
        font-size: 1.3rem;
    }

    .StockPagesSection-Elabo2 p, 
    .StockPagesSection-Elabo2 ul li {
        font-size: 0.95rem;
    }
}
/***********************************************************************************/
/************************Calculators Index Page CSS START***************************/
/***********************************************************************************/
/* ====== Calculators Hub Page Styling ====== */

.CalcIndexPage {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafc;
    padding: 40px 20px;
    color: #333;
}

/* Page Title */
.CalcIndexPage-Title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a202c;
}

/* Page Description */
.CalcIndexPage-Subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

/* Calculator Cards Container */
.CalcIndexPage-Container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

/* Card Item */
.CalcIndexPage-Card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    padding: 25px 30px;
    margin: 15px;
    min-width: 280px;
    max-width: 320px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
}

/* Hover effect */
.CalcIndexPage-Card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

/* Link Styling */
.CalcIndexPage-Link {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3baa96;
    display: block;
}

/* Hover effect for link */
.CalcIndexPage-Link:hover {
    text-decoration: underline;
}

/* Image inside the card */
.CalcIndexPage-Image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Optional: subtle zoom on hover */
.CalcIndexPage-Link:hover .CalcIndexPage-Image {
    transform: scale(1.03);
}


/* ====== Mobile Responsive ====== */
@media screen and (max-width: 768px) {
    .CalcIndexPage {
        padding: 30px 15px;
    }

    .CalcIndexPage-Title {
        font-size: 2rem;
    }

    .CalcIndexPage-Subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .CalcIndexPage-Container {
        justify-content: space-between; /* spread evenly */
    }

    .CalcIndexPage-Container > li {
        flex: 0 0 48%;   /* 2 cards per row */
        max-width: 48%;
        margin: 1% 1%;
        box-sizing: border-box;
    }

    .CalcIndexPage-Card {
        min-width: auto; /* cancel desktop fixed width */
        max-width: 100%;
        margin: 10px 0;
        padding: 20px;
    }
}
/***********************************************************************************/
/************************Calculators Index Page CSS END***************************/
/***********************************************************************************/

/***********************************************************************************/
/************************Calculators INSIDE Pages CSS START*************************/
/***********************************************************************************/
/* Base Layout */
.CalcMainPage {
  font-family: 'Inter', sans-serif;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.CalcMainPage-Container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 90%;
}

.CalcMainPage-Title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #2c3e50;
}

/* Form */
.CalcMainPage-Form {
  display: flex;
  flex-direction: column;
}

.CalcMainPage-Label {
  margin-top: 15px;
  font-weight: 600;
  color: #34495e;
}

.CalcMainPage-Input {
  margin-top: 5px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.CalcMainPage-Button {
  margin-top: 25px;
  padding: 14px;
  font-size: 18px;
  background-color: #27ae60;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.CalcMainPage-Button:hover {
  background-color: #1e8449;
}

/* Result Box */
.CalcMainPage-Result {
  margin-top: 30px;
  background-color: #e8f5e9;
  border-left: 5px solid #2ecc71;
  padding: 20px;
  border-radius: 6px;
  color: #2c3e50;
  font-size: 18px;
}

/* Responsive Mobile CSS */
@media (max-width: 768px) {
  .CalcMainPage {
    padding: 20px 10px;
  }

  .CalcMainPage-Container {
    padding: 20px;
  }

  .CalcMainPage-Title {
    font-size: 24px;
  }

  .CalcMainPage-Button {
    font-size: 16px;
    padding: 12px;
  }

  .CalcMainPage-Result {
    font-size: 16px;
  }
}
/***********************************************************************************/
/************************Calculators INSIDE Pages CSS END*************************/
/***********************************************************************************/

/***********************************************************************************/
/************************Calculators BLOG INDEX Page CSS START**********************/
/***********************************************************************************/
/* blog/blog.css - BlogIndexPage Styles - Mobile First */
.BlogIndexPage-Container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: 'Inter', sans-serif;
  color: #222;
}

.BlogIndexPage-Title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: left;
  color: #007acc;
}

.BlogIndexPage-Description {
  font-size: 1.15rem;
  color: #555;
  margin: 0;
  margin-bottom: 10px;
  text-align: left;
  padding: 10px;
  line-height: 1.5;
}

.BlogIndexPage-PostList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.BlogIndexPage-PostItem {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  transition: background-color 0.2s ease;
}

.BlogIndexPage-PostItem:hover {
  background-color: #f0f8ff;
}

.BlogIndexPage-PostTitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #007acc;
  text-decoration: none;
}

.BlogIndexPage-PostTitle:hover,
.BlogIndexPage-PostTitle:focus {
  text-decoration: underline;
}

.BlogIndexPage-PostMeta {
  font-size: 0.9rem;
  color: #888;
  margin: 0.3rem 0 0.7rem 0;
}

.BlogIndexPage-PostDescription {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

/* Pagination placeholder */
.BlogIndexPage-Pagination {
  margin-top: 3rem;
  text-align: center;
}

.BlogIndexPage-Pagination a {
  color: #3baa96;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
}

.BlogIndexPage-Pagination a:hover {
  text-decoration: underline;
}

/* Responsive Typography & Spacing */
@media screen and (min-width: 768px) {
  .BlogIndexPage-Title {
    font-size: 3rem;
  }
  .BlogIndexPage-PostTitle {
    font-size: 1.5rem;
  }
  .BlogIndexPage-PostDescription {
    font-size: 1.1rem;
  }
}

/***********************************************************************************/
/************************Calculators BLOG INDEX Page CSS END**********************/
/***********************************************************************************/

/***********************************************************************************/
/************************Calculators BLOG POST Page CSS START**********************/
/***********************************************************************************/
/* BlogPostPage Styles */
.BlogPostPage-Container {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}

.BlogPostPage-Article {
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  padding: 30px 40px;
  border-radius: 8px;
  background-color: #fafafa;
}
.BlogPostPage-Header {
  display: block;
}
.BlogPostPage-Title {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0 0 10px 0;   /* margin-bottom: 10px; reset others to 0 */
  color: #0d47a1; /* Deep blue */
  line-height: 1.2;
  display: block; /* ensures block behavior */
}

.BlogPostPage-Date {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 30px 0;  /* margin-bottom: 30px; reset others to 0 */
  font-style: italic;
  display: block; /* ensures it sits on a new line */
}

.BlogPostPage-Image {
  margin: 0 0 30px 0;
  text-align: center;
}

.BlogPostPage-Image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.BlogPostPage-Image figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
}

.BlogPostPage-Content h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #1565c0; /* Slightly lighter blue */
  border-bottom: 2px solid #1565c0;
  padding-bottom: 4px;
}

.BlogPostPage-Content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.BlogPostPage-Content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: #333;
}

.BlogPostPage-Content ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.BlogPostPage-Content strong {
  color: #0d47a1;
}

/* Responsive mobile styles */
@media (max-width: 768px) {
  .BlogPostPage-Container {
    margin: 20px auto 40px;
    padding: 0 15px;
  }

  .BlogPostPage-Article {
    padding: 20px 25px;
  }

  .BlogPostPage-Title {
    font-size: 2rem;
  }

  .BlogPostPage-Date {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .BlogPostPage-Content h2 {
    font-size: 1.5rem;
  }

  .BlogPostPage-Content p,
  .BlogPostPage-Content ul li {
    font-size: 1rem;
  }
}


/* Desktop styles */
.CalcMainPage-Wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.CalcMainPage-Container {
  flex: 1;
}

.CalcMainPage-History {
  width: 320px;
  border: 1px solid #ccc;
  padding: 1rem;
  font-size: 0.9rem;
  background: #f9f9f9;
  max-height: 500px;
  overflow-y: auto;
  display: none; /* Initially hidden */
}

.CalcMainPage-History h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.CalcMainPage-History ul {
  list-style: none;
  padding-left: 0;
}

.CalcMainPage-History li {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .CalcMainPage-Wrapper {
    flex-direction: column;
  }
  .CalcMainPage-History {
    width: 100%;
    max-height: 300px;
    margin-top: 1rem;
    padding: 0.75rem;
  }
  .CalcMainPage-History li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

/***********************************************************************************/
/***********************Calculators BLOG POST Page CSS END************************/
/***********************************************************************************/

/***********************************************************************************/
/***********************Calculators Main Page HERO CSS START************************/
/***********************************************************************************/
.CalcHeroSection {
  background-color: #f5f8fa;
  text-align: center;
}

.CalcHeroSection-Container {
  max-width: 1200px;
  margin: 0 auto;
}

.CalcHeroSection-Title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.CalcHeroSection-Subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-top: 0;
}

/* Intro Section */

.CalcIntroSection {
  margin: 20px;
  padding: 0;
}

.CalcIntroSection-Text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

/* Responsive for screens 768px and below */

@media (max-width: 768px) {
  .CalcHeroSection {
    padding: 30px 15px;
  }

  .CalcHeroSection-Title {
    font-size: 1.8rem;
  }

  .CalcHeroSection-Subtitle {
    font-size: 1rem;
  }

  .CalcIntroSection {
    max-width: 90%;
    margin: 20px auto 40px;
  }

  .CalcIntroSection-Text {
    font-size: 0.95rem;
  }
}
/***********************************************************************************/
/***********************Calculators Main Page HERO CSS END************************/
/***********************************************************************************/

/***********************************************************************************/
/***********************Calculators Info DIV CSS START******************************/
/***********************************************************************************/
/* ====== Main Styles for CalcMainPage-Info ====== */

.CalcMainPage-Info {
  color: #2c3e50;
  line-height: 1.6;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  background-color: #f9f9f9;
}

.CalcMainPage-Info h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #3aaa96;
  padding-bottom: 5px;
}

.CalcMainPage-Info h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-top: 25px;
  margin-bottom: 10px;
}

.CalcMainPage-Info p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #34495e;
}

.CalcMainPage-Info ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.CalcMainPage-Info ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

/* Highlight strong elements inside paragraphs */
.CalcMainPage-Info p strong {
  color: #000;
  font-weight: 600;
}

/* ====== Mobile Responsive Styles ====== */

@media screen and (max-width: 768px) {
  .CalcMainPage-Info {
    padding: 15px;
  }

  .CalcMainPage-Info h2 {
    font-size: 22px;
    margin-top: 30px;
  }

  .CalcMainPage-Info h3 {
    font-size: 18px;
  }

  .CalcMainPage-Info p,
  .CalcMainPage-Info ul li {
    font-size: 15px;
  }
}
/* ====== Base Style for Buttons ====== */
.CalcMainPage-Info-BTN {
  display: inline-block;
  background-color: #3aaa96;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ====== Hover Effect ====== */
.CalcMainPage-Info-BTN:hover {
  background-color: #327a6e;
  transform: translateY(-2px);
}

/* ====== Focus Effect ====== */
.CalcMainPage-Info-BTN:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.4);
}

/* ====== Disabled State ====== */
.CalcMainPage-Info-BTN:disabled {
  background-color: #bdc3c7;
  cursor: not-allowed;
  box-shadow: none;
}

/* ====== Mobile Responsive Style ====== */
@media screen and (max-width: 768px) {
  .CalcMainPage-Info-BTN {
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
  }
}

/***********************************************************************************/
/***********************Calculators Info DIV CSS END******************************/
/***********************************************************************************/

/***********************************************************************************/
/***********************NEWS INDEX PAGE START***************************************/
/***********************************************************************************/
/* ===== Post Index Page (Desktop) ===== */
.PostIndexPage-Container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  align-items: flex-start; /* Ensures sidebar aligns with top of main content */
}

.PostIndexPage-Title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #222;
}

.PostIndexPage-Grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.PostIndexPage-Card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.PostIndexPage-Card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.PostIndexPage-Card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.PostIndexPage-Image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.PostIndexPage-CardTitle {
  font-size: 1rem;
  font-weight: 600;
  padding: 5px;
  margin: 0;
  color: #333;
}

.PostIndexPage-CardTitle:hover {
  color: #3aaa96;
}

.PostIndexPage-Meta {
  font-size: 0.85rem;
  padding: 5px;
  margin: 0;
  color: #888;
}

/* ===== Pagination (unchanged) ===== */
.PostIndexPage-Pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}
.PostIndexPage-Pagination li {
  list-style: none;
  display: inline-block;
}

.PostIndexPage-Pagination .page-link {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.PostIndexPage-Pagination .page-link:hover {
  background-color: #f2f2f2;
}

.PostIndexPage-Pagination .active .page-link {
  background-color: #3aaa96;
  color: white;
  border-color: #3aaa96;
}

/* ===== Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {
  .PostIndexPage-Container {
    padding: 0;
  }
  .PostIndexPage-Pagination .pagination {
      display: contents;
  }

  .PostIndexPage-Grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .PostIndexPage-Card {
    width: auto;
    margin: 10px;
  }

  .PostIndexPage-Image {
    height: auto;
  }

  .PostIndexPage-CardTitle {
    font-size: 1rem;
  }

  .PostIndexPage-Meta {
    font-size: 0.75rem;
  }


  .PostIndexPage-Pagination .page-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.875rem;
  }
}
/***********************************************************************************/
/***********************NEWS INDEX PAGE END***************************************/
/***********************************************************************************/

/***********************************************************************************/
/***********************NEWS MAIN PAGE START***************************************/
/***********************************************************************************/
/* ============================
   PostMainPage - Desktop
============================ */
.PostMainPage-Container {
  max-width: 850px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  line-height: 1.75;
}

.PostMainPage-Title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.PostMainPage-Meta {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.PostMainPage-Image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}

.PostMainPage-Content {
  font-size: 1.08rem;
  color: #333;
}

.PostMainPage-Content h2,
.PostMainPage-Content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #111;
}

.PostMainPage-Content p {
  margin-bottom: 20px;
}

.PostMainPage-Content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.PostMainPage-Content ul li {
  margin-bottom: 10px;
}

/* ============================
   PostMainPage - Mobile
============================ */
@media (max-width: 768px) {
  .PostMainPage-Container {
    margin: 20px 15px;
    padding: 20px;
  }

  .PostMainPage-Title {
    font-size: 1.5rem;
  }

  .PostMainPage-Image {
    border-radius: 6px;
  }

  .PostMainPage-Content {
    font-size: 1rem;
  }
}
/***********************************************************************************/
/***********************NEWS MAIN PAGE END***************************************/
/***********************************************************************************/


/*******************************************************************************/
/* =============================
   Breadcrumb Styling
============================= */
.PostMainPage-Breadcrumb {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.PostMainPage-Breadcrumb a {
  color: #3aaa96;
  text-decoration: none;
  transition: color 0.2s ease;
}

.PostMainPage-Breadcrumb a:hover {
  color: #27665b;
  text-decoration: underline;
}

/* Mobile Breadcrumb */
@media (max-width: 768px) {
  .PostMainPage-Breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}
/*******************************************************************************/

/***********************************************************************************/
/***********************MAIN INDEX SECTION 1 START**********************************/
/***********************************************************************************/
/* ===== Latest News Section (Index Page) ===== */
.IndexPageSection {
  padding: 20px;
  background-color: #f9f9f9;
}

.IndexPageSection-Container {
  max-width: 1200px;
  margin: 0 auto;
}

.IndexPageSection-Heading {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
  color: #000000;
}

.IndexPageSection-Grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.IndexPageSection-Card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.IndexPageSection-Card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.IndexPageSection-Link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.IndexPageSection-Image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.IndexPageSection-Title {
  font-size: 1rem;              /* keep text size consistent */
  font-weight: 600;
  line-height: 1.4;
  min-height: 3em;              /* force same height (≈2 lines) */
  overflow: hidden;             /* prevent pushing card bigger */
  text-overflow: ellipsis;      /* add "..." if too long */
  display: -webkit-box;         /* multiline ellipsis */
  -webkit-line-clamp: 2;        /* limit to 2 lines */
  -webkit-box-orient: vertical;
  margin: 0;
  padding: 1px;
}

.IndexPageSection-Date {
  font-size: 0.85rem;
  padding: 5px;
  margin: 0;
  color: #888;
}

/* ===== Mobile (max-width: 768px) ===== */
@media screen and (max-width: 768px) {
        .IndexPageSection-Container {
            padding: 0;
        }
    .IndexPageSection-Card {
        width: 100%!important;
    }
  .IndexPageSection-Grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .IndexPageSection-Image {
    height: 100%;
  }

  .IndexPageSection-Title {
    font-size: 1rem;
  }

  .IndexPageSection-Date {
    font-size: 0.75rem;
  }
}
/***********************************************************************************/
/***********************MAIN INDEX SECTION 1 END************************************/
/***********************************************************************************/

/***********************************************************************************/
/***********************MAIN SECTION of LEGENDS PAGE START**************************/
/***********************************************************************************/

/* General container */
.LeMainPageSection {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    font-family: 'Inter', sans-serif;
}

.LeMainPageSection-Container {
    display: block;
}

.LeMainPageSection-Content {
    position: relative;
    font-size: 1rem;
    color: #333;
}

/* Image and Credit Container */
.LeMainPageSection-ImageContainer {
    float: left;
    width: 300px;
    margin: 0 25px 20px 0;
}

.LeMainPageSection-ImageContainer img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.LeMainPageSection-ImageCredit {
    font-size: 0.75rem;
    color: #666;
    margin-top: 6px;
    line-height: 1.4;
}

/* Old image float class - no longer used but kept for reference or future */
.LeMainPageSection-ImageFloat {
    display: none;
}

.LeMainPageSection-Title {
    font-size: 2.2rem;
    color: #222;
    margin-top: 0;
}

.LeMainPageSection-Subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.LeMainPageSection-Content p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.LeMainPageSection-Content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 6px;
}

.list-style-one {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.list-style-one li {
    margin-bottom: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .LeMainPageSection-ImageContainer {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .LeMainPageSection-Title {
        font-size: 1.8rem;
    }

    .LeMainPageSection-Subtitle {
        font-size: 1rem;
    }

    .LeMainPageSection-Content h2 {
        font-size: 1.3rem;
    }
}

/***********************************************************************************/
/***********************MAIN SECTION of LEGENDS PAGE END****************************/
/***********************************************************************************/

/***********************************************************************************/
/***********************MAIN INDEX of BLOGS PAGE START******************************/
/***********************************************************************************/
/* === BLOG INDEX PAGE === */
.BlogIndexPage-Container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}
.BlogIndexPage-Container h2 {
  color: #000000;
}
.BlogIndexPage-Container h3 {
      margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #000000;
}
.BlogIndexPage-Container p {
    color: #000000;
}
.BlogIndexPage-Container .list-style-one {
    color: #000000;
}
.BlogIndexPage-Main {
  flex: 0 0 70%;
}

.BlogIndexPage-Sidebar {
  flex: 0 0 28%;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

.BlogIndexPage-Title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.BlogIndexPage-Grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.BlogIndexPage-Card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.BlogIndexPage-Card:hover {
  transform: translateY(-5px);
}

.BlogIndexPage-Image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.BlogIndexPage-CardTitle {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px;
  margin: 0;
  color: #111;
  text-decoration: none;
}

.BlogIndexPage-CardTitle:hover {
  color: #3baa96;
}

.BlogIndexPage-Meta {
  font-size: 0.9rem;
  color: #666;
  padding: 10px;
  margin: 0;
}

.BlogIndexPage-Pagination {
  margin-top: 40px;
  text-align: center;
}

.BlogIndexPage-Pagination .pagination {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.BlogIndexPage-Pagination ul li::before {
  display: none;
}

.BlogIndexPage-Pagination ul li {
    padding-left: 0!important;
}

.BlogIndexPage-Pagination .page-item {
  display: inline-block;
}

.BlogIndexPage-Pagination .page-link {
  padding: 8px 16px;
  background-color: #f2f2f2;
  color: #333;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.BlogIndexPage-Pagination .page-item.active .page-link,
.BlogIndexPage-Pagination .page-link:hover {
  background-color: #3baa96;
  color: #fff;
}

/* === SIDEBAR STYLES === */
.BlogIndexPage-SidebarTitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

.BlogIndexPage-SidebarList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.BlogIndexPage-SidebarList li {
  margin-bottom: 10px;
}

.BlogIndexPage-SidebarList a {
  color: #0077cc;
  text-decoration: none;
}

.BlogIndexPage-SidebarList a:hover {
  text-decoration: underline;
}

/* === MOBILE RESPONSIVE (≤768px) === */
@media (max-width: 768px) {
  .BlogIndexPage-Container {
    flex-direction: column;
    padding: 20px 15px;
  }

  .BlogIndexPage-Main,
  .BlogIndexPage-Sidebar {
    flex: 0 0 100%;
  }

  .BlogIndexPage-Title {
    font-size: 1.8rem;
    text-align: left;
    margin: 0;
  }

  .BlogIndexPage-CardTitle,
  .BlogIndexPage-Meta {
    text-align: left;
    margin: 0;
  }

  .BlogIndexPage-Sidebar {
    margin-top: 40px;
  }
}
/***********************************************************************************/
/***********************MAIN INDEX of BLOGS PAGE END******************************/
/***********************************************************************************/

/***********************************************************************************/
/***********************MAIN POST of BLOGS PAGE START******************************/
/***********************************************************************************/
/* === BLOG POST LAYOUT === */
.BlogMainPage-Wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.BlogMainPage-Main {
  flex: 0 0 70%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.BlogMainPage-Sidebar {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  height: fit-content;
}

.BlogMainPage-SidebarTitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

.BlogMainPage-SidebarList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.BlogMainPage-SidebarList li {
  margin-bottom: 10px;
}

.BlogMainPage-SidebarList a {
  color: #0077cc;
  text-decoration: none;
}

.BlogMainPage-SidebarList a:hover {
  text-decoration: underline;
}

/* === Post Main Styling (from before) === */
.BlogMainPage-Breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.BlogMainPage-Breadcrumb a {
  color: #0077cc;
  text-decoration: none;
}

.BlogMainPage-Breadcrumb a:hover {
  text-decoration: underline;
}

.BlogMainPage-Title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.3;
}

.BlogMainPage-Meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
}

.BlogMainPage-Image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0;
}

.BlogMainPage-Content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
}

.BlogMainPage-Content h2,
.BlogMainPage-Content h3 {
  margin-top: 30px;
  color: #111;
  font-weight: 600;
}

.BlogMainPage-Content p {
  margin-bottom: 20px;
}

.BlogMainPage-Content ul.list-style-one {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 20px;
}

.BlogMainPage-Content ul.list-style-one li {
  margin-bottom: 10px;
}

/* === MOBILE: ≤768px === */
@media (max-width: 768px) {
  .BlogMainPage-Wrapper {
    flex-direction: column;
    padding: 20px 15px;
  }

  .BlogMainPage-Main,
  .BlogMainPage-Sidebar {
    flex: 0 0 100%;
  }

  .BlogMainPage-Title {
    font-size: 1.8rem;
    text-align: left;
  }

  .BlogMainPage-Meta {
    text-align: left;
    font-size: 0.9rem;
  }

  .BlogMainPage-Sidebar {
    margin-top: 40px;
  }

  .BlogMainPage-Content {
    font-size: 1rem;
  }
}
/* Desktop & Default Styles */
.Sidebar-LinkWithImage {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 12px;
  gap: 10px;
  color: #333;
}

.Sidebar-Thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.Sidebar-PostTitle {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #3baa96;
}
.Sidebar-PostTitle:hover {
    color: #2c695e;
}
/* Mobile Responsive (max-width: 768px) */
@media (max-width: 768px) {
  .Sidebar-LinkWithImage {
    gap: 8px;
    margin-bottom: 10px;
  }

  .Sidebar-Thumbnail {
    width: 48px;
    height: 48px;
  }

  .Sidebar-PostTitle {
    font-size: 13px;
  }
}
/***********************************************************************************/
/***********************MAIN POST of BLOGS PAGE END******************************/
/***********************************************************************************/

.news-article-images {
    margin: 30px 0;
    border-radius: 8px;
    width: 100%;
}
/***********************************************************************************/
.disclaimer {
    margin-top: 30px;
    font-size: 12px;
    color: #b0b0b0;
}
/***********************************************************************************/
/* ===== News Index Page (Desktop) ===== */
.NewsIndexPage-Container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Main Content */
.NewsIndexPage-Main {
  flex: 1 1 70%;
  max-width: 800px;
}

.NewsIndexPage-Title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: left;
  color: #222;
}

.NewsIndexPage-Grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.NewsIndexPage-Card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: grid;
}

.NewsIndexPage-Card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.NewsIndexPage-Card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.NewsIndexPage-Image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.NewsIndexPage-CardTitle {
  font-size: 1rem;
  font-weight: 600;
  padding: 5px;
  margin: 0;
  color: #333;
}

.NewsIndexPage-CardTitle:hover {
  color: #3aaa96;
}

.NewsIndexPage-Meta {
  font-size: 0.85rem;
  padding: 5px;
  margin: 0;
  color: #888;
  display: block;
}

/* ===== Sidebar ===== */
.NewsIndexPage-Sidebar {
  flex: 0 0 28%;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

.NewsIndexPage-SidebarTitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.NewsIndexPage-SidebarItem {
  margin-bottom: 15px;
}

.NewsIndexPage-SidebarItem a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.NewsIndexPage-SidebarThumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.NewsIndexPage-SidebarPostTitle {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3baa96;
  transition: color 0.2s;
}

.NewsIndexPage-SidebarPostTitle:hover {
  text-decoration: none;
  color: #2c695e;
}

/* ===== Pagination ===== */
.NewsIndexPage-Pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.NewsIndexPage-Pagination li {
  list-style: none;
  display: inline-block;
  padding-left: 0!important;
}

.NewsIndexPage-Pagination ul li::before {
    display: none;    
}

.NewsIndexPage-Pagination .page-link {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.NewsIndexPage-Pagination .page-link:hover {
  background-color: #f2f2f2;
}

.NewsIndexPage-Pagination .active .page-link {
  background-color: #3aaa96;
  color: white;
  border-color: #3aaa96;
}

/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {
  .NewsIndexPage-Container {
    flex-direction: column;
    padding: 20px 15px;
  }

  .NewsIndexPage-Main,
  .NewsIndexPage-Sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .NewsIndexPage-Sidebar {
    margin-top: 30px;
  }

  .NewsIndexPage-Grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .NewsIndexPage-CardTitle {
    font-size: 1rem;
  }

  .NewsIndexPage-Meta {
    font-size: 0.75rem;
  }

  .NewsIndexPage-Pagination .page-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.875rem;
  }
  .NewsIndexPage-Pagination .pagination {
      display: block;
  }
}
/***********************************************************************************/
.BlogIndexPage-NavHeading {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 600;
  text-align: center;
}

.BlogIndexPage-NavLinks {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
  gap: 20px;
}

.BlogIndexPage-Prev, 
.BlogIndexPage-Next {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48%;
  text-align: center;
  text-decoration: none;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.BlogIndexPage-Prev:hover, 
.BlogIndexPage-Next:hover {
  background: #d3e6e2;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.NavLabel {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.NavLink-Thumbnail {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.NavTitle {
  font-size: 16px;
  font-weight: bold;
  color: #3baa96;
  line-height: 1.3;
}

.NavTitle:hover {
  text-decoration: none;
}

/* Mobile responsive - keep side-by-side but scaled */
@media screen and (max-width: 768px) {
  .BlogIndexPage-NavLinks {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }

  .BlogIndexPage-Prev, 
  .BlogIndexPage-Next {
    width: 48%;
    margin-bottom: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .BlogIndexPage-Prev img, 
  .BlogIndexPage-Next img {
    width: 100%;
    height: auto;
    max-height: 100px;
    border-radius: 6px;
    object-fit: cover;
  }

  .NavTitle {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-top: 5px;
  }

  .NavLabel {
    font-size: 0.75rem;
  }
}
/*************************************************************************************************************/
/* === Unique News Navigation Styles === */

.NewsNav-Heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 40px 0 20px;
  text-align: center;
  color: #1a1a1a;
}

.NewsNav-Wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.NewsNav-Card {
  flex: 1;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.NewsNav-Card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.NewsNav-Label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

.NewsNav-Image {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.NewsNav-Title {
  font-size: 1rem;
  color: #222;
  text-align: center;
  font-weight: 500;
}

.NewsNav-Empty {
  flex: 1;
}

@media (max-width: 768px) {
  .NewsNav-Wrapper {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .NewsNav-Card {
    max-width: 48%;
    padding: 8px;
  }

  .NewsNav-Image {
    width: 100%;
    height: auto;
    max-height: 100px;
    border-radius: 6px;
    object-fit: cover;
  }

  .NewsNav-Title {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-top: 5px;
  }

  .NewsNav-Label {
    font-size: 0.75rem;
  }
}
/*********************************************************************************************************/
.image-with-crd {
    background: #f2f2f2;
    font-size: 12px;
    padding: 2px;
    text-align: right;
    font-style: italic;
}
.image-with-crd p {
    margin: 0;
}
/*********************************************************************************************************/
/************************News Page Comments Section START*************************************************/
/*********************************************************************************************************/
/* Comment Section Styles */
.NewsIndexPageComments-Container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.NewsIndexPageComments-Title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.NewsIndexPageComments-CommentsContainer {
    margin-bottom: 2rem;
}

.NewsIndexPageComments-Comment {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
}

.NewsIndexPageComments-CommentHeader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.NewsIndexPageComments-CommentBody {
    line-height: 1.5;
    color: #444;
}

.NewsIndexPageComments-AdminReply {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #dff5f1;
    border-left: 3px solid #3baa96;
    border-radius: 3px;
}

.NewsIndexPageComments-ReplyBody {
    margin-top: 0.25rem;
    color: #333;
}

.NewsIndexPageComments-NoComments {
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 1.5rem;
}

.NewsIndexPageComments-Form {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
}

.NewsIndexPageComments-FormGroup {
    margin-bottom: 1.2rem;
}

.NewsIndexPageComments-Label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.NewsIndexPageComments-Input,
.NewsIndexPageComments-Textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.NewsIndexPageComments-Textarea {
    min-height: 120px;
    resize: vertical;
}

.NewsIndexPageComments-CaptchaContainer {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.NewsIndexPageComments-CaptchaSpan {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 4px;
    margin-right: 0.75rem;
    color: #333;
}

.NewsIndexPageComments-RefreshButton {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.NewsIndexPageComments-SubmitButton {
    background: #3baa96;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.NewsIndexPageComments-SubmitButton:hover {
    background: #2a6b5f;
}

.NewsIndexPageComments-SubmitButton:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.NewsIndexPageComments-Message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
}

.NewsIndexPageComments-Message.info {
    background: #e3f2fd;
    color: #0d47a1;
    border-left: 4px solid #2196f3;
}

.NewsIndexPageComments-Message.success {
    background: #e8f5e9;
    color: #1b5e20;
    border-left: 4px solid #4caf50;
}

.NewsIndexPageComments-Message.error {
    background: #ffebee;
    color: #b71c1c;
    border-left: 4px solid #f44336;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .NewsIndexPageComments-Container {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .NewsIndexPageComments-Title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .NewsIndexPageComments-Form {
        padding: 1.2rem;
    }
    
    .NewsIndexPageComments-Comment {
        padding: 0.8rem;
    }
    
    .NewsIndexPageComments-CommentHeader {
        flex-direction: column;
    }
    
    .NewsIndexPageComments-Input,
    .NewsIndexPageComments-Textarea {
        padding: 0.6rem;
    }
    
    .NewsIndexPageComments-CaptchaSpan {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }
}
/*********************************************************************************************************/
/************************News Page Comments Section END***************************************************/
/*********************************************************************************************************/

/*********************************************************************************************************/
/************************Blogs Page Comments Section START************************************************/
/*********************************************************************************************************/
/* Blog Comment Section Styles */
.BlogIndexPageComment-Container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.BlogIndexPageComment-Title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.BlogIndexPageComment-CommentsContainer {
    margin-bottom: 2rem;
}

.BlogIndexPageComment-Comment {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
}

.BlogIndexPageComment-CommentHeader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.BlogIndexPageComment-CommentBody {
    line-height: 1.5;
    color: #444;
}

.BlogIndexPageComment-AdminReply {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #dff5f1;
    border-left: 3px solid #3baa96;
    border-radius: 3px;
}

.BlogIndexPageComment-ReplyBody {
    margin-top: 0.25rem;
    color: #333;
}

.BlogIndexPageComment-NoComments {
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 1.5rem;
}

.BlogIndexPageComment-Form {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
}

.BlogIndexPageComment-FormGroup {
    margin-bottom: 1.2rem;
}

.BlogIndexPageComment-Label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.BlogIndexPageComment-Input,
.BlogIndexPageComment-Textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.BlogIndexPageComment-Textarea {
    min-height: 120px;
    resize: vertical;
}

.BlogIndexPageComment-CaptchaContainer {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.BlogIndexPageComment-CaptchaSpan {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 4px;
    margin-right: 0.75rem;
    color: #333;
}

.BlogIndexPageComment-RefreshButton {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.BlogIndexPageComment-SubmitButton {
    background: #3baa96;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.BlogIndexPageComment-SubmitButton:hover {
    background: #2a6b5f;
}

.BlogIndexPageComment-SubmitButton:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.BlogIndexPageComment-Message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
}

.BlogIndexPageComment-Message.info {
    background: #e3f2fd;
    color: #0d47a1;
    border-left: 4px solid #2196f3;
}

.BlogIndexPageComment-Message.success {
    background: #e8f5e9;
    color: #1b5e20;
    border-left: 4px solid #4caf50;
}

.BlogIndexPageComment-Message.error {
    background: #ffebee;
    color: #b71c1c;
    border-left: 4px solid #f44336;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .BlogIndexPageComment-Container {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .BlogIndexPageComment-Title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .BlogIndexPageComment-Form {
        padding: 1.2rem;
    }
    
    .BlogIndexPageComment-Comment {
        padding: 0.8rem;
    }
    
    .BlogIndexPageComment-CommentHeader {
        flex-direction: column;
    }
    
    .BlogIndexPageComment-Input,
    .BlogIndexPageComment-Textarea {
        padding: 0.6rem;
    }
    
    .BlogIndexPageComment-CaptchaSpan {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }
    
    .BlogIndexPageComment-SubmitButton {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
/*********************************************************************************************************/
/************************Blogs Page Comments Section END**************************************************/
/*********************************************************************************************************/

/*********************************************************************************************************/
/*********************************************************************************************************/
/*********************************************************************************************************/
/* ===============================
   News Section Layout
   Prefix: IndexPageLatNews
================================= */
.IndexPageLatNews {
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 15px;
}

.IndexPageLatNews-Container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* --- Featured Left --- */
.IndexPageLatNews-Featured {
  background: #f8f9fa;
  align-content: center;
}

.IndexPageLatNews-FeaturedImageWrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.IndexPageLatNews-FeaturedImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.IndexPageLatNews-FeaturedTitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #222;
  padding: 0 10px;
}

.IndexPageLatNews-Date {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  padding: 0 10px;
}

/* --- Side Cards (Right) --- */
.IndexPageLatNews-List {
  display: flex;
  flex-direction: column;
  gap: inherit;
}

.IndexPageLatNews-SideCard {
  display: flex;
  gap: 15px;
  background: #f8f9fa;
}

.IndexPageLatNews-SideImageWrapper {
  flex: 0 0 120px;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
}

.IndexPageLatNews-SideImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.IndexPageLatNews-SideContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.IndexPageLatNews-SideTitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #222;
  padding: 0 10px;
}

/* ===============================
   Responsive (≤768px)
================================= */
@media (max-width: 768px) {
  .IndexPageLatNews-Container {
    grid-template-columns: 1fr;
  }

  .IndexPageLatNews-FeaturedImageWrapper {
    height: auto;
    margin-bottom: 0;
  }

  .IndexPageLatNews-FeaturedTitle {
    font-size: 1rem;
  }

  .IndexPageLatNews-SideCard {
    flex-direction: column;
  }

  .IndexPageLatNews-SideImageWrapper {
    width: 100%;
    height: 180px;
  }
}
/* ===============================
   More News List Section Styles
   Prefix: IndexPageLatNews
================================= */
.IndexPageLatNews-More {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.IndexPageLatNews-MoreHeading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  border-left: 4px solid #3baa96;
  padding-left: 10px;
  color: #222;
  margin-top: 0 !important;
}

.IndexPageLatNews-List {
  list-style: none;
  padding: 0;
  margin: 0;
}

.IndexPageLatNews-ListItem {
  margin-bottom: 10px;
}

.IndexPageLatNews-Link {
  text-decoration: none;
  font-size: 1rem;
  color: #3baa96;
  transition: color 0.3s ease;
}

.IndexPageLatNews-Link:hover {
  color: #3baa96;
  text-decoration: underline;
}

/* ===============================
   Mobile Styles (max-width: 768px)
================================= */
@media (max-width: 768px) {
  .IndexPageLatNews-More {
    padding: 0 10px;
  }

  .IndexPageLatNews-MoreHeading {
    font-size: 1.2rem;
  }

  .IndexPageLatNews-Link {
    font-size: 0.95rem;
  }
}
/* ===============================
   Blog Section Styles
   Prefix: IndexPageBlogs
================================= */
.IndexPageBlogs {
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 15px;
}

.IndexPageBlogs-Heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
  border-left: 4px solid #3baa96;
  padding-left: 10px;
}

.IndexPageBlogs-Container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.IndexPageBlogs-Card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.IndexPageBlogs-Card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.IndexPageBlogs-Link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.IndexPageBlogs-ImageWrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.IndexPageBlogs-Image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.IndexPageBlogs-Card:hover .IndexPageBlogs-Image {
  transform: scale(1.05);
}

.IndexPageBlogs-Content {
  padding: 10px;
}

.IndexPageBlogs-Title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
  line-height: 1.3;
  margin: 0;
}

.IndexPageBlogs-Date {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* ===============================
   Mobile Styles (max-width: 768px)
================================= */
@media (max-width: 768px) {
  .IndexPageBlogs-Container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .IndexPageBlogs-Heading {
    font-size: 1.5rem;         /* Slightly smaller on mobile */
    margin: 30px 10px 20px;
    padding-left: 8px;
    border-left-width: 4px;
  }

  .IndexPageBlogs-ImageWrapper {
    height: 200px;
  }

  .IndexPageBlogs-Title {
    font-size: 1rem;
    margin: 0;
  }

  .IndexPageBlogs-Date {
    font-size: 0.85rem;
    margin: 0;
  }
}
/* ===============================
   Research Reports Section Styles
   Prefix: IndexPageResearch
================================= */
.IndexPageResearch {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.IndexPageResearch-Heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
  border-left: 4px solid #3baa96;
  padding-left: 10px;
}

.IndexPageResearch-Container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.IndexPageResearch-Card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.IndexPageResearch-Card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.IndexPageResearch-Link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.IndexPageResearch-ImageWrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.IndexPageResearch-Image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.IndexPageResearch-Card:hover .IndexPageResearch-Image {
  transform: scale(1.05);
}

.IndexPageResearch-Title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 12px 15px 15px;
  color: #222;
  line-height: 1.3;
}

/* ===============================
   Mobile Styles (max-width: 768px)
================================= */
@media (max-width: 768px) {
  .IndexPageResearch-Container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .IndexPageResearch-ImageWrapper {
    height: 200px;
  }

  .IndexPageResearch-Title {
    font-size: 1.1rem;
  }
}
/*********************************************************************************************************/
/*********************************************************************************************************/
/*********************************************************************************************************/



/*********************************************************************************************************/
/*********************************************************************************************************/
/*********************************************************************************************************/
/* Base wrapper */
.UserAccCs { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.UserAccCs-Container { max-width: 720px; margin: 40px auto; padding: 0 16px; }

/* Card */
.UserAccCs-Card { border:1px solid #eaeaea; border-radius:14px; padding:20px; background:#fff; box-shadow: 0 2px 10px rgba(0,0,0,.03); }

/* Headings */
.UserAccCs-Title { margin:0 0 12px; font-size: 28px; }
.UserAccCs-Sub { color:#555; margin:0 0 18px; }

/* Form */
.UserAccCs-Form label { display:block; font-weight:600; margin:12px 0 6px; }
.UserAccCs-Input { width:auto; padding:12px 14px; border:1px solid #ddd; border-radius:10px; outline:none; }
.UserAccCs-Input:focus { border-color:#888; }

/* Buttons */
.UserAccCs-Row { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.UserAccCs-Button { appearance:none; border:1px solid #3baa96; background:#3baa96; color:#fff; padding:10px 16px; border-radius:10px; cursor:pointer; }
.UserAccCs-Button--Ghost { background:#fff; color:#3baa96; }
.UserAccCs-Button:hover { opacity:.95; }

/* Alerts */
.UserAccCs-Error { background:#fff4f4; border:1px solid #ffd6d6; color:#a60000; padding:10px 12px; border-radius:10px; margin:8px 0; }
.UserAccCs-Success { background:#f5fff4; border:1px solid #d8ffd6; color:#0a7a00; padding:10px 12px; border-radius:10px; margin:8px 0; }

/* Helper links */
.UserAccCs-Links { margin-top:14px; font-size:14px; }
.UserAccCs-Links a { color:#3baa96; text-decoration:none; }
.UserAccCs-Links a:hover { text-decoration:underline; }

/* Mobile ≤768px */
@media (max-width: 768px) {
  .UserAccCs-Container { margin: 24px auto; }
  .UserAccCs-Title { font-size: 24px; }
}
/*********************************************************************************************************/
/*********************************************************************************************************/
/*********************************************************************************************************/


/*********************************************************************************************************/
/*********************************************************************************************************/
/*********************************************************************************************************/
/* =========
   Layout
   ========= */
.StratLayout{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  overflow: visible; /* avoid breaking sticky */
}

@media (max-width: 768px){
  .StratLayout{
    grid-template-columns: 1fr; /* single column on mobile */
    padding: 16px;
  }
    .StratLayout-Content{
    grid-column: 1 / -1;     /* span all columns */
    width: 100%;
    min-width: 0;            /* allow children to shrink */
  }
  .StratView-Title {
      font-size: 28px!important;
  }
}

/* Sidebar (not sticky itself — inner wrapper sticks) */
.StratLayout-Sidebar{
  position: relative;
  align-self: start;
  overflow: visible;
}

/* Inner sticky wrapper for the TOC */
.TOCSticky{
  position: sticky;
  top: 80px;       /* adjust to site header height */
  z-index: 2;
}

@media (max-width: 768px){
  .TOCSticky{
    position: static; /* no sticky on mobile */
    margin-bottom: 12px;
  }
  .TOC {
      position: sticky!important;
  }
  .TOC-Nav ul {
      display: block;
  }
}

/* Back link */
.StratView-Back{
  display: inline-block;
  margin-bottom: 10px;
  color: #3baa96;
  text-decoration: none;
}
.StratView-Back:hover{ text-decoration: underline; }

/* =========
   TOC
   ========= */
.TOC{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px 14px 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  position: fixed;
  width: 260px;
  top: 160px;
  font-size: 15px;
}
.TOC-Title{
  font-weight: 700;
  margin: 0 0 8px;
}
.TOC-Empty{
  font-size: 13px;
  color: #777;
  padding: 6px 0 2px;
}
.TOC-Nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.TOC-Item{ margin: 4px 0; }
.TOC-Item a{
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.TOC-Item a:hover{ background: #e1f0ed; color: #3baa96; }
.TOC-Item a.is-active{
  background: #e1f0ed;
  color: #3baa96;
  font-weight: 600;
}

/* indent h3 under h2 */
.TOC-Item--h3 a{ padding-left: 18px; }

/* =========
   Main card / content
   ========= */
.StratLayout-Content{}
.StratView-Card{
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  padding: 18px 20px;
}
.StratView-Title{ margin: 0 0 6px; font-size: 34px; }
.StratView-Meta{ color: #666; font-size: 14px; margin-bottom: 10px; }
.StratView-Img{
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 8px 0 12px;
}
.StratView-Summary{
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
}

/* Strategy content area */
.StratView-Content h2{
  margin-top: 26px;
  scroll-margin-top: 90px; /* offset for smooth jumps */
}
.StratView-Content h3{
  margin-top: 20px;
  scroll-margin-top: 90px;
  position: relative; /* for pseudo element */
  font-size: 22px;
}

.StratView-Content h3::after{
  content: "";
  display: block;
  width: 5%;                 /* underline length relative to heading width */
  height: 3px;                /* thickness of line */
  background-color: #3baa96;  /* brand green */
  margin-top: 6px;            /* gap below text */
  border-radius: 2px;
  text-align: left;           /* align left */
}
.StratView-Content p{ line-height: 1.7; }
.StratView-Content ul, 
.StratView-Content ol{ padding-left: 20px; }
/*********************************************************************************************************/
/*********************************************************************************************************/
/*********************************************************************************************************/

/****************************************************************************************************************/
/***************************************BlogIndexPage-Container List START***************************************/
/****************************************************************************************************************/
/* Blog page custom UL */
.BlogIndexPage-Container ul {
  margin: 1em 0;
  padding: 0;
  list-style: none; /* remove browser default */
}

.BlogIndexPage-Container ul li {
  position: relative;
  margin: 0.6em 0;
  padding-left: 1.6em;           /* space for bullet */
  font-size: 1rem;
  line-height: 1.6;
  color: #333;                   /* text color */
}

/* Custom bullet (◉ with your brand color #3baa96) */
.BlogIndexPage-Container ul li::before {
  content: "⭲";              
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05em;
  color: #3baa96;                /* brand accent */
  font-weight: bold;
}

/* Sub-lists (nested ULs) */
.BlogIndexPage-Container ul ul {
  margin: 0.4em 0 0.4em 0.5em;
}
.BlogIndexPage-Container ul ul li {
  padding-left: 1.4em;
  font-size: 0.95rem;
}
.BlogIndexPage-Container ul ul li::before {
  font-size: 0.9em;
  opacity: 0.9;
}

/* Responsive refinement */
@media (max-width: 768px) {
  .BlogIndexPage-Container ul li {
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.3em;
  }
  .BlogIndexPage-Container ul li::before {
    top: 0;
    font-size: 1em;
  }
}
/****************************************************************************************************************/
/***************************************BlogIndexPage-Container List END*****************************************/
/****************************************************************************************************************/

/****************************************************************************************************************/
/***************************************NewsIndexPage-Container List START***************************************/
/****************************************************************************************************************/
/* News page custom UL */
.NewsIndexPage-Container ul {
  margin: 1em 0;
  padding: 0;
  list-style: none; /* remove browser default */
}

.NewsIndexPage-Container ul li {
  position: relative;
  margin: 0.6em 0;
  padding-left: 1.6em;           /* space for bullet */
  font-size: 1rem;
  line-height: 1.6;
  color: #333;                   /* text color */
}

/* Custom bullet (arrow ⭲ with brand color #3baa96) */
.NewsIndexPage-Container ul li::before {
  content: "⭲";              
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05em;
  color: #3baa96;                /* brand accent */
  font-weight: bold;
}

/* Sub-lists (nested ULs) */
.NewsIndexPage-Container ul ul {
  margin: 0.4em 0 0.4em 0.5em;
}
.NewsIndexPage-Container ul ul li {
  padding-left: 1.4em;
  font-size: 0.95rem;
}
.NewsIndexPage-Container ul ul li::before {
  font-size: 0.9em;
  opacity: 0.9;
}

/* Responsive refinement */
@media (max-width: 768px) {
  .NewsIndexPage-Container ul li {
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.3em;
  }
  .NewsIndexPage-Container ul li::before {
    top: 0;
    font-size: 1em;
  }
}
/****************************************************************************************************************/
/***************************************NewsIndexPage-Container List END*****************************************/
/****************************************************************************************************************/

/****************************************************************************************************************/
/***************************************LeMainPageSection List START**********************************************/
/****************************************************************************************************************/
/* Main page custom UL */
.LeMainPageSection ul {
  margin: 1em 0;
  padding: 0;
  list-style: none; /* remove browser default */
}

.LeMainPageSection ul li {
  position: relative;
  margin: 0.6em 0;
  padding-left: 1.6em;           /* space for bullet */
  font-size: 1rem;
  line-height: 1.6;
  color: #333;                   /* text color */
}

/* Custom bullet (arrow ⭲ with brand color #3baa96) */
.LeMainPageSection ul li::before {
  content: "⭲";              
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05em;
  color: #3baa96;                /* brand accent */
  font-weight: bold;
}

/* Sub-lists (nested ULs) */
.LeMainPageSection ul ul {
  margin: 0.4em 0 0.4em 0.5em;
}
.LeMainPageSection ul ul li {
  padding-left: 1.4em;
  font-size: 0.95rem;
}
.LeMainPageSection ul ul li::before {
  font-size: 0.9em;
  opacity: 0.9;
}

/* Responsive refinement */
@media (max-width: 768px) {
  .LeMainPageSection ul li {
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.3em;
  }
  .LeMainPageSection ul li::before {
    top: 0;
    font-size: 1em;
  }
}
/****************************************************************************************************************/
/***************************************LeMainPageSection List END************************************************/
/****************************************************************************************************************/

/****************************************************************************************************************/
/***************************************StratLayout-Content List START*******************************************/
/****************************************************************************************************************/
/* Strategy layout custom UL */
.StratLayout-Content ul {
  margin: 1em 0;
  padding: 0;
  list-style: none; /* remove browser default */
}

.StratLayout-Content ul li {
  position: relative;
  margin: 0.6em 0;
  padding-left: 1.6em;           /* space for bullet */
  font-size: 1rem;
  line-height: 1.6;
  color: #333;                   /* text color */
}

/* Custom bullet (arrow ⭲ with brand color #3baa96) */
.StratLayout-Content ul li::before {
  content: "⭲";              
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05em;
  color: #3baa96;                /* brand accent */
  font-weight: bold;
}

/* Sub-lists (nested ULs) */
.StratLayout-Content ul ul {
  margin: 0.4em 0 0.4em 0.5em;
}
.StratLayout-Content ul ul li {
  padding-left: 1.4em;
  font-size: 0.95rem;
}
.StratLayout-Content ul ul li::before {
  font-size: 0.9em;
  opacity: 0.9;
}

/* Responsive refinement */
@media (max-width: 768px) {
  .StratLayout-Content ul li {
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.3em;
  }
  .StratLayout-Content ul li::before {
    top: 0;
    font-size: 1em;
  }
}
/****************************************************************************************************************/
/***************************************StratLayout-Content List END*********************************************/
/****************************************************************************************************************/

/****************************************************************************************************************/
/***************************************StratLayout-Content Table START******************************************/
/****************************************************************************************************************/

.StratLayout-Content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.StratLayout-Content table th,
.StratLayout-Content table td {
  padding: 14px 18px;
  text-align: left;
}

.StratLayout-Content table th {
  background: #f4f8f7; /* light background for header */
  font-weight: 600;
  font-size: 0.95rem;
  color: #2a2a2a;
  letter-spacing: 0.3px;
  border-bottom: 2px solid #e3e7e6;
}

.StratLayout-Content table td {
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.StratLayout-Content table tr:nth-child(even) td {
  background: #fafafa;
}

.StratLayout-Content table tr:hover td {
  background: #e9f5f2; /* subtle hover highlight */
}

.StratLayout-Content table td:first-child {
  font-weight: 500;
  color: #3baa96; /* brand accent for first column */
}

/* Responsive: scroll on smaller screens */
@media (max-width: 768px) {
  .StratLayout-Content table {
    display: block;
    width: auto;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 8px;
  }
  .StratLayout-Content table th,
  .StratLayout-Content table td {
    padding: 12px 14px;
  }
}
/****************************************************************************************************************/
/***************************************StratLayout-Content Table END********************************************/
/****************************************************************************************************************/

/************************************************/
/*********** StratLayout-Content IMG START************/
/************************************************/

.StratLayout-Content img {
  max-width: 100%;     /* responsive */
  height: auto;        /* keep aspect ratio */
  display: block;      /* remove inline gaps */
  margin: 16px 0;      /* spacing around images */
  border-radius: 10px; /* smooth corners */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .StratLayout-Content img {
    margin: 12px 0;    /* tighter spacing on mobile */
    border-radius: 8px;/* slightly smaller rounding */
  }
}

/************************************************/
/*********** StratLayout-Content IMG END************/
/************************************************/

/****************************************************************************************************************/
/********************************************Blog Search Box START***********************************************/
/****************************************************************************************************************/
/* Sidebar Search UI */
.BlogIndexPage-SearchBox{
  display:flex;
  gap:8px;
  align-items:center;
  margin:0 0 16px;
  flex-wrap:wrap;
}
.BlogIndexPage-SearchInput{
  flex:1 1 180px;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:8px;
  outline:none;
}
.BlogIndexPage-SearchInput:focus{
  border-color:#3baa96;
  box-shadow:0 0 0 3px rgba(11,94,215,.15);
}
.BlogIndexPage-SearchBtn{
  padding:10px 14px;
  border:0;
  border-radius:8px;
  background:#3baa96;
  color:#fff;
  cursor:pointer;
  font-weight:600;
}
.BlogIndexPage-SearchBtn:hover{ background:#1a695a; }

/* Optional: visual loading when searching */
.BlogIndexPage-Grid[aria-busy="true"]{
  opacity:.6;
  pointer-events:none;
}

/* 🔹 Mobile Styles (≤768px) */
@media (max-width: 768px) {
  .BlogIndexPage-SearchBox {
    flex-direction: column;
    align-items: stretch;
  }

  .BlogIndexPage-SearchInput {
    width: 100%;
    margin-bottom: 8px;
  }

  .BlogIndexPage-SearchBtn {
    width: 100%;
  }
}
/****************************************************************************************************************/
/********************************************Blog Search Box END*************************************************/
/****************************************************************************************************************/

/****************************************************************************************************************/
/****************************************NEXT PREVIOUS BUTTONS START*********************************************/
/****************************************************************************************************************/
/* Prev / Next wrapper */
.topic-nav-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 28px 0;
}

/* Each nav box fixed width */
.topic-nav {
  display: block;
  width: 200px;            /* fixed width */
  text-decoration: none;
  color: inherit;
  flex: 0 0 200px;         /* keep width fixed */
}

/* Empty slot still occupies width */
.topic-nav.is-empty {
  width: 200px;
  flex: 0 0 200px;
}

/* Box design */
.topic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  height: 100%;            /* ensure equal height */
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  background: #fff;
  box-shadow: 0 6px 18px rgba(11, 22, 29, 0.05);
  transition: transform .14s ease, box-shadow .14s ease;
}

/* label */
.topic-card .topic-label {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  color: #0f1720;
}
.topic-next .topic-label { left: auto; right: 10px; }

/* image */
.topic-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  background: #f6f6f6;
  border: 1px solid #f0f0f0;
  flex: 0 0 auto;
}

/* info section */
.topic-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
}

.topic-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* max 2 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.topic-date {
  font-size: 12px;
  color: #7a8490;
  margin-top: auto;
}

/* hover effect */
.topic-nav:hover .topic-card {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Mobile: keep them side by side but smaller */
@media (max-width: 700px) {
  .topic-nav-wrapper {
    justify-content: space-between;
    gap: 12px;
  }
  .topic-nav, .topic-nav.is-empty {
    width: 48%;
    flex: 0 0 48%;
  }
  .topic-card {
    padding: 8px;
  }
  .topic-thumb {
    height: 80px;
  }
  .topic-title {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
  .topic-date {
    display: none;  /* hide date on small screens */
  }
  .topic-label {
      top: 0!important;
  }
}
/****************************************************************************************************************/
/****************************************NEXT PREVIOUS BUTTONS END***********************************************/
/****************************************************************************************************************/

/*===============================================================================================================*/
/* Premium Strategies Section */
.PreStrSection {
  background: #f2f2f2;
  padding: 5px 20px;
  text-align: center;
}

.PreStrSection-Container {
  max-width: 1100px;
  margin: 0 auto;
}

.PreStrSection-Title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0b2546;
}

.PreStrSection-Desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Call-to-action button */
.PreStrSection-Btn {
  display: inline-block;
  padding: 14px 28px;
  background: #3baa96;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.PreStrSection-Btn:hover {
  background: #319277;
  transform: translateY(-3px);
}

/* ------------------------------------------------------------------------------------------------------------- */
/* Icons Row */
.PreStrSection-Icons {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.PreStrSection-Icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  color: #333;
}

.PreStrSection-Icon i {
  font-size: 3rem;
  color: #3baa96;
  margin-bottom: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.PreStrSection-Icon i:hover {
  transform: scale(1.15);
  color: #319277;
}

.PreStrSection-Icon span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #0b2546;
}

/* ------------------------------------------------------------------------------------------------------------- */
/* Cards Grid */
.PreStrSection-Cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.PreStrSection-Card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.PreStrSection-Card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.PreStrSection-CardImg {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.PreStrSection-Card h3 {
  font-size: 1.1rem;
  color: #0b2546;
  margin-bottom: 8px;
}

.PreStrSection-Summary {
  font-size: 0.9rem;
  color: #444;
  flex-grow: 1;
  line-height: 1.4;
}

.PreStrSection-ReadBtn {
  margin-top: 12px;
  display: inline-block;
  background: #3baa96;
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.PreStrSection-ReadBtn:hover {
  background: #2f7d6e;
  transform: translateY(-2px);
}

/* ------------------------------------------------------------------------------------------------------------- */
/* ✅ Mobile Responsive (max-width: 768px) */
@media screen and (max-width: 768px) {
  .PreStrSection {
    padding: 10px 15px;
    margin: 0;
  }

  .PreStrSection-Title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .PreStrSection-Desc {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .PreStrSection-Icons {
    gap: 20px;
    margin: 18px 0;
  }

  .PreStrSection-Icon i {
    font-size: 2.2rem;
  }

  .PreStrSection-Icon span {
    font-size: 0.8rem;
  }

  /* Cards stack neatly */
  .PreStrSection-Cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .PreStrSection-Card {
    padding: 16px;
  }

  .PreStrSection-Card h3 {
    font-size: 1rem;
  }

  .PreStrSection-Summary {
    font-size: 0.85rem;
  }

  .PreStrSection-ReadBtn {
    width: auto;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px;
  }

  .PreStrSection-Btn {
    width: auto;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
  }
}
/*===============================================================================================================*/
/* ======================================================
   ReSrchDec – Research Dashboard Design System
   PaisaKawach.com
   ====================================================== */

/* =========================
   RESET & BASE
   ========================= */
.ReSrchDec,
.ReSrchDec * {
    box-sizing: border-box;
}

.ReSrchDec {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.65;
}

/* =========================
   UNIVERSAL TYPOGRAPHY
   ========================= */
.ReSrchDec h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    margin-top: 0.6rem;
    text-align: left;
}

.ReSrchDec h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ReSrchDec h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.ReSrchDec h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.ReSrchDec h5 {
    font-size: 0.95rem;
    font-weight: 600;
}

.ReSrchDec h6 {
    font-size: 0.85rem;
    font-weight: 600;
}

.ReSrchDec p,
.ReSrchDec ul,
.ReSrchDec li {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 0.6rem;
}

.ReSrchDec ul {
    padding-left: 1.3rem;
}

.ReSrchDec li {
    margin-bottom: 0.4rem;
}

.ReSrchDec a {
    color: inherit;
    text-decoration: none;
}

/* =========================
   LAYOUT SYSTEM
   ========================= */
.ReSrchDecSection {
    padding: 0;
}

.ReSrchDecContainer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HERO / HEADER
   ========================= */
.ReSrchDecHero {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.ReSrchDecSubtitle {
    margin: 0;
    color: #475569;
    text-align: left;
}

.ReSrchDecMeta {
    font-size: 0.9rem;
    color: #64748b;
    text-align: left;
}

/* =========================
   SINGLE REPORT BANNER
   ========================= */
.ReSrchDecBanner img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 28px;
}

/* =========================
   CONTENT BODY
   ========================= */
.ReSrchDecContent h2 {
    margin-top: 2.4rem;
}

.ReSrchDecContent p {
    margin-bottom: 1rem;
}

.ReSrchDecContent ul {
    margin: 1rem 0 1.8rem;
}

/* =========================
   SNAPSHOT SECTION
   ========================= */
.ReSrchDecSnapshot {
    background-color: #f8fafc;
}

.ReSrchDecGrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ReSrchDecCard {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
    transition: box-shadow 0.2s ease;
}

.ReSrchDecCard:hover {
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

/* =========================
   REPORT GRID (INDEX PAGE)
   ========================= */
.ReSrchDecReportGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 24px;
}

.ReSrchDecReportCard {
    display: block;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ReSrchDecReportCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.ReSrchDecReportCard img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.ReSrchDecReportContent {
    padding: 18px 18px 20px;
}

.ReSrchDecReportContent p {
    font-size: 0.95rem;
    color: #475569;
}

.ReSrchDecReportMeta {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

/* =========================
   PREMIUM CTA
   ========================= */
.ReSrchDecPremium {
    background-color: #0f172a;
    color: #ffffff;
    text-align: center;
}

.ReSrchDecPremium h2 {
    color: #ffffff;
}

.ReSrchDecPremium p {
    color: #cbd5f5;
}

.ReSrchDecBtn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 34px;
    background-color: #22c55e;
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ReSrchDecBtn:hover {
    background-color: #16a34a;
    transform: translateY(-1px);
}

/* ======================================================
   MOBILE FIX – ≤ 768px
   ====================================================== */
@media (max-width: 768px) {
    .ReSrchDecReportContent {
        padding: 0 10px;
    }
    
    .ReSrchDecContainer {
        padding: 5px;
    }

    .ReSrchDecSection {
        padding: 0;
    }

    .ReSrchDec h1 {
        font-size: 1.9rem;
        margin: 0;
    }

    .ReSrchDec h2 {
        font-size: 1.5rem;
        margin: 0;
    }

    .ReSrchDec h3 {
        font-size: 1.1rem;
        margin: 10px 0;
    }

    .ReSrchDec p,
    .ReSrchDec ul,
    .ReSrchDec li {
        font-size: 0.95rem;
    }

    .ReSrchDecGrid3 {
        grid-template-columns: 1fr;
        margin-bottom: 20px; 
    }

    .ReSrchDecReportCard img {
        height: 140px;
    }

    .ReSrchDecBanner img {
        max-height: 260px;
        border-radius: 12px;
        margin-bottom: 0;
    }

    .ReSrchDecBtn {
        width: 100%;
        max-width: 280px;
    }
}
/* ======================================================
   RESEARCH CONTENT – CLEAN & INSTITUTIONAL
   Brand: #3baa96 / #317277
   ====================================================== */

.ReSrchDecContent {
    background-color: #ffffff;
}

/* Section headings – simple authority line */
.ReSrchDecContent h2 {
    position: relative;
    padding-left: 12px;
    border-left: 4px solid #3baa96;
}

/* Paragraphs – untouched, natural reading */
.ReSrchDecContent p {
    color: #334155;
}
/* =========================
   CUSTOM UL ICON — ▸
   ========================= */

.ReSrchDecContent ul {
    list-style: none;
    padding-left: 1.6rem;
}

.ReSrchDecContent li {
    position: relative;
}

/* ▸ bullet */
.ReSrchDecContent li::before {
    content: "▸";
    position: absolute;
    left: -1.3rem;
    top: 0.05em;
    color: #3baa96;
    font-weight: 600;
    font-size: 0.9em;
}

/* Disclaimer – subtle separation */
.ReSrchDecContent p:last-child {
    border-top: 1px solid #e2e8f0;
    padding-top: 14px;
    color: #64748b;
}
@media (max-width: 768px) {

    .ReSrchDecContent h2 {
        padding-left: 10px;
        border-left-width: 3px;
    }
}
@media (max-width: 768px) {
    .ReSrchDecContent li::before {
        left: -1.2rem;
        top: 0.1em;
    }
}
/* =========================
   RESEARCH BREADCRUMB
   ========================= */

.ReSrchDec-Breadcrumb {
    margin: 0;
    padding: 0;
}

.ReSrchDec-Breadcrumb a {
    display: flex;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #317277;
    text-decoration: none;
    transition: color 0.15s ease;
}

.ReSrchDec-Breadcrumb a:hover {
    color: #3baa96;
}
@media (max-width: 768px) {
    .ReSrchDec-Breadcrumb {
        margin-top: 14px;
    }

    .ReSrchDec-Breadcrumb a {
        font-size: 13px;
    }
}
/* ======================================================
   MARKET SNAPSHOT – FINAL POLISH
   ====================================================== */

/* Snapshot section tone */
.ReSrchDecSnapshot {
    background-color: #f8fafc;
}

/* Card headings */
.ReSrchDecSnapshot h4 {
    font-size: 15px;
    font-weight: 600;
    color: #317277;
    margin-bottom: 12px;
}

/* Snapshot lists */
.ReSrchDecSnapshot ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Each stock row */
.ReSrchDecSnapshot li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.4;
}

/* Remove border for last item */
.ReSrchDecSnapshot li:last-child {
    border-bottom: none;
}

/* Stock symbol */
.ReSrchDecSnapshot li strong {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

/* Price text */
.ReSrchDecSnapshot li span,
.ReSrchDecSnapshot li small {
    font-size: 13px;
    color: #475569;
}

/* Gainers (green) */
.ReSrchDecSnapshot .ReSrchDecCard:nth-child(1) span {
    color: #16a34a;
    font-weight: 500;
}

/* Losers (red) */
.ReSrchDecSnapshot .ReSrchDecCard:nth-child(2) span {
    color: #dc2626;
    font-weight: 500;
}

/* Highest volume text */
.ReSrchDecSnapshot .ReSrchDecCard:nth-child(3) li {
    padding: 10px 0;
}

/* Meta text */
.ReSrchDecMeta {
    font-size: 13px;
    color: #64748b;
}

/* ======================================================
   MOBILE OPTIMIZATION
   ====================================================== */
@media (max-width: 768px) {

    .ReSrchDecSnapshot h4 {
        font-size: 14px;
    }

    .ReSrchDecSnapshot li {
        padding: 7px 0;
    }

    .ReSrchDecSnapshot li strong {
        font-size: 13.5px;
    }

    .ReSrchDecSnapshot li span,
    .ReSrchDecSnapshot li small {
        font-size: 12.5px;
    }
}
/* =========================
   SNAPSHOT ARROWS (CSS ONLY)
   ========================= */

/* Gainers arrow */
.ReSrchDecSnapshot 
.ReSrchDecCard:nth-child(1) span::before {
    content: "▲ ";
    font-size: 11px;
    vertical-align: super;
}

/* Losers arrow */
.ReSrchDecSnapshot 
.ReSrchDecCard:nth-child(2) span::before {
    content: "▼ ";
    font-size: 11px;
    vertical-align: middle;
}
/* =========================
   SNAPSHOT DISCLAIMER NOTE
   ========================= */

.ReSrchDecSnapshotNote {
    padding: 10px;
    font-size: 8px;
    color: #64748b;
    line-height: 1.5;
    border-left: 3px solid #3baa96;
    background: #fff;
    font-style: italic;
}
/*=======================================================================================================*/
/* ======================================================
   Market Wisdom – Design System
   PaisaKaWach
   ====================================================== */

.MrWsd,
.MrWsd * {
    box-sizing: border-box;
}

.MrWsd {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.75;
}

/* =========================
   LAYOUT
   ========================= */
.MrWsdLayout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    gap: 36px;
}

/* =========================
   SIDEBAR
   ========================= */
.MrWsdSidebar {
    width: 260px;
    flex-shrink: 0;
    border-right: 1px solid #e5e7eb;
    padding-right: 22px;
}

.MrWsdSidebar h4 {
    font-size: 18px;
    font-weight: 600;
    color: #317277;
    margin-bottom: 16px;
}

.MrWsdDayList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.MrWsdDayList li {
    margin-bottom: 10px;
}

.MrWsdDayList a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.MrWsdDayList a span {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.MrWsdDayList li.active a {
    background: rgba(59,170,150,0.12);
    color: #317277;
    font-weight: 600;
}

.MrWsdDayList a:hover {
    background: rgba(59,170,150,0.08);
}

/* =========================
   CONTENT AREA
   ========================= */
.MrWsdContent h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.MrWsdMeta {
    font-size: 14px;
    color: #317277;
    font-weight: 500;
    margin-bottom: 12px;
}

.MrWsdDate {
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
}

.MrWsdBook {
    font-size: 18px;
    font-weight: 500;
    color: #3baa96;
    margin-bottom: 18px;
}

.MrWsdContent hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 22px 0;
}

/* =========================
   MAIN BODY TEXT
   ========================= */
.MrWsdBody {
    font-size: 17px;
    color: #1f2937;
    max-width: 100%;
}

/* Headings */
.MrWsdBody h2 {
    font-size: 22px;
    font-weight: 600;
    color: #3baa96;
    margin-bottom: 20px;
    text-align: left;
}

.MrWsdBody h3 {
    font-size: 20px;
    font-weight: 600;
    color: #317277;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraphs */
.MrWsdBody p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Lists */
.MrWsdBody-list {
    list-style: none;
    padding-left: 24px; /* Increased from 20px */
    margin: 15px 0;
}

.MrWsdBody-list li {
    margin-bottom: 10px;
    padding-left: 28px; /* Increased from 10px - this creates space for the pointer */
    position: relative;
    color: #000000;
    font-style: italic;
    font-weight: 600;
}

.MrWsdBody-list li:before {
    content: "☛";
    position: absolute;
    left: 4px; /* Adjusted from 0 to be inside the padding */
    top: 0;
    color: #3baa96;
    font-weight: 700;
    font-size: 16px;
    transform: scaleX(0.9);
}

/* Strong text */
.MrWsdBody strong {
    color: #0f172a;
    font-weight: 600;
}

/* Disclaimer */
.MrWsdBody .disclaimer {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #e5e7eb;
}

.MrWsdBody .disclaimer h4 {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.MrWsdBody .disclaimer p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

/* =========================
   PREV / NEXT NAV
   ========================= */
.MrWsdNav {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.MrWsdBtn {
    padding: 10px 22px;
    border-radius: 999px;
    background: #3baa96;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.MrWsdBtn:hover {
    background: #317277;
    transform: translateY(-1px);
}

/* ======================================================
   MOBILE – FIXED ≤ 768px
   ====================================================== */
@media (max-width: 768px) {
    .MrWsdLayout {
        flex-direction: column;
        padding: 0 20px;
    }

    .MrWsdSidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .MrWsdDayList {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }

    .MrWsdDayList li {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .MrWsdDayList a {
        white-space: nowrap;
        font-size: 13px;
    }

    .MrWsdContent h1 {
        font-size: 24px;
        margin: 0;
    }

    .MrWsdBody {
        font-size: 16px;
    }

    .MrWsdBody h2 {
        font-size: 20px;
    }

    .MrWsdBody h3 {
        font-size: 18px;
    }

    .MrWsdNav {
        flex-direction: column;
        gap: 12px;
    }

    .MrWsdBtn {
        width: 100%;
        text-align: center;
    }
    .MrWsdSidebar h4 {
        margin-top: 0;
    }
    .MrWsdBook {
        margin-bottom: 0;
    }
    .MrWsdMeta {
        margin-bottom: 0;
    }
}
/*==============================================================================*/
/* ======================================================
   MARKET WISDOM – MOBILE FIRST
   ====================================================== */

.HomeMarketWisdom {
    background: linear-gradient(180deg, #020617, #0f172a);
    padding: 16px;
    border-radius: 14px;
    margin: 0 auto;
    color: #e5e7eb;
    max-width: 1200px;
}

/* Header row */
.HomeMarketWisdomHeader {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.HomeMarketWisdomHeader h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
}

.HomeMarketWisdomHeader span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Title */
.HomeMarketWisdom h3 {
    font-size: 1rem;
    line-height: 1.35;
    margin: 8px 0;
}

.HomeMarketWisdom h3 a {
    color: #38bdf8;
    text-decoration: none;
}

/* Excerpt */
.HomeMarketWisdomExcerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5f5;
    margin-top: 6px;
}

/* CTA Button */
.HomeMarketWisdomBtn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    background: #22c55e;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
}

/* Tap feedback */
.HomeMarketWisdomBtn:active {
    transform: scale(0.97);
}

/* ======================================================
   TABLET AND UP
   ====================================================== */
@media (min-width: 768px) {
    .HomeMarketWisdom {
        margin: 30px 0;
        padding: 22px;
        margin: 0 auto;
    }

    .HomeMarketWisdomHeader {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .HomeMarketWisdom h3 {
        font-size: 1.1rem;
    }

    .HomeMarketWisdomExcerpt {
        font-size: 0.95rem;
    }
}





