/**
*	Theme Name:
*	Theme URI:
*	Author: Ktech Solutions
*	Author URI: http://ktechsol.com
*	Description: Custom theme
*	Version: 1.0
*	Text Domain:  kts_theme
**/


*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #444;
    margin: 0;
    padding: 0;
    background: #fff;
}

a { text-decoration: none; color: #6ab04c; }
a:hover { color: #5a6a7a; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Bottom green stripe like REC teal bar */
    border-bottom: 5px solid #6ab04c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 80px;
}

/* ── LOGO BOX ──
   White card that sits proud of the header,
   drops slightly below like REC site.
   On scroll it shrinks. */
.logo-box {
    background: #ffffff;
    padding: 8px 11px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
    margin-bottom: -28px;
    transition: padding 0.3s ease, margin-bottom 0.3s ease;
    flex-shrink: 0;
}

.logo-box a { display: flex; align-items: center; }

.logo-box img {
    height: 100px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

/* Scrolled state — logo shrinks */
.site-header.scrolled .logo-box {
    padding: 8px 16px 10px;
    margin-bottom: 0px;
    box-shadow: none;
}
.site-header.scrolled .logo-box img {
    height: 50px;
}

/* ── HEADER RIGHT ── */
.header-right {
    display: flex;
    align-items: center;
}

/* ── NAVIGATION ── */
.nav-bar {
    display: flex;
    align-items: center;
}

ul.nav-menu,
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 700;
    padding: 28px 20px;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
    color: #6ab04c;
    background: rgba(106,176,76,0.06);
}

/* Active underline */
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current-menu-ancestor > a::after,
.nav-menu > li > a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: #6ab04c;
}

/* ── DROPDOWN ── */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-top: 3px solid #6ab04c;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 230px;
    z-index: 9999;
    /* Hidden */
    clip: rect(1px,1px,1px,1px);
    height: 1px; width: 1px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
    clip: auto;
    height: auto;
    width: auto;
    overflow: visible;
    opacity: 1;
}

.nav-menu .sub-menu li { display: block; }

.nav-menu .sub-menu li a {
    display: block;
    color: #5a6a7a;
    font-size: 14px;
    padding: 11px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
}

.nav-menu .sub-menu li:last-child a { border-bottom: none; }

.nav-menu .sub-menu li a:hover {
    background: #f6faf3;
    color: #6ab04c;
}

/* ── SEARCH ICON ── */
.header-search {
    position: relative;
    margin-left: 8px;
    padding: 0 8px;
}

.search-toggle {
    background: none;
    border: none;
    color: #5a6a7a;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s;
}
.search-toggle:hover { color: #6ab04c; }

.search-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 280px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 3px solid #6ab04c;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 12px;
    z-index: 9999;
}

.search-dropdown.open { display: block; }

.search-dropdown .searchform {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-dropdown .searchform input[type="search"],
.search-dropdown .searchform input[type="text"] {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

.search-dropdown .searchform button {
    background: #6ab04c;
    border: none;
    color: #fff;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

/* ── HAMBURGER ── */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #5a6a7a;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-close {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 20px;
}

.submenu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    position: absolute;
    right: 0; top: 0;
    height: 46px; width: 46px;
    cursor: pointer;
    font-size: 13px;
    border-left: 1px solid rgba(255,255,255,0.15);
}

/* Nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
}
.nav-overlay.active { display: block; }

/* ============================================
   FOOTER — matches REC: single solid block,
   centered layout, no columns
   ============================================ */

.site-footer {
    background: #6ab04c;
    color: #ffffff;
    text-align: center;
}

/* Top row: nav links */
.footer-links-row {
    background: rgba(0,0,0,0.12);
    padding: 20px 0;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 0;
}

.footer-nav li {
    display: inline;
}

.footer-nav li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0 18px;
    border-right: 1px solid rgba(255,255,255,0.35);
    transition: opacity 0.2s;
}

.footer-nav li:last-child a { border-right: none; }
.footer-nav li a:hover { opacity: 0.75; color: #fff; }

/* Center block */
.footer-center {
    padding: 50px 20px 40px;
}

/* Footer logo — white via filter */
.footer-logo {
    margin-bottom: 28px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Contact info */
.footer-contact-info p {
    margin: 6px 0;
    font-size: 15px;
    color: rgba(255,255,255,0.92);
}

.footer-contact-info a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}
.footer-contact-info a:hover { opacity: 0.8; color: #fff; }

/* Social icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 28px 0 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: background 0.2s, border-color 0.2s;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    border-color: #ffffff;
    color: #fff;
}

/* Copyright */
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .submenu-toggle { display: block; }

    .nav-bar {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100%;
        background: #5a6a7a;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0 20px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    }

    .nav-bar.open { right: 0; }
    .menu-close { display: block; }

    ul.nav-menu { flex-direction: column; width: 100%; gap: 0; }

    .nav-menu > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }

    .nav-menu > li > a {
        color: #ffffff;
        padding: 13px 20px;
        font-size: 15px;
    }

    .nav-menu > li > a::after { display: none; }

    .nav-menu > li > a:hover,
    .nav-menu > li.current-menu-item > a { color: #a8e08a; background: rgba(0,0,0,0.1); }

    .nav-menu .sub-menu {
        position: static;
        clip: auto;
        height: 0;
        width: 100%;
        overflow: hidden;
        opacity: 1;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: rgba(0,0,0,0.15);
        transition: height 0.3s ease;
    }

    .nav-menu li.open > .sub-menu { height: auto; }

    .nav-menu .sub-menu li a {
        color: rgba(255,255,255,0.85);
        padding: 10px 20px 10px 36px;
        font-size: 14px;
    }

    .nav-menu .sub-menu li a:hover { color: #a8e08a; background: rgba(0,0,0,0.1); }

    /* Search moves inside mobile nav */
    .header-search { padding: 12px 20px; width: 100%; }
    .search-dropdown {
        position: static;
        display: block;
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        width: 100%;
    }
    .search-dropdown .searchform input[type="search"],
    .search-dropdown .searchform input[type="text"] {
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.3);
        color: #fff;
    }
    .search-dropdown .searchform input::placeholder { color: rgba(255,255,255,0.6); }
    .search-toggle { display: none; }
}

@media (max-width: 600px) {
    .logo-box img { height: 55px; }
    .site-header.scrolled .logo-box img { height: 40px; }
    .footer-nav li a { padding: 4px 10px; font-size: 13px; }
    .footer-logo img { height: 60px; }
}









/* ============================================
   FCCV HOMEPAGE CSS
   Add this below your header/footer CSS
   in style.css
   ============================================ */

/* ---------- SHARED SECTION STYLES ---------- */
section { padding: 70px 0; }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 12px;
    position: relative;
    display: inline-block;
}

/* Green underline accent under every section title */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #6ab04c;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: #888;
    margin: 8px 0 0;
}

.section-footer-link {
    text-align: center;
    margin-top: 40px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #6ab04c;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #5a9a3c; color: #fff; transform: translateY(-1px); }

.btn-outline {
    display: inline-block;
    border: 2px solid #6ab04c;
    color: #6ab04c !important;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 32px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: #6ab04c; color: #ffffff !important; }

/* ============================================
   SECTION 1 — HERO (About FCCV)
   ============================================ */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

/* Slideshow sits behind everything */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Fallback gradient if no images uploaded yet */
.hero-section:not(:has(.hero-slide[style*="hero-1"])) {
    background: linear-gradient(135deg, #5a6a7a 0%, #3d5240 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(50,65,75,0.80) 0%, rgba(40,65,45,0.70) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #a8e08a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 14px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.15;
}

.hero-text {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
    margin: 0 0 32px;
}

/* No hero image yet? Use a green-to-slate gradient fallback */
.hero-section:not([style*="background-image"]) {
    background: linear-gradient(135deg, #5a6a7a 0%, #3d5240 100%);
}

/* ============================================
   SECTION 2 — CURRENT PROJECTS
   ============================================ */
.section-projects { background: #f8f9fa; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 24px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    border-bottom-color: #6ab04c;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.project-icon {
    width: 52px;
    height: 52px;
    background: rgba(106,176,76,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
}

.project-icon i {
    font-size: 22px;
    color: #6ab04c;
}
.project-icon img{
    width: 100%;
}

.project-name {
    font-size: 17px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 10px;
}

.project-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.65;
    margin: 0 0 18px;
}

.project-link {
    font-size: 14px;
    font-weight: 600;
    color: #6ab04c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.project-link:hover { gap: 10px; color: #5a9a3c; }

/* ============================================
   SECTION 3 — NEWS & ARTICLES
   ============================================ */
.section-news { background: #ffffff; }

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

.news-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #ffffff;
    border: 1px solid #f0f0f0;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.news-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-thumb-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f0f4f0, #e8f0e4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-thumb-placeholder i {
    font-size: 40px;
    color: #c0d4b8;
}

.news-body { padding: 20px; }

.news-date {
    font-size: 12px;
    color: #999;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-date i { color: #6ab04c; }

.news-title {
    font-size: 15px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 10px;
    line-height: 1.4;
}

.news-title a { color: #5a6a7a; transition: color 0.2s; }
.news-title a:hover { color: #6ab04c; }

.news-excerpt {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 14px;
}

.news-readmore {
    font-size: 13px;
    font-weight: 600;
    color: #6ab04c;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.news-readmore:hover { gap: 9px; color: #5a9a3c; }

.no-posts {
    color: #999;
    font-style: italic;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
}

/* ============================================
   SECTION 4 — OUR MEMBERS (8 logos)
   ============================================ */
.section-members { background: #f8f9fa; }

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.member-logo {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-height: 100px;
    transition: box-shadow 0.2s;
    height: 250px;
}

.member-logo:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.1); }

.member-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s;
}

.member-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   NEWSLETTER STRIP
   ============================================ */
.section-newsletter {
    background: #6ab04c;
    padding: 50px 0;
}

.newsletter-inner {
    display: block;
    text-align: center;
    /*display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;*/
}
.newsletter-inner p{
    margin-top: 20px;
}

.newsletter-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.newsletter-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

.newsletter-form {
    flex-shrink: 0;
    min-width: 320px;
}

/* MailPoet form overrides — makes it match site style */
.newsletter-form .mailpoet_form input[type="email"] {
    border-radius: 4px;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
}

.newsletter-form .mailpoet_form input[type="submit"] {
    background: #5a6a7a;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.newsletter-form .mailpoet_form input[type="submit"]:hover {
    background: #4a5a6a;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .members-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 830px) {
    section { padding: 50px 0; }
    .hero-title { font-size: 36px; }
    .hero-text { font-size: 15px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .members-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { min-width: 100%; width: 100%; }
    .section-title { font-size: 26px; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 28px; }
    .hero-section { min-height: 380px; }
    .projects-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .members-grid { grid-template-columns: repeat(2, 1fr); }
}





/* ============================================
   FCCV INNER PAGES CSS
   Used across all inner pages (About, Projects etc)
   Add this to style.css after homepage CSS
   ============================================ */

/* ---------- PAGE HERO BANNER ---------- */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #5a6a7a 0%, #3d5240 100%);
    padding: 60px 0 50px;
    overflow: hidden;
}

/* Subtle pattern overlay */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40,55,45,0.4);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: #6ab04c; }

.page-hero-breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.page-hero-breadcrumb span { color: #ffffff; }

.page-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* ---------- PAGE LAYOUT (2 column: main + sidebar) ---------- */
.page-content-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
    align-items: start;
}

/* ---------- MAIN CONTENT ---------- */
.page-main {
    min-width: 0;
}

/* ---------- VMO BLOCKS (Vision Mission Objectives style) ---------- */
.vmo-block {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #f0f0f0;
}

.vmo-block:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
}

.vmo-icon {
    width: 52px;
    height: 52px;
    background: rgba(106,176,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.vmo-icon i {
    font-size: 20px;
    color: #6ab04c;
}

.vmo-body { flex: 1; }

.vmo-title {
    font-size: 22px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6ab04c;
    display: inline-block;
}

.vmo-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}

.vmo-body p:last-child { margin-bottom: 0; }

/* Objectives list */
.vmo-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vmo-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.vmo-list li:last-child { border-bottom: none; }

.vmo-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: #6ab04c;
    border-radius: 50%;
}

/* Values pills */
.vmo-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(106,176,76,0.1);
    border: 1px solid rgba(106,176,76,0.3);
    color: #4a8a34;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.value-pill i { font-size: 11px; }

/* See also link */
.vmo-see-also {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-left: 4px solid #6ab04c;
    padding: 14px 20px;
    border-radius: 0 6px 6px 0;
    margin-top: 8px;
}

.vmo-see-also i {
    color: #e74c3c;
    font-size: 18px;
}

.vmo-see-also a {
    color: #5a6a7a;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.vmo-see-also a:hover { color: #6ab04c; }

/* ---------- SIDEBAR ---------- */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    border-top: 3px solid #6ab04c;
}

.sidebar-widget-title {
    font-size: 15px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav li { border-bottom: 1px solid #eee; }
.sidebar-nav li:last-child { border-bottom: none; }

.sidebar-nav li a {
    display: block;
    font-size: 14px;
    color: #5a6a7a;
    padding: 9px 0 9px 14px;
    border-left: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s, padding 0.2s;
}

.sidebar-nav li a:hover,
.sidebar-nav li.active a {
    color: #6ab04c;
    border-left-color: #6ab04c;
    padding-left: 18px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
        order: -1; /* sidebar above content on mobile */
    }

    .page-hero-title { font-size: 28px; }
}

@media (max-width: 600px) {
    .vmo-block { flex-direction: column; gap: 14px; }
    .page-hero { padding: 40px 0 34px; }
}








/* ============================================
   COMMON STATEMENT PAGE CSS
   Add to style.css after inner-pages CSS
   ============================================ */

/* ── STATEMENT BLOCK WRAPPER ── */
.cs-statement-block {
    margin-bottom: 60px;
}

/* ── STATEMENT IMAGE ── */
.cs-image {
    margin-bottom: 36px;
    border-radius: 8px;
    overflow: hidden;
}

.cs-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* ── QUOTE BLOCK ── */
.cs-quote-block {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #f6faf3 0%, #f0f7ec 100%);
    border-left: 5px solid #6ab04c;
    border-radius: 0 8px 8px 0;
    padding: 32px 32px 32px 28px;
    margin-bottom: 36px;
}

.cs-quote-icon {
    flex-shrink: 0;
    font-size: 32px;
    color: #6ab04c;
    opacity: 0.5;
    margin-top: 4px;
    line-height: 1;
}

.cs-quote-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin: 0 0 16px;
    font-style: italic;
}

.cs-quote-text p:last-child { margin-bottom: 0; }

/* ── SHARED VALUES ── */
.cs-values {
    margin-bottom: 36px;
}

.cs-values-title {
    font-size: 18px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 16px;
}

.cs-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cs-value-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1.5px solid rgba(106,176,76,0.4);
    color: #4a7a34;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 24px;
    box-shadow: 0 1px 4px rgba(106,176,76,0.1);
    transition: background 0.2s, border-color 0.2s;
}

.cs-value-pill:hover {
    background: rgba(106,176,76,0.08);
    border-color: #6ab04c;
}

.cs-value-pill i {
    font-size: 12px;
    color: #6ab04c;
}

/* ── PDF DOWNLOAD ── */
.cs-download {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #5a6a7a;
    border-radius: 8px;
    padding: 20px 24px;
}

.cs-download > i {
    font-size: 36px;
    color: #ff6b6b;
    flex-shrink: 0;
}

.cs-download-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 8px;
}

.cs-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6ab04c;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 4px;
    transition: background 0.2s;
}

.cs-download-btn:hover { background: #5a9a3c; color: #fff; }
.cs-download-btn i { font-size: 13px; }

/* ── OTHER STATEMENTS ── */
.cs-other-statements {
    border-top: 2px solid #f0f0f0;
    padding-top: 40px;
}

.cs-other-title {
    font-size: 22px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6ab04c;
    display: inline-block;
}

.cs-statements-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cs-statements-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.cs-statements-list li:last-child { border-bottom: none; }

.cs-stmt-icon {
    width: 36px;
    height: 36px;
    background: rgba(106,176,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cs-stmt-icon i { font-size: 15px; color: #6ab04c; }

.cs-stmt-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-stmt-body a {
    font-size: 15px;
    font-weight: 600;
    color: #5a6a7a;
    line-height: 1.5;
    transition: color 0.2s;
}

.cs-stmt-body a:hover { color: #6ab04c; }

.cs-stmt-date {
    font-size: 12px;
    color: #999;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .cs-quote-block { flex-direction: column; gap: 12px; padding: 20px; }
    .cs-quote-icon { font-size: 24px; }
    .cs-download { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cs-values-grid { gap: 8px; }
}







/* ============================================
   MANAGEMENT COMMITTEE PAGE CSS
   Add to style.css after common-statement CSS
   ============================================ */

/* ── INTRO TEXT ── */
.mc-intro {
    font-size: 16px;
    color: #666;
    margin: 0 0 36px;
    line-height: 1.7;
}

/* ── EXECUTIVE COMMITTEE BLOCK ── */
.mc-executive {
    background: linear-gradient(135deg, #5a6a7a 0%, #3d5240 100%);
    border-radius: 10px;
    padding: 36px;
    margin-bottom: 52px;
}

.mc-executive-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mc-executive-title i { color: #f0c040; font-size: 18px; }

.mc-executive-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin: 0 0 28px;
}

.mc-exec-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.mc-exec-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 16px 14px;
    text-align: center;
    transition: background 0.2s;
}

.mc-exec-card:hover { background: rgba(255,255,255,0.18); }

.mc-exec-card.mc-exec-chair {
    background: rgba(106,176,76,0.25);
    border-color: rgba(106,176,76,0.5);
}

.mc-exec-role {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a8e08a;
    margin-bottom: 8px;
}

.mc-exec-chair .mc-exec-role { color: #c8f098; }

.mc-exec-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.3;
}

.mc-exec-org {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.4;
}

/* ── SECTION TITLE ── */
.mc-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 28px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6ab04c;
    display: inline-block;
}

/* ── ORGANISATIONS GRID ── */
.mc-orgs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mc-org-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}

.mc-org-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Victorian Council of Churches spans full width */
.mc-org-card--wide {
    grid-column: 1 / -1;
}

.mc-org-header {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    padding: 14px 18px;
}

.mc-org-icon {
    width: 38px;
    height: 38px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mc-org-icon i {
    font-size: 16px;
    color: #6ab04c;
}
.mc-org-icon img{
    width: 70%;
    height: 70%;
}

.mc-org-name {
    font-size: 14px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0;
    line-height: 1.3;
}

/* Members list */
.mc-members-list {
    list-style: none;
    margin: 0;
    padding: 12px 18px 14px;
}

.mc-members-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    padding: 7px 0;
    border-bottom: 1px solid #f5f5f5;
}

.mc-members-list li:last-child { border-bottom: none; }

.mc-members-list li i {
    font-size: 12px;
    color: #6ab04c;
    flex-shrink: 0;
    width: 14px;
}

/* Wide card — 2 column members */
.mc-members-list--inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    padding: 12px 18px 14px;
}

.mc-members-list--inline li {
    font-size: 14px;
}

.mc-church {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-left: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .mc-exec-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    .mc-orgs-grid { grid-template-columns: 1fr; }
    .mc-org-card--wide { grid-column: auto; }
    .mc-members-list--inline { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .mc-exec-grid { grid-template-columns: repeat(2, 1fr); }
    .mc-executive { padding: 24px 20px; }
}





/* ============================================
   ABOUT FCCV MAIN PAGE CSS
   Add to style.css after management-committee CSS
   ============================================ */

/* ── PAGE HERO SUBTITLE ── */
.page-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 10px 0 0;
    line-height: 1.6;
}

/* ── STATS BAR ── */
.about-stats-bar {
    background: #6ab04c;
    padding: 0;
}

.about-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    border-right: 1px solid rgba(255,255,255,0.25);
    text-align: center;
}

.about-stat:last-child { border-right: none; }

.about-stat-num {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.about-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ── WELCOME SECTION ── */
.about-welcome {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.about-section-heading {
    font-size: 26px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6ab04c;
    display: inline-block;
}

.about-welcome p {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
    margin: 0 0 16px;
}

.about-welcome p:last-child { margin-bottom: 0; }

/* ── MEMBERS INFO ── */
.about-members-info {
    margin-top: 100px;
    margin-bottom: 15px;
    padding-bottom: 36px;
    border-bottom: 1px solid #f0f0f0;
}

.about-members-title {
    font-size: 18px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 18px;
}

.about-members-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-member-type {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 18px;
    border-left: 3px solid #6ab04c;
}

.about-member-icon {
    width: 40px;
    height: 40px;
    background: rgba(106,176,76,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-member-icon i { font-size: 17px; color: #6ab04c; }

.about-member-type-name {
    font-size: 14px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 4px;
}

.about-member-type-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* ── GOVERNMENT SUPPORT NOTE ── */
.about-govt-note {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(106,176,76,0.08);
    border: 1px solid rgba(106,176,76,0.25);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 48px;
}

.about-govt-note i {
    font-size: 24px;
    color: #6ab04c;
    flex-shrink: 0;
}

.about-govt-note p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ── EXPLORE CARDS ── */
.about-explore { margin-top: 8px; }

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.about-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 28px 22px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    color: inherit;
}

.about-card:hover {
    border-bottom-color: #6ab04c;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    color: inherit;
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(106,176,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-card-icon i { font-size: 20px; color: #6ab04c; }

.about-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.about-card-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1;
}

.about-card-link {
    font-size: 13px;
    font-weight: 700;
    color: #6ab04c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    margin-top: auto;
}

.about-card:hover .about-card-link { gap: 10px; }

/* ── SIDEBAR GREEN VARIANT ── */
.sidebar-widget--green {
    background: #6ab04c;
    border-top-color: rgba(255,255,255,0.3);
}

.sidebar-widget--green .sidebar-widget-title { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .about-stat { border-bottom: 1px solid rgba(255,255,255,0.2); }
    .about-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .about-members-grid { grid-template-columns: 1fr; }
    .about-cards-grid { grid-template-columns: 1fr; }
    .about-stat-num { font-size: 26px; }
}






/* ============================================
   SINGLE POST PAGE CSS
   Add to style.css after about.css
   ============================================ */

/* ── POST META ROW (in hero) ── */
.post-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 16px;
}

.post-meta-item {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta-item i { color: #a8e08a; font-size: 12px; }

/* ── FEATURED IMAGE ── */
.single-post-thumb {
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.single-post-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── POST BODY CONTENT ── */
.single-post-body {
    font-size: 16px;
    color: #444;
    line-height: 1.85;
}

.single-post-body p {
    margin: 0 0 22px;
}

.single-post-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 36px 0 18px;
}

.single-post-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 28px 0 14px;
}

.single-post-body a {
    color: #6ab04c;
    font-weight: 600;
    text-decoration: underline;
}

.single-post-body a:hover { color: #5a9a3c; }

.single-post-body ul,
.single-post-body ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.single-post-body li {
    margin-bottom: 8px;
}

.single-post-body blockquote {
    border-left: 4px solid #6ab04c;
    background: #f6faf3;
    padding: 18px 24px;
    margin: 28px 0;
    font-style: italic;
    color: #555;
    border-radius: 0 6px 6px 0;
}

.single-post-body img {
    max-width: 100%;
    border-radius: 6px;
    margin: 20px 0;
}

/* ── TAGS ── */
.single-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.single-post-tags > i {
    color: #6ab04c;
    font-size: 14px;
    margin-right: 4px;
}

.post-tag-pill {
    display: inline-block;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    color: #5a6a7a;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 16px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.post-tag-pill:hover {
    background: rgba(106,176,76,0.1);
    border-color: #6ab04c;
    color: #6ab04c;
}

/* ── SHARE BAR ── */
.single-post-share {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 32px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: #5a6a7a;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #5a6a7a;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.2s;
}

.share-icons a:hover { background: #6ab04c; }

/* ── PREV/NEXT NAVIGATION ── */
.single-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.post-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 16px 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.post-nav-link:hover {
    border-color: #6ab04c;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.post-nav-link i {
    color: #6ab04c;
    font-size: 14px;
    flex-shrink: 0;
}

.post-nav-prev { justify-content: flex-start; }
.post-nav-next { justify-content: flex-end; text-align: right; }

.post-nav-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    margin-bottom: 3px;
}

.post-nav-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #5a6a7a;
    line-height: 1.4;
}

/* ── COMMENTS ── */
.single-post-comments {
    border-top: 2px solid #f0f0f0;
    padding-top: 32px;
}

/* ── SIDEBAR: RECENT POSTS WIDGET ── */
.sidebar-recent-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-recent-posts li {
    border-bottom: 1px solid #eee;
}

.sidebar-recent-posts li:last-child { border-bottom: none; }
.sidebar-recent-posts li.no-recent {
    font-size: 13px;
    color: #999;
    font-style: italic;
    padding: 10px 0;
}

.sidebar-recent-posts a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: inherit;
}

.recent-post-thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.recent-post-title {
    font-size: 13px;
    font-weight: 600;
    color: #5a6a7a;
    line-height: 1.4;
    transition: color 0.2s;
}

.sidebar-recent-posts a:hover .recent-post-title { color: #6ab04c; }

.recent-post-date {
    font-size: 11px;
    color: #999;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .single-post-nav { grid-template-columns: 1fr; }
    .single-post-share { flex-direction: column; align-items: flex-start; gap: 10px; }
    .post-meta-row { gap: 10px 16px; }
}




/* ============================================
   WORDPRESS DEFAULT COMMENTS STYLING
   Add to style.css after single-post CSS
   (Matches FCCV theme — only needed if comments are enabled)
   ============================================ */

.comments-title,
.comment-reply-title {
    font-size: 20px;
    font-weight: 700;
    color: #5a6a7a;
    margin: 0 0 20px;
}

.comment-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.comment-list .comment {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.comment-author .fn {
    font-weight: 700;
    color: #5a6a7a;
    font-size: 14px;
}

.comment-metadata {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.comment-metadata a { color: #999; }

.comment-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 8px 0 0;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 14px;
    font-family: inherit;
}

.comment-respond textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-respond .form-submit input {
    background: #6ab04c;
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-respond .form-submit input:hover { background: #5a9a3c; }