/* Enhanced Weather Widget Styles */
.weather-widget { 
  position:relative; 
  overflow:hidden; 
  background: linear-gradient(135deg, #1A533D 0%, #2d7a5f 100%); 
  color:#fff; 
  border-radius:12px; 
  padding:16px; 
  box-shadow:0 4px 16px rgba(26, 83, 61, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.weather-widget:hover {
  transform: translateY(-2px);
  box-shadow:0 8px 24px rgba(26, 83, 61, 0.4);
}

.weather-widget.weather-clear { 
  background: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 100%); 
}

.weather-widget.weather-cloudy { 
  background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%); 
}

.weather-widget.weather-rainy { 
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%); 
}

.weather-widget.weather-fallback {
  background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
}

.weather-widget .weather-overlay { 
  position:absolute; 
  inset:0; 
  border-radius:12px; 
  pointer-events:none; 
  background: rgba(255,255,255,0.1);
}

.weather-header { 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  margin-bottom:12px; 
}

.weather-location { 
  font-weight:800; 
  letter-spacing:.3px; 
  text-transform:uppercase; 
  font-size:.9rem; 
  opacity: 0.9;
}

.weather-now { 
  display:flex; 
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.weather-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.weather-temp { 
  font-size:2rem; 
  font-weight:800; 
  line-height: 1;
}

.weather-icon {
  font-size: 1.8rem;
  filter: none;
  -webkit-filter: none;
}

.weather-emoji, .day-icon, .ico {
  filter: none;
  -webkit-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lottie player styling */
lottie-player {
  width: 100% !important;
  height: 100% !important;
  max-width: 48px;
  max-height: 48px;
}

.weather-icon lottie-player {
  max-width: 64px;
  max-height: 64px;
}

.weather-emoji lottie-player {
  max-width: 80px;
  max-height: 80px;
}

.weather-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.weather-desc { 
  font-size:.85rem; 
  opacity:.9; 
  text-transform: capitalize;
}

.weather-feels {
  font-size: 0.75rem;
  opacity: 0.8;
}

.weather-forecast { 
  display:grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap:8px; 
  margin-top:12px; 
}

.weather-day { 
  text-align:center; 
  background: rgba(255,255,255,.12); 
  border-radius:8px; 
  padding:10px 6px; 
  transition: background-color 0.2s ease;
}

.weather-day:hover {
  background: rgba(255,255,255,.2);
}

.weather-day .d {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
  opacity: 0.9;
}

.weather-day .ico {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.weather-day .hi { 
  font-weight:700; 
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.weather-day .lo {
  font-size: 0.8rem;
  opacity: 0.8;
}

.weather-footer { 
  margin-top:12px; 
  text-align:right; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-footer a { 
  color:#fff !important; 
  text-decoration:none; 
  font-size:.85rem; 
  font-weight:600; 
  letter-spacing:.4px; 
  text-transform:uppercase; 
  padding: 6px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.weather-footer a:hover {
  background: rgba(255,255,255,0.3);
}

.weather-footer .updated { 
  font-size:.75rem; 
  color:#e6f2ff; 
  opacity:.85; 
}
.sidebar-section:first-child { margin-top: 0; }
.sidebar-section + .sidebar-section { margin-top: 1rem; }
/* Hello Huntsville TX - Professional News Site Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */

/* Header Ad Responsive Styles */
@media (max-width: 768px) {
    .logo-banner-inner {
        flex-direction: column !important;
        padding: 15px 0 !important;
        align-items: center !important;
    }
    .header-ad-slot {
        margin: 15px 0 0 0 !important;
        flex: none !important;
        width: 100% !important;
        order: 2 !important;
    }
    .site-logo {
        order: 1 !important;
    }
    .header-ad-slot img {
        max-height: 60px !important;
        max-width: 100% !important;
        width: auto !important;
    }
}

@media (max-width: 480px) {
    .header-ad-slot img {
        max-height: 50px !important;
    }
}
.site-header {
    background: #fff;
    border-bottom: 0;
    position: relative;
    z-index: 1000;
}

/* Top bar */
.top-bar { background:#034332; color:#fff; font-size:13px; line-height:1.2; font-display:swap; }
.top-bar-inner { display:flex; justify-content:space-between; align-items:center; padding:0 20px; height:40px; }
.top-left { 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
}
.top-links { 
    display: flex; 
    list-style: none; 
    gap: 0; 
    align-items: center; 
    justify-content: flex-start; 
    margin: 0; 
    padding: 0; 
}
.top-right { display:flex; align-items:center; justify-content:flex-end; padding-right: 0; }
.top-links a { 
    color: #fff; 
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 6px; 
    padding: 0 10px; 
    line-height: 40px; 
    height: 40px; 
    border-left: 1px solid rgba(255,255,255,.2); 
    border-right: none; 
    text-decoration: none; 
    font-family: 'Roboto Condensed', sans-serif; 
    font-weight: 700; 
    font-size: 14px; 
    text-align: center; 
    white-space: nowrap; 
    box-sizing: border-box; 
    width: auto; 
}
.top-links a:first-child { border-left: none; }
.top-links a:hover { 
    background: #001100; 
    text-decoration: none; 
}
.top-links a i { 
    font-size: 12px; 
}

/* Logo + banner */
.logo-banner { background:#2c5530 url('/static/uploads/Header-Green-Background.png') center/cover no-repeat; }
.logo-banner-inner { display:flex; justify-content:space-between; align-items:center; padding:18px 20px; }
.logo-banner .site-logo { margin-left: 2px; }
.logo-banner .site-logo img { width:215px; height:auto; }
.header-ad-slot { width: 728px; max-width: 100%; height: 90px; background: transparent; }

/* Main nav */
.main-nav-wrap { background:#034332; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.main-navigation ul { display:flex; list-style:none; gap:0; align-items:center; flex-wrap:nowrap; justify-content:flex-start; width:100%; padding:0 20px; }
.main-navigation .nav-menu { display:flex; width:100%; }
.nav-menu { width: 100%; }
.main-navigation ul li { display:flex; flex: 0 0 auto; margin:0; padding:0; }
.main-navigation ul li a { color:#fff; display:flex; align-items:center; justify-content:center; gap:6px; padding:0 10px; line-height:40px; height:40px; border-left:1px solid rgba(255,255,255,.2); border-right:none; text-decoration:none; font-family:'Roboto Condensed', sans-serif; font-weight:700; font-size:14px; text-align:center; white-space:nowrap; box-sizing:border-box; width:auto; }
.main-navigation ul li:first-child a { border-left: none; }
.main-navigation ul li a:hover { background:#001100; }
.mobile-menu-toggle { display:none; color:#fff; background:transparent; border:none; font-size:22px; line-height:40px; cursor:pointer; }

/* Ensure the mobile menu button is clickable above nav items */
.mobile-menu-toggle { position: relative; z-index: 10002; }

/* Right-aligned search in main nav */
.nav-spacer { flex: 1 1 auto; }
.nav-search { margin-left: auto !important; margin-right: 0; position: relative; }
.search-toggle { background: transparent; border: 0; color: #fff; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.search-toggle:hover { background: #001100; }
.search-toggle .search-text { display:none; }

/* Search popover */
.main-nav-wrap { position: relative; }
.search-popover { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid #e0e0e0; box-shadow: 0 8px 24px rgba(0,0,0,0.15); border-radius: 4px; padding: 12px; display: none; z-index: 1000; }
.search-popover.open { display: block; }
.search-input-wrap { display: flex; gap: 8px; }
.search-input-wrap input { width: 260px; padding: 10px 12px; border: 1px solid #cfd8dc; border-radius: 4px; font-size: 14px; }
.search-input-wrap .search-submit { background: #034332; color: #fff; border: 0; border-radius: 4px; padding: 10px 12px; font-weight: 700; cursor: pointer; }
.search-input-wrap .search-submit:hover { background: #023528; }

/* Mobile alignment for search popover */
@media (max-width: 768px) {
  .search-popover { right: 0; left: auto; }
  .search-input-wrap input { width: 70vw; max-width: 320px; }
  .search-toggle .search-text { display: none; }
}

/* Mobile drawer - hidden by default to prevent flash */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 999; pointer-events: none; }
.mobile-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-drawer { position: fixed; top:0; bottom:0; left:0; width: 80%; max-width: 320px; background:#034332; color:#fff; transform: translateX(-100%); transition: transform .25s ease; z-index: 1000; overflow-y:auto; padding-bottom: 2rem; visibility: visible; }
.mobile-drawer.open { transform: translateX(0); }
.drawer-header { display:flex; align-items:center; justify-content: space-between; padding: 12px 16px; background:#023a2a; }
.drawer-close { background:transparent; border:none; color:#fff; font-size:22px; }
.drawer-logo img { display:block; height:auto; }
.drawer-menu { list-style:none; margin:0; padding: 8px 0; }
.drawer-menu li a { display:flex; align-items:center; gap:8px; color:#fff; text-decoration:none; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.drawer-menu li a i { margin: 0; }
body.drawer-open { overflow:hidden; }

.site-branding .site-logo img {
    height: 60px;
    width: auto;
}







/* Main Content */
.site-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Homepage Styles */
.hero-section { background: #fff; color:#111; padding: 0 0 1.25rem; margin-bottom: 1.5rem; }

/* Hero post (single featured) */
.hero-post { position: relative; overflow: hidden; border-radius: 8px; }
.hero-link { display: block; text-decoration: none; color: inherit; }
.hero-link img { width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: cover; display: block; }
.hero-content { padding: 1.5rem 0; color: #333; }
.hero-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: .2px; line-height: 1.2; }
.hero-title a { color: #333; text-decoration: none; }
.hero-title a:hover { color: #034332; }
.hero-excerpt { font-size: 1.1rem; color: #666; line-height: 1.4; margin: 0; }

.content-grid { display:flex !important; gap:15px; margin-bottom:3rem; align-items:flex-start; justify-content:space-between; }
.main-content > *:first-child { margin-top: 0; }

.main-content { flex:0 0 68% !important; max-width:68% !important; overflow:hidden; margin-top:0; padding-top:0; }

.sidebar { flex:0 0 30% !important; max-width:30% !important; margin-top:0; padding-top:0; padding-left:0; padding-right:0; }

/* Featured Posts */
.featured-posts {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
    border-bottom: 3px solid #2c5530;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.featured-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content { padding: 0; }

.post-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-title a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #4a7c59;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    background: #2c5530;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.category-tag:hover {
    background: #4a7c59;
}

/* Latest Posts */
.latest-posts {
    margin-bottom: 3rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Force 3-up grids where desired */
.posts-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .posts-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .posts-grid-3 { grid-template-columns: 1fr; } }

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-3px);
}

.post-card .post-content {
    padding: 1.5rem;
}

.post-card .post-title {
    font-size: 1.1rem;
}

/* Latest Posts - rows */
.post-list { display: grid; gap: 1.5rem; }
.latest-posts .strip-header,
.category-strip .strip-header { background:#f3f4f5; border-left:4px solid #034332; padding:.35rem .7rem; border-radius:2px; }
.latest-posts .strip-header h3 { margin:0; font-size:1rem; color:#034332; text-transform:uppercase; letter-spacing:.3px; }
.category-strip .strip-header h3 { margin:0; font-size:1rem; text-transform:uppercase; letter-spacing:.3px; color:#034332; }
.post-row { display: grid; grid-template-columns: 200px 1fr; gap: 1.25rem; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.post-row .row-image { display:block; aspect-ratio: 16 / 9; background:#f3f4f6; }
.post-row .row-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-row .row-content { padding: 1rem 1rem 1.2rem 0; }
.post-row .row-title { font-size: 1.3rem; margin-bottom: .4rem; color: #2c5530; }
.post-row .row-title a { color: inherit; text-decoration: none; }
.post-row .row-title a:hover { text-decoration: underline; }
.post-row .row-excerpt { color: #555; margin-bottom: .6rem; }
.post-row .row-meta { color: #888; font-size: .9rem; }

/* Category strips (carousel with 4 visible) */
.category-strip { margin: 2.5rem 0; }
.strip-header { display:flex; align-items:center; justify-content:space-between; margin-bottom: .8rem; }
.strip-header h3 { text-transform: uppercase; font-size: 1rem; letter-spacing:.3px; color:#034332; }
.strip-arrows { display:flex; gap: 8px; }
.strip-prev, .strip-next { background:#034332; color:#fff; border:none; width:32px; height:32px; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:18px; transition:background .2s; }
.strip-prev:hover, .strip-next:hover { background:#001100; }
.strip-viewport { overflow:hidden; position:relative; }
.strip-track { 
    display:flex; 
    gap: 1rem; 
    transition: transform .3s ease; 
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}
.strip-track:active {
    cursor: grabbing;
}
.strip-card { flex: 0 0 calc(33.333% - 0.75rem); background:#fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.06); overflow:hidden; }
.strip-thumb { display:block; aspect-ratio:16/9; background:#f3f4f6; }
.strip-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.strip-title { font-size: .95rem; font-weight:700; padding: .7rem .8rem 1rem; line-height:1.4; }
.strip-title a { color:#2c5530; text-decoration:none; }
.strip-title a:hover { text-decoration:underline; }


/* Sidebar */
.sidebar { background: transparent; padding: 0; border-radius: 0; height: fit-content; min-height: 400px; margin-top: 0; padding-top: 0; }

@media (min-width: 1180px) {
    .content-grid { gap: 15px; }
    .main-content { flex: 0 0 68% !important; max-width: 68% !important; }
    .sidebar { flex: 0 0 30% !important; max-width: 30% !important; }
}

/* Prevent ad placeholder from causing layout shifts */
.sidebar .ad-placeholder {
    min-height: 250px;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}
.sidebar .strip-header { background:#f3f4f5; border-left:4px solid #034332; padding:.35rem .7rem; border-radius:2px; margin-bottom:.6rem; }
.sidebar > * + .strip-header { margin-top: 1rem; }
.sidebar .sidebar-card { margin-bottom: 1rem; }
.sidebar .sidebar-search { margin-bottom: 1rem; }
.sidebar .strip-header h3 { margin:0; font-size:1rem; text-transform:uppercase; letter-spacing:.3px; color:#034332; }
.sidebar .sidebar-search { display:flex; gap:.5rem; }
.sidebar .sidebar-search input { flex:1; padding:.5rem .6rem; border:1px solid #ccc; border-radius:4px; }
.sidebar .sidebar-search button, .sidebar .btn { padding:.5rem .75rem; background:#034332; color:#fff; border:none; border-radius:4px; cursor:pointer; }

/* Global button styles aligned to site theme */
.btn { display:inline-block; padding:.6rem 1rem; border-radius:6px; border:1px solid transparent; cursor:pointer; font-weight:700; font-family:'Roboto Condensed', sans-serif; letter-spacing:.2px; }
.btn-primary { background:#034332; color:#fff; border-color:#034332; }
.btn-primary:hover { background:#022a21; border-color:#022a21; color:#fff; }
.btn-secondary { background:#f1f5f4; color:#034332; border-color:#d6e3df; }
.btn-secondary:hover { background:#e6eeeb; color:#022a21; }
.btn[disabled], .btn:disabled { opacity:.6; cursor:not-allowed; }
.sidebar .sidebar-card { background: transparent; border: 0; border-radius:0; padding: 0; }
.sidebar .sidebar-card + .sidebar-card { margin-top:.8rem; }
.sidebar .sidebar-card.social a { display:block; margin:.25rem 0; color:#034332; text-decoration:none; }
.sidebar .sidebar-card.video-embed { background: #fff; border: 1px solid #e1e5e9; border-radius: 8px; padding: 0; overflow: hidden; }
.sidebar .sidebar-card.video-embed iframe { border-radius: 8px; }
.sidebar .sidebar-card.spirit-radio { display: flex; justify-content: center; background: #fff; border: 1px solid #e1e5e9; border-radius: 8px; padding: 1rem; }

.sidebar h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 0.8rem;
}

.sidebar a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar a:hover {
    color: #2c5530;
}

/* Featured Businesses grid */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.biz-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.biz-card .biz-thumb { display:block; }
.biz-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* 800x450 ratio */
    object-fit: contain; /* show full image without cropping */
    display: block;
}
.biz-title { font-size: 1rem; margin: 10px 12px 12px; }
.biz-title a { color:#034332; text-decoration:none; }
.biz-title a:hover { text-decoration:underline; }

@media (max-width: 768px) {
    .biz-grid { grid-template-columns: 1fr; }
    .biz-card img { aspect-ratio: 16 / 9; }
}

.biz-footer-link { margin-top: 14px; text-align: right; }
/* Post Page Styles */
.post-header { background:#f8f9fa; padding: .9rem 1.2rem; margin-bottom: 1.6rem; }
.post-header .post-meta-detailed { margin-top: .4rem; }

.breadcrumbs { font-size:.95rem; margin: 0 0 1rem; padding:.6rem 1rem; background:#f3f4f5; border-left:4px solid #034332; border-radius:2px; color:#2c5530; }
.breadcrumbs a { color:#0f5132; text-decoration:none; font-weight:700; }
.breadcrumbs a:hover { text-decoration:underline; }
.breadcrumbs .sep { margin: 0 .5rem; color:#7a8b82; }
.breadcrumbs .current { color:#2c5530; font-weight:400; }

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta-detailed {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #666;
    font-size: 1rem;
}

.post-content-area { width: 100%; max-width: none; margin: 0; font-size: 1.1rem; line-height: 1.8; }
.post-content-area .post-content { padding-right: 0; }

.post-content-area h2,
.post-content-area h3,
.post-content-area h4 {
    color: #2c5530;
    margin: 2rem 0 1rem 0;
}

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

.post-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-content-area blockquote {
    border-left: 4px solid #2c5530;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

/* Footer */
.site-footer {
    background: #2c5530;
    color: white;
    padding: 3rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

/* Latest News Section */
.latest-news-section {
    flex: 2;
}

.latest-news-list {
    list-style: none;
}

.latest-news-list li {
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.latest-news-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.latest-news-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.2;
    transition: color 0.3s ease;
    display: block;
}

.latest-news-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #4a7c59;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Contact Page Styles */
.page-header {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.page-title {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.page-description {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.contact-form-section {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Removed duplicate .btn definitions - using the main ones defined earlier */

.contact-info-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-section h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method h3 i {
    color: #2c5530;
}

.contact-method p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.contact-method a {
    color: #2c5530;
    text-decoration: none;
}

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

/* Flash Messages */
.flash-messages {
    margin-bottom: 1.5rem;
}

.flash {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Privacy Policy Styles */
.privacy-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #e1e5e9;
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: #2c5530;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.2rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.privacy-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #333;
}

.privacy-section a {
    color: #2c5530;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Honeypot field (hidden) */
.honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

/* Post content spacing */
.post-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Preserve intentional blank paragraphs from the editor as vertical space */
.post-content p.spacer {
    height: 1.25rem;
    line-height: 1.25rem;
    margin: 0.5rem 0;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content h1:first-child,
.post-content h2:first-child,
.post-content h3:first-child,
.post-content h4:first-child,
.post-content h5:first-child,
.post-content h6:first-child {
    margin-top: 0;
}

/* Post tags styling */
.post-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.post-tags h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.tag-link {
    display: inline-block;
    background: #034332;
    color: #fff;
    padding: 0.4rem 0.8rem;
    margin: 0.2rem 0.3rem 0.2rem 0;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag-link:hover {
    background: #fff;
    color: #034332;
    border-color: #034332;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(3, 67, 50, 0.2);
}

/* Related posts styling */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

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

.related-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.related-image {
    display: block;
    position: relative;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 1rem;
}

.related-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.4;
}

.related-title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.related-title a:hover {
    color: #034332;
    text-decoration: none;
}

.related-meta {
    font-size: 0.85rem;
    color: #666;
}

.related-meta time {
    color: #666;
}

/* Video embeds */
.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 1rem 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title { font-size: 1.4rem; }
    .hero-excerpt { font-size: 1rem; }
    .header-content { flex-wrap: wrap; }
    /* Center logo area on mobile */
    .logo-banner-inner { justify-content: center; align-items: center; padding: 12px 0; min-height: 120px; flex-direction: column; }
    .header-ad-slot { display: flex; justify-content: center; align-items: center; width: 100%; margin-top: 12px; order: 2; }
    .logo-banner .site-logo { margin: 0 auto; display: block; }
    
    .main-navigation { display:none; width:100%; }
    .main-navigation.open { display:block; }
    .nav-menu { display:flex; align-items:center; background:#034332; padding: 8px 0; }
    .nav-menu li { display:flex; }
    .nav-spacer { display: none; }
    .nav-search { margin-left: auto; }
    .nav-menu li a { border:none; padding:10px 15px; display:block; }
    .mobile-menu-toggle { display:inline-block; margin-left:auto; }
    
    /* Show mobile drawer on mobile devices */
    .mobile-drawer { display: block !important; }
    .mobile-overlay { display: block !important; }
    /* Drawer remains hidden until toggled with .open */
    
    .content-grid {
        display: block !important;
        gap: 2rem;
    }
    
    .main-content {
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .sidebar {
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 2rem;
    }
    
    .logo-banner .site-logo img { width: 150px; }
    .top-links { display:none; }
    .top-bar-inner { flex-wrap: wrap; }
    
    .hero-excerpt {
        font-size: 0.95rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid { grid-template-columns: 1fr; }
    .post-row { grid-template-columns: 1fr; }
    .post-row .row-image img { aspect-ratio: 16 / 9; }
    .strip-track { 
        grid-auto-columns: minmax(220px, 70%); 
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta-detailed {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .post-content {
        padding: 1rem;
    }
    
    .sidebar {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c5530;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Persistent Radio Player */
.radio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #034332;
    color: white;
    padding: 12px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.radio-player.hidden {
    transform: translateY(100%);
}

.radio-player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.radio-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.radio-logo img {
    width: 60px;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.radio-details {
    flex: 1;
    min-width: 0;
}

.radio-station {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.radio-status {
    font-size: 12px;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radio-song-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.current-song {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    padding: 4px 12px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    position: relative;
    display: inline-block;
}

.current-song.scrolling {
    animation: scrollText 10s linear infinite;
}

.current-song.scrolling:hover {
    animation-play-state: paused;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    80% {
        transform: translateX(calc(-100% + 300px));
    }
    100% {
        transform: translateX(calc(-100% + 300px));
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .current-song {
        max-width: 200px;
        font-size: 13px;
        padding: 3px 10px;
    }
    
    .radio-song-info {
        max-width: 250px;
    }
    
    @keyframes scrollText {
        0% {
            transform: translateX(0);
        }
        20% {
            transform: translateX(0);
        }
        80% {
            transform: translateX(calc(-100% + 200px));
        }
        100% {
            transform: translateX(calc(-100% + 200px));
        }
    }
}

.radio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.radio-btn:hover {
    background: rgba(255,255,255,0.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

/* Hidden Player Toggle */
.radio-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.radio-toggle-btn {
    background: #034332;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.radio-toggle-btn:hover {
    background: #023a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Add bottom padding to body to account for fixed player */
body {
    padding-bottom: 80px;
}

body.player-hidden {
    padding-bottom: 0;
}

/* Mobile-specific styles - Hide radio player completely on mobile */
@media (max-width: 768px), (max-device-width: 768px) {
    .radio-player {
        display: none !important;
    }
    
    .radio-toggle {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
    
    body.player-hidden {
        padding-bottom: 0 !important;
    }
}

/* User Menu Styles */
.nav-user {
    position: relative;
}

.user-menu-toggle {
    cursor: pointer;
    position: relative;
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Ensure dropdown overlays nav bar */
.main-nav-wrap, .main-navigation { position: relative; z-index: 10; }
.user-menu { z-index: 1001; }

.main-navigation .user-menu a {
    /* Override top-nav link styles */
    display: block !important;
    height: 46px !important;
    line-height: 46px !important;
    border-left: none !important;
    background: #fff !important;
    color: #333 !important;
    text-align: left !important;
    font-size: 15px !important;
    padding: 0 14px !important;
}

.main-navigation .user-menu a:hover,
.main-navigation .user-menu a:focus {
    background: #f8f9fa !important;
    color: #034332 !important;
}

.nav-user:hover .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.user-menu a:last-child {
    border-bottom: none;
}

.user-menu a:hover {
    background-color: #f8f9fa;
    color: #034332;
}

.user-menu a i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

/* Mobile user menu */
@media (max-width: 768px) {
    /* Mobile drawer dropdown: render as a visible block under the toggle */
    .nav-user { width: 100%; }
    .user-menu {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(255,255,255,.25);
        background: rgba(0,0,0,.15);
        margin-top: 6px;
    }
    .user-menu a {
        padding: 10px 12px !important;
        border-bottom: 1px solid rgba(255,255,255,.2) !important;
        color: #fff !important;
        height: auto !important;
        line-height: 1.4 !important;
    }
    .user-menu a:hover { background: rgba(255,255,255,.08) !important; color:#fff !important; }
}

/* Flash Messages */
.flash-messages {
    margin: 12px 0 16px;
}

.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.flash-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.flash-message.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* WordPress Block Styles */
.wp-block-list {
    list-style-type: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.wp-block-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.wp-block-list ul {
    list-style-type: circle;
    margin: 0.5rem 0 0.5rem 1rem;
}

.wp-block-list ol {
    list-style-type: decimal;
    margin: 0.5rem 0 0.5rem 1rem;
}

/* Ensure nested lists work properly */
.wp-block-list ul ul {
    list-style-type: square;
}

.wp-block-list ol ol {
    list-style-type: lower-alpha;
}

.wp-block-list ol ul {
    list-style-type: disc;
}

.wp-block-list ul ol {
    list-style-type: decimal;
}

/* WordPress Block Alignment Classes */
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.alignwide {
    margin-left: -2rem;
    margin-right: -2rem;
    max-width: none;
    width: auto;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    width: auto;
}

/* WordPress Block Image Alignment */
.wp-block-image.aligncenter {
    text-align: center;
}

.wp-block-image.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.wp-block-image.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.wp-block-image img {
    height: auto;
    max-width: 100%;
}

/* Clear floats after aligned elements */
.alignleft::after,
.alignright::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alignwide,
    .alignfull {
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    .alignleft,
    .alignright {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
        text-align: center;
    }
}

/* Lightbox Modal Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    padding: 60px 20px 20px 20px; /* Add padding to prevent close button from being cut off */
    box-sizing: border-box;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-image:hover {
    transform: scale(1.02);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10000;
    opacity: 0.8;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.lightbox-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%);
    opacity: 0.3;
}

.lightbox-nav-left {
    left: 20px;
}

.lightbox-nav-right {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
}

/* Make post images clickable */
.post-content img {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.post-content img:hover {
    opacity: 0.9;
}

/* Make featured image clickable */
.post-featured-image img {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.post-featured-image img:hover {
    opacity: 0.9;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 50px 15px 15px 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-nav-left {
        left: 10px;
    }
    
    .lightbox-nav-right {
        right: 10px;
    }
    
    .lightbox-counter {
        top: 15px;
        left: 15px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .lightbox-caption {
        bottom: -35px;
        font-size: 12px;
        padding: 8px 12px;
    }
}