/* ==========================================================================
   1. VARIABLES & BASE SETUP
   ========================================================================== */
:root {
    --primary-color: #1e3a8a; /* Navy Blue */
    --secondary-color: #d4af37; /* Gold */
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f9fafb;
    --bg-muted: #f3f4f6;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --tip-color: #047857; /* Green accent for tips */
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

/* The native background is white for seamless article reading. 
   Grid index pages override this via a small inline <style> block. */
body { 
    font-family: 'Assistant', sans-serif; 
    background-color: var(--white); 
    color: var(--text-dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

a { 
    text-decoration: none; 
    color: inherit; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
}

/* ==========================================================================
   2. HEADER & NAVIGATION (Pure CSS Menu)
   ========================================================================== */
header {
    background-color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 1rem 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: relative; 
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: var(--white); 
}

.logo span { 
    color: var(--secondary-color); 
}

/* The hamburger icons (Open and Close) - Hidden on desktop */
.menu-open, .menu-close {
    display: none;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
}

/* A full-screen invisible overlay that closes the menu if the user taps outside it */
.menu-escape {
    display: none;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default;
}

.nav-links { 
    display: flex; 
    gap: 1.5rem; 
    list-style: none; 
}

.nav-links a { 
    font-weight: 600; 
    color: #e2e8f0; 
    transition: color 0.3s; 
    display: block;
}

.nav-links a:hover, 
.nav-links a.active { 
    color: var(--secondary-color); 
}

/* ==========================================================================
   3. PAGE HEADER (TITLE & IMAGE AREA)
   ========================================================================== */
.page-header {
    padding: 4rem 0 3rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

/* Modifier to remove bottom border and reduce padding on single seamless articles */
.page-header.article-header {
    border-bottom: none;
    padding-bottom: 1.5rem;
}

.header-grid {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 3rem;
    max-width: 1000px; 
    /* Nudges the 180px circle to the left to perfectly center it under the wider logo text */
    margin-right: 25px; 
    margin-left: auto; 
}

.icon-circle {
    width: 180px; 
    height: 180px;
    border-radius: 50%;
    background-color: var(--white);
    border: 5px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    flex-shrink: 0; 
}

.icon-circle img {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    display: block;
}

.header-text {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.header-text h1 {
    color: var(--primary-color);
    font-size: 2.2rem; 
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

.header-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.author-line {
    color: var(--primary-color) !important;
    font-size: 1.2rem !important;
    font-weight: 600;
}

.intro-line {
    color: var(--text-light) !important;
    font-size: 1.1rem !important;
}

/* ==========================================================================
   4. INDEX GRIDS (MAIN ARTICLES LAYOUT)
   ========================================================================== */
.main-categories-section {
    padding: 4rem 0;
}

/* Two-column layout (with sidebar) */
.layout-grid { 
    display: grid; 
    grid-template-columns: 1fr 300px; 
    gap: 3rem; 
    padding: 4rem 0; 
}

.articles-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 2rem; 
}

.article-card { 
    background-color: var(--white); 
    border-radius: 8px; 
    border: 1px solid var(--border-color); 
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    display: flex; 
    flex-direction: column; 
}

.article-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
    border-color: #cbd5e1; 
}

.card-accent { 
    height: 4px; 
    background-color: var(--secondary-color); 
    width: 100%; 
}

.card-content { 
    padding: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}

.article-title { 
    font-size: 1.25rem; 
    color: var(--primary-color); 
    margin-bottom: 0.8rem; 
    line-height: 1.3; 
}

.article-title a {
    transition: color 0.2s;
}

.article-title a:hover {
    color: var(--secondary-color);
}

.article-excerpt { 
    color: var(--text-light); 
    font-size: 1.05rem; 
    margin-bottom: 1.5rem; 
    flex-grow: 1; 
}

.read-more { 
    display: inline-flex; 
    align-items: center; 
    color: var(--primary-color); 
    font-weight: 800; 
    font-size: 1rem; 
    transition: color 0.2s; 
}

.read-more:hover { 
    color: var(--secondary-color); 
}

.read-more::after { 
    content: '←'; 
    margin-right: 0.5rem; 
    transition: transform 0.2s; 
}

.article-card:hover .read-more::after { 
    transform: translateX(-5px); 
}

/* Sidebar / Tips Area */
.sidebar { 
    background-color: var(--white); 
    border-radius: 8px; 
    border: 1px solid var(--border-color); 
    padding: 1.5rem; 
    height: fit-content; 
    position: sticky; 
    top: 100px; 
}

.sidebar h2 { 
    font-size: 1.4rem; 
    color: var(--tip-color); 
    margin-bottom: 1.5rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    border-bottom: 2px solid var(--bg-muted); 
    padding-bottom: 0.5rem; 
}

.tip-list { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}

.tip-list li { 
    border-bottom: 1px solid var(--bg-muted); 
    padding-bottom: 1rem; 
}

.tip-list li:last-child { 
    border-bottom: none; 
    padding-bottom: 0; 
}

.tip-list a { 
    font-weight: 600; 
    color: var(--text-dark); 
    line-height: 1.4; 
    display: block; 
    transition: color 0.2s; 
}

.tip-list a:hover { 
    color: var(--tip-color); 
}

/* ==========================================================================
   5. SINGLE ARTICLE EDITORIAL LAYOUT
   ========================================================================== */
.editorial-body {
    max-width: 900px; 
    margin: 1.5rem auto 4rem auto;
    padding: 0 2rem;
}

.editorial-body h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--bg-muted);
    padding-bottom: 0.5rem;
}

.editorial-body h2:first-child { 
    margin-top: 0; 
}

.editorial-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.editorial-body ol, 
.editorial-body ul {
    margin-right: 2rem;
    margin-bottom: 1.5rem;
}

.editorial-body li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.disclaimer {
    background-color: var(--bg-muted);
    padding: 1.5rem;
    border-right: 4px solid var(--secondary-color);
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 3.5rem;
    border-radius: 4px;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.2s;
    font-size: 1.1rem;
	width: fit-content;
}

.back-link:hover { 
    color: var(--secondary-color); 
}

/* ==========================================================================
   6. CONTACT AREA & FOOTER
   ========================================================================== */
#contact {
    scroll-margin-top: 68px; /* Perfectly aligns the gold borders when anchor is clicked */
    margin-top: 4rem;
}

/* 1. The Light Grey Title Strip */
.contact-title-strip {
    background-color: var(--bg-muted); /* Light grey */
    color: var(--primary-color); /* Navy Blue */
    border-top: 4px solid var(--secondary-color); /* Gold Separator Top */
    border-bottom: 4px solid var(--secondary-color); /* Gold Separator Bottom */
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Forces the SVG phone icon to exactly match the Navy Blue text */
.contact-title-strip svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
}

/* 2. The Navy Blue Consultation Box */
.visit-us { 
    background-color: var(--primary-color); 
    color: var(--white); 
    text-align: center; 
    padding: 3.5rem 0; 
}

.visit-us-content { 
    padding: 0 2rem; 
}

.visit-us h3 { 
    font-size: 2rem; 
    margin-bottom: 1rem; 
    color: var(--white); 
}

.visit-us .phone { 
    font-size: 3rem; 
    font-weight: 800; 
    color: var(--secondary-color); 
    display: block; 
    margin-bottom: 1rem; 
    direction: ltr; 
}

.visit-us p { 
    font-size: 1.2rem; 
    color: #e2e8f0; 
}

/* 3. The Dark Blue Address Strip */
.contact-address-strip-dark {
    background-color: #0f1f4d; /* Dark Blue, matching the footer */
    color: var(--white);
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* 4. The Interactive Map */
.full-width-map { 
    width: 100%; 
}

.full-width-map iframe { 
    width: 100%; 
    height: 450px; 
    border: 0; 
    display: block; 
}

/* 5. The Footer */
footer { 
    background-color: #0f1f4d; 
    color: var(--white); 
    padding: 2rem 0; 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.1); 
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* BREAKPOINT 1: TABLET (< 950px) */
@media (max-width: 950px) { 
    .header-grid { gap: 2rem; align-items: flex-start; }
    .header-text h1 { font-size: 1.8rem; } 
    
    .layout-grid { grid-template-columns: 1fr 220px; gap: 2rem; } 
    .articles-grid { grid-template-columns: 1fr; } 
}

/* BREAKPOINT 2: LARGE MOBILE / SMALL TABLET (< 768px) */
@media (max-width: 900px) { 
    
    /* Show the Hamburger 'Open' Icon by default */
    .menu-open { display: block; }
    
    /* Hide the standard nav links */
    .nav-links {
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        right: 0; 
        width: 100%;
        background-color: var(--primary-color); 
        padding: 1rem 0; 
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 99;
    }
    
    .nav-links li { text-align: center; padding: 0.5rem 0; }
    .nav-links a { font-size: 1.2rem; }

    /* --- PURE CSS :TARGET LOGIC --- */
    
    /* When #mobileNav is targeted (Hamburger clicked): Show Menu, Hide Open Icon, Show Close Icon */
    #mobileNav:target .nav-links { display: flex; }
    #mobileNav:target .menu-open { display: none; }
    #mobileNav:target .menu-close { display: block; }
    
    /* Show the escape overlay when menu is open */
    #mobileNav:target .menu-escape { display: block; }

    /* Other Mobile Adjustments */
    .visit-us .phone { font-size: 2.2rem; } 
    .full-width-map iframe { height: 300px; }
    .container { padding: 0 1.5rem; }

    .header-grid { gap: 1.5rem; align-items: flex-start; margin-right: 0; }
    .icon-circle { width: 130px; height: 130px; border-width: 4px; } 
    .header-text h1 { font-size: 1.6rem; margin-top: 0.3rem; }
    .author-line, .intro-line { font-size: 1.05rem; } 
    
    .layout-grid { grid-template-columns: 1fr 160px; gap: 1.5rem; }
    .sidebar { padding: 1rem; }
    .sidebar h2 { font-size: 1.2rem; margin-bottom: 1rem; justify-content: center; text-align: center; }
    .tip-list { gap: 0.8rem; }
    .tip-list a { font-size: 1rem; line-height: 1.3; text-align: center; } 

    .editorial-body h2 { font-size: 1.45rem; }
    .editorial-body p, .editorial-body li { font-size: 1.1rem; }
}

/* BREAKPOINT 3: NARROW MOBILE (< 550px) */
@media (max-width: 550px) {
    .page-header { padding: 2rem 0; }
    .page-header.article-header { padding-bottom: 1rem; }
    .header-grid { gap: 1rem; align-items: flex-start; }
    .header-text h1 { font-size: 1.45rem; margin-top: 0.2rem; } 
    .author-line, .intro-line { font-size: 1rem; } 
    .icon-circle { width: 90px; height: 90px; border-width: 3px; } 
    
    .container { padding: 0 0.8rem; } 
    
    .layout-grid { grid-template-columns: 1fr 130px; gap: 0.8rem; padding: 1.5rem 0; }
    .sidebar { padding: 0.6rem; }
    .sidebar h2 { font-size: 1.1rem; margin-bottom: 0.6rem; gap: 0.3rem; justify-content: center; text-align: center; }
    .tip-list { gap: 0.5rem; }
    .tip-list a { font-size: 1rem; line-height: 1.3; text-align: center; } 
    
    .card-content { padding: 1rem; }
    .article-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
    .article-excerpt { font-size: 1.05rem; margin-bottom: 1rem; }
    .read-more { font-size: 1rem; }

    .editorial-body { padding: 0 1.2rem; margin-top: 1rem; }
    .editorial-body h2 { font-size: 1.35rem; }
    .editorial-body p, .editorial-body li { font-size: 1.05rem; }
    
    .contact-title-strip { font-size: 1.5rem; }
    .contact-title-strip svg { width: 24px; height: 24px; }
    .contact-address-strip-dark { font-size: 1.1rem; }
}

/* BREAKPOINT 4: EXTREMELY NARROW / OLD PHONES (< 360px) */
@media (max-width: 360px) {
    .container { padding: 0 1rem; }
    .header-text h1 { font-size: 1.3rem; }
    
    .layout-grid { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem 0; }
    .sidebar { position: static; width: 100%; margin-top: 1rem; padding: 1.2rem; }
    .sidebar h2 { font-size: 1.4rem; justify-content: center; text-align: center; }
    .tip-list a { font-size: 1.1rem; text-align: center; }
    
    .card-content { padding: 1.2rem; }
    .article-title { font-size: 1.3rem; }
    .article-excerpt { font-size: 1.05rem; }

    .editorial-body { padding: 0 1rem; }
}


/* ==========================================================================
   DESKTOP DROPDOWN MENU
   ========================================================================== */

/* Parent item needs relative positioning */
.nav-links li.has-dropdown {
    position: relative;
}

/* Hidden by default */
.nav-links .dropdown {
    position: absolute;
    top: 100%;       /* Appears right under the header */
    right: 0;        /* Align to the right of the link */
    background-color: var(--white);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--secondary-color); /* Matches the header line */
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Show on Hover */
.nav-links li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown links styling */
.nav-links .dropdown a {
    color: var(--text-dark) !important; /* Overriding navy blue header text color */
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid var(--bg-muted);
    transition: background 0.2s;
}

.nav-links .dropdown li:last-child a {
    border-bottom: none;
}

/* Hover effect for specific dropdown items */
.nav-links .dropdown a:hover {
    background-color: var(--bg-muted);
    color: var(--primary-color) !important;
}



/* Logic for Mobile: Hide the dropdown nested menu on mobile to keep things simple, 
   since hover doesn't exist on touch screens. */
@media (max-width: 900px) {
    /* 1. Ensure the dropdown is hidden */
    .nav-links .dropdown {
        display: none !important; 
    }
    
    /* 2. Explicitly kill the hover trigger so it doesn't fight the display rule */
    .nav-links li.has-dropdown:hover .dropdown {
        display: none !important;
        opacity: 0;
        visibility: hidden;
    }
}



/* Forum Specific Styles */

.thread-wrapper {
	max-width: 900px;
	margin: 2rem auto 5rem auto;
	padding: 0 1.5rem;
}

.back-to-forum {
	display: inline-block;
	margin-top: 0.8rem;
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
	font-size: 1.05rem;
	transition: color 0.2s;
}

.back-to-forum:hover { color: var(--secondary-color); }

.main-topic-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}
.topic-creator-byline {
	font-size: 0.95rem;
	color: var(--text-light);
	margin-bottom: 1rem; /* Adjusted to make room for pagination */
}
.pagination-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 1.5rem 0 2.5rem 0;
}

.pagination-wrapper.bottom {
	margin: 3rem 0;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}
.pagination-info {
	font-size: 1.05rem;
	color: var(--text-light);
	margin-bottom: 0.8rem;
	font-weight: 600;
}
.bottom-breadcrumb {
	font-size: 1.15rem;
	color: var(--text-dark);
	font-weight: 800;
	text-align: center;
	margin-bottom: 1rem;
}

.bottom-breadcrumb span {
	color: var(--text-light);
	margin: 0 0.5rem;
	font-weight: 400;
}

.reply-content {
            padding: 2.5rem 2rem;
        }
		


.post-card {
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.03);
	overflow: hidden;
}

.post-header {
	padding: 0.6rem 1.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.reply-group:nth-of-type(odd) .post-header {
	background-color: var(--primary-color);
}
.reply-group:nth-of-type(even) .post-header {
	background-color: var(--secondary-color);
}

.post-author {
	font-weight: 800;
	font-size: 1.05rem;
	color: #ffffff;
}

.post-date {
	color: #f3f4f6;
	font-size: 0.95rem;
}

.post-body {
	padding: 1.2rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--text-dark);
}

.post-disclaimer {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--border-color);
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.5;
}

.post-reply-link-outside {
	text-align: left; 
	margin-top: 0.15rem; 
	margin-left: 0.75rem; 
	margin-bottom: 2rem; 
}

.post-reply-link-outside a {
	font-size: 0.95rem;
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.2s;
	font-weight: 600;
}

.post-reply-link-outside a:hover {
	color: var(--secondary-color);
	text-decoration: none; 
}

.card-accent {
	height: 4px;
	background-color: var(--secondary-color);
	width: 100%;
}

.reply-header {
	background-color: var(--primary-color);
	padding: 1rem 2rem;
	border-bottom: 1px solid var(--border-color);
}

.reply-section h3 {
	color: #ffffff;
	margin: 0;
	font-size: 1.4rem;
	font-weight: 600;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.inline-form-row {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	align-items: stretch;
	flex-wrap: wrap;
}

.inline-form-row input {
	margin-bottom: 0;
	text-align: center;
}

.inline-form-row > * {
    flex: 1 1 0;
    min-width: 0;
	width: 100%;
}	

.captchaDiv-control {
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	display: flex; 
	align-items: center; 
	justify-content: center;
}

.captcha-img {
	max-width: 100%; 
	height: auto; 
	display: block;
}

.btn-submit:hover { 
	background-color: var(--secondary-color);
}
.btn-submit:active {
	transform: scale(0.98);
}

.form-note {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-top: 1.5rem;
}

.forum-wrapper {
	max-width: 1000px;
	margin: 1.5rem auto 5rem auto; /* Tighter space below the header */
	padding: 0 2rem;
}

.forum-intro {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--text-dark);
	margin-bottom: 2rem;
}

.action-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.btn-new-topic {
	display: inline-flex;
	align-items: center;
	background-color: var(--secondary-color);
	color: #fff;
	padding: 0.8rem 1.5rem;
	font-size: 1.1rem;
	font-weight: 800;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-new-topic:hover {
	background-color: #bfa136; /* Slightly darker gold */
	transform: translateY(-2px);
}

.forum-list {
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.forum-header {
	display: flex;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 1rem 1.5rem;
	font-weight: 600;
	font-size: 1.05rem;
}

    
.forum-header .forum-col-stats, 
.forum-header .forum-col-last-title {
	color: #ffffff; 
}

.forum-row {
	display: flex;
	padding: 0.75rem 1.5rem; /* Narrower rows */
	border-bottom: 1px solid var(--border-color);
	transition: background-color 0.2s;
	align-items: center;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.forum-row:last-child {
	border-bottom: none;
}

.forum-row:hover {
	background-color: #e2e8f0; 
}

.forum-row:hover .topic-title {
	color: var(--secondary-color);
}

.forum-col-main {
	flex: 1;
}

.forum-col-stats {
	width: 100px;
	text-align: center;
	color: var(--text-light);
	font-weight: 600;
}

.forum-col-last {
	width: 180px;
	text-align: center;
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.4;
}

.forum-col-last-title {
	width: 180px;
	text-align: center;
	color: var(--text-light);
}

.topic-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 0.2rem;
	display: block;
	transition: color 0.2s;
}
.topic-meta {
	font-size: 0.95rem;
	color: var(--text-light);
}

.topic-meta strong {
	color: var(--text-dark);
}

@media (max-width: 768px) {
	.forum-header .forum-col-stats, 
	.forum-header .forum-col-last-title {
		display: none;
	}
	.forum-row .forum-col-stats, 
	.forum-row .forum-col-last {
		display: none;
	}
	.forum-wrapper {
		padding: 0 1rem;
	}
	.topic-title {
		font-size: 1.15rem;
	}
}

@media (max-width: 700px) {
	.post-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.4rem;
	}
	.reply-content { padding: 1.5rem 1rem; }
	.main-topic-title { font-size: 1.5rem; }
	.inline-form-row input[name="a_name"] { flex: 0 0 100%; }
	.inline-form-row input[name="name"] { flex: 0 0 100%; }
	.post-reply-link-outside { margin-left: 0.5rem; }
	
	.bottom-breadcrumb { font-size: 1rem; line-height: 1.4; }
}