
/* Layout */
.page-layout {
  display: flex;
  max-width: 1100px;
  margin: 40px auto;
  gap: 20px;
  padding: 0 20px;
}

/* Main Content (70%) */
.main-content {
  flex: 70%;
}

/* Sidebar (30%) */
.sidebar {
  flex: 30%;
}

/* Sidebar boxes */
.sidebar-box {
  background: white;
  padding: 0px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.sidebar-box h3 {
  color: #2271B3;
  margin-bottom: 10px;
}

/* Links */
.sidebar-box ul {
  list-style: none;
}

.sidebar-box ul li {
  margin-bottom: 8px;
}

.sidebar-box ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.9em;
}

.sidebar-box ul li a:hover {
  color: #ff7f00;
}

/* Ad placeholder */
.ad-box {
  text-align: center;
}

.ad-placeholder {
  background: #eee;
  padding: 40px 10px;
  border-radius: 8px;
  font-size: 0.9em;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .page-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }
}

/* Campsite info */
.campsite-info {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.campsite-info h3 {
  color: #2271B3;
  margin-bottom: 10px;
}

.campsite-info ul {
  list-style: none;
}

.campsite-info li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

/* Review text */
.review-text {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.review-text h2 {
  color: #82BE21;
}




.sidebar-box {
  transition: 0.2s ease;
}

.sidebar-box:hover {
  transform: translateY(-3px);
}

body {
  background: #f5f7fa;
  font-family: Arial, sans-serif;
}



.filters select, .filters button {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.destination-content p {
  margin: 5px 0;
}



.search-box, .filter-select, .filter-button {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.search-box {
  flex: 1 1 250px;
  min-width: 200px;
}

.filter-select {
  flex: 0 0 150px;
  background: #fff;
  cursor: pointer;
}

.filter-button {
  background: #82BE21;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-button:hover {
  background: #1f5d37;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box, .filter-select, .filter-button {
    width: 100%;
  }
}

.filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
  margin: 30px auto;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.filter-group {
  flex: 1;
  min-width: 180px;
}

.filters input,
.filters select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 1em;
}

.filter-btn {
  background: #ff7f00;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.filter-btn:hover {
  background: #e66f00;
}

.reset-btn {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  text-decoration: none;
  color: #666;
}

/* Cards layout */
.review-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

.destination {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.destination:hover {
  transform: translateY(-5px);
}

.destination img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.destination-content {
  padding: 15px;
}

.stars {
  color: #ffb400;
  margin-bottom: 5px;
  font-size: 1.5em;
}



/* ---------------------- Card content bullets fix ---------------------- */
.destination-content ul {
  list-style: disc;          /* ensure bullets appear */
  padding-left: 20px;        /* space for bullets */
  margin: 10px 0;            /* space above/below list */
}

.destination-content li {
  overflow-wrap: break-word; /* prevent text overflow */
}

/* Make column images full-width on mobile */
@media (max-width: 768px) {
  .review-columns img {
    width: 100% !important;  /* force full width */
    max-width: 100% !important;
    height: auto;
    display: block;
  }

  .review-columns .column {
    width: 100% !important;   /* ensure column itself fills parent */
  }

  .campsite-info, .review-text {
    width: 100% !important;
  }
}

/* Mobile fix for campsite.php cards */
@media (max-width: 768px) {
  /* Make main content full width */
  .main-content {
    flex: 100%;           /* full width */
    max-width: 100%;      /* remove any max-width restriction */
    padding: 0 10px;      /* optional padding */
  }

  /* Remove any max-width on review-container */
  .review-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /* Make review-columns full width */
  .review-columns {
    grid-template-columns: 1fr; /* single column layout */
    gap: 20px;
    padding: 0;
    width: 100%;
  }

  /* Ensure columns inside review-columns are full width */
  .review-columns .column {
    width: 100%;
  }

  /* Ensure images inside columns are full width */
  .review-columns img {
    width: 100% !important;
    height: auto;
  }

  /* Campsite info and review text full width */
  .campsite-info, .review-text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  /* Make main content and review container full width */
  .main-content, 
  .review-container,
  .review-columns,
  .review-columns .column,
  .campsite-info,
  .review-text {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Make images stretch full width */
  .review-columns img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  

  /* Optional small padding around content */
  .main-content {
    padding: 0 10px !important;
  }
}

/* Make both campsite images the same size */
.review-columns .column img {
  width: 100%;
  height: 250px;        /* pick a consistent height */
  object-fit: cover;    /* crops image nicely */
  border-radius: 10px;
}

/* Add space only under the first image */
.review-columns .column:first-child img {
  margin-bottom: 25px;
  display: block;
}

@media (max-width: 768px) {
  nav {
    padding: 8px 15px;      /* smaller vertical padding */
    box-sizing: border-box;  /* ensure padding doesn’t add extra height */
  }

  nav ul {
    top: 50px;               /* adjust dropdown menu if needed */
    width: 180px;            /* narrow dropdown on mobile */
  }

  nav .menu-toggle {
    font-size: 1.6em;        /* smaller hamburger icon */
  }
}
/* Footer */
footer {
  background: #82BE21;   /* green background */
  color: #fff;           /* white text */
  margin-top: 40px;
  padding: 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Ad section */
.footer-ad {
  margin-bottom: 25px;
}

.footer-ad p {
  font-size: 0.9em;
  margin-bottom: 10px;
  color: #fff;
}

.footer-ad .ad-placeholder {
  background: rgba(0,0,0,0.15); /* subtle contrast box */
  padding: 30px;
  border-radius: 8px;
  color: #fff;
}

/* Links */
.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #ff7f00;
}

/* Disclaimer */
.footer-disclaimer {
  font-size: 0.85em;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

/* Copyright */
.footer-copy {
  font-size: 0.8em;
  color: #e0e0e0;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-ad .ad-placeholder {
    padding: 20px;
  }

  .footer-links a {
    display: block;
    margin: 5px 0;
  }
}
#footer {
  background: #82BE21;
  color: #fff;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.policy-container h1 {
  color: #2271B3;
  margin-bottom: 15px;
}

.policy-container h2 {
  margin-top: 20px;
}

.policy-container p {
  margin: 10px 0;
  line-height: 1.6;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.about-container h1 {
  color: #2271B3;
  margin-bottom: 15px;
}

.about-container h2 {
  margin-top: 20px;
}

.about-container p {
  margin: 10px 0;
  line-height: 1.6;
}



/* Left menu */
.nav-left {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Login button (right side) */
.login-btn {
  color: white;
  text-decoration: none;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  padding: 8px 15px;
  border-radius: 6px;
  transition: 0.2s;
}

.login-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .login-btn {
    display: none; /* hide on mobile (keeps menu clean) */
  }

  nav {
    justify-content: flex-end;
  }

  .nav-left {
    display: none; /* handled by hamburger */
  }
}
/* Hide mobile login in desktop nav */
.login-mobile {
  display: none;
}

/* Show inside hamburger on mobile */
@media (max-width: 768px) {
  .login-mobile {
    display: block;
  }

  nav ul li a {
    color: white; /* optional: match dropdown style */
  }
}

.sidebar-section {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.sidebar-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.sidebar-section ul {
  list-style: none;
  padding: 0;
}

.sidebar-section li {
  margin-bottom: 8px;
}

.sidebar-section a {
  text-decoration: none;
  color: #333;
}

.sidebar-section a:hover {
  color: #2e7d32; /* your green */
}

.forum-widget {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.forum-widget h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.forum-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.forum-item {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.forum-item:last-child {
  border-bottom: none;
}

.forum-title {
  font-weight: 600;
  text-decoration: none;
  color: #333;
  display: block;
}

.forum-title:hover {
  color: #2e7d32;
}

.forum-meta {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.forum-time {
  color: #aaa;
}

.no-posts {
  text-align: center;
  color: #2e7d32;
  font-weight: 500;
}

.forum-login-msg {
  font-size: 14px;
}

.forum-login-msg a {
  color: #2e7d32;
  text-decoration: none;
}


.start-discussion { 
   font-weight: 500; 
   text-decoration: none; 
}
.start-discussion:hover { 
   text-decoration: underline; 
}

/* Container box styling */
.start-discussion-container {
    background-color: #ffffff;
    border: 2px solid #82BE21;
    border-radius: 12px;
    padding: 25px 20px;
    width: 100%;                 /* responsive width for smaller screens */
    box-sizing: border-box; /* include padding in width */
    margin: 0 0 30px 0;   /* vertical spacing only */
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-discussion-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Heading */
.start-discussion-container h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #333333;
}

/* Description */
.start-discussion-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

/* Button styling */
.start-discussion-btn {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.start-discussion-btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .start-discussion-container {
        padding: 20px 15px;      /* slightly smaller padding on tablets */
    }

    .start-discussion-container h3 {
        font-size: 1.4em;        /* smaller headline */
    }

    .start-discussion-btn {
        padding: 10px 25px;      /* smaller button for smaller screens */
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .start-discussion-container {
        padding: 15px 10px;      /* compact on phones */
    }

    .start-discussion-container h3 {
        font-size: 1.2em;
    }

    .start-discussion-container p {
        font-size: 0.9em;
    }

    .start-discussion-btn {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}



.fuel-ticker strong {
    margin-right: 10px;
}

.fuel-ticker marquee {
    display: inline-block;
    margin-left: 10px;
    color: #FF7F00;               /* green accent text */
}


.user-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
}

.user-menu a {
    margin-left: 10px;
    text-decoration: none;
    font-weight: 500;
}

.login-btn,
.register-btn {
    color: #2e7d32;
}

.logout-btn {
    color: #c62828;
}

.welcome-user {
    margin-right: 10px;
    font-weight: 600;
}

/* ===== EUROCAMP FUEL TICKER ===== */
/* ===== EUROCAMP FUEL TICKER – FLAT ===== */
.fuel-ticker {
    background: #FF6600; /* Eurocamp orange */
    border-top: 2px solid #e10600;
    border-bottom: 2px solid #e10600;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 40px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    border-radius: 0; /* remove corners */
}

/* Fixed label flush left */
.ticker-label {
    position: absolute;
    left: 0;           /* flush to left edge */
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 0 10px;  /* optional horizontal padding inside label */
    background: #FF6600; /* matches ticker bg */
    z-index: 2;
}

/* Scrolling track */
.ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    margin-left: 140px; /* leave space for fixed label width */
}

/* Each item */
.ticker-item {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    padding: 0 40px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Country name */
.ticker-item strong {
    font-weight: 600;
    margin: 0 4px;
}

/* Scroll animation */
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.fuel-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ticker-item, .ticker-label {
        font-size: 14px;
        
    }
    .fuel-ticker {
        height: 35px;
    }
    .ticker-track {
        margin-left: 120px; /* smaller space for mobile */
    }
}

.campsite-info i {
  width: 20px;
  color: #FFAD00;
  margin-right: 5px;
}

.main-column img {
  transition: transform 0.3s ease;
}

.main-column img:hover {
  transform: scale(1.02);
}

.campsite-weather {
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    border-top: 4px solid #82BE21; /* green brand bar */
}

.campsite-weather h3 {
    margin-bottom: 12px;
    color: #2271B3;
    font-size: 1.1em;
}

/* Top section */
.weather-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-info img {
    width: 50px;
    height: 50px;
}

.weather-details {
    display: flex;
    flex-direction: column;
}

.weather-details .temp {
    font-weight: 600;
    font-size: 1.4em;
    color: #333;
}

.weather-details .desc {
    font-size: 0.9em;
    color: #666;
}

.weather-details .extra {
    font-size: 0.8em;
    color: #888;
}

/* Forecast strip */
.weather-forecast {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.forecast-day {
    text-align: center;
    flex: 1;
}

.forecast-day img {
    width: 32px;
    height: 32px;
    margin: 5px 0;
}

.forecast-day .day {
    display: block;
    font-size: 0.75em;
    color: #999;
}

.forecast-day .temps {
    display: block;
    font-size: 0.85em;
    font-weight: 500;
}

/* Mobile tweak */
@media (max-width: 768px) {
    .campsite-weather {
        padding: 16px;
    }

    .weather-info {
        gap: 10px;
    }

    .weather-info img {
        width: 40px;
        height: 40px;
    }
}

.campsite-weather {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Desktop hover effect */
@media (hover: hover) and (pointer: fine) {
    .campsite-weather:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
}

.campsite-weather {
    will-change: transform;
}

.forum-reviews-box {
  background: #FFAD00;
  border-left: 5px solid #FFAD00;
  padding: 20px;
  margin-top: 25px;
  border-radius: 8px;
}

.forum-reviews-box h3 {
  margin-bottom: 10px;
  color: #222;
}

.forum-reviews-box p {
  margin-bottom: 15px;
  color: #555;
}

.forum-btn {
  display: inline-block;
  background: #FFAD00;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.forum-btn:hover {
  background: #FFAD00;
}

.sidebar-box {
  flex-shrink: 0;
}

.sidebar-column {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.sidebar-box {
  display: block;
  width: 100%;
}
#map {
  height: 250px;
  width: 100%;
  min-height: 250px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.sidebar-box {
  height: auto;
  display: block;
}



.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 500;
}

.welcome-user {
  color: white;
}

.logout-btn {
  color: white;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.logout-btn:hover {
  background: rgba(255,255,255,0.3);
}

.login-btn {
  color: white;
  text-decoration: none;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  padding: 8px 15px;
  border-radius: 6px;
}

/* Map popup card */
.map-card {
  width: 220px;
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background: white;
}

.map-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.map-card-body {
  padding: 10px;
}

.map-card h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.map-rating {
  color: #f5b301 !important;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.map-btn {
  display: block;
  text-align: center;
  background: #82BE21;
  color: white;
  padding: 6px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

.map-btn:hover {
  background: #6fa61b;
}




.leaflet-popup-content-wrapper {
  border-radius: 12px;
  padding: 5px;
}

.leaflet-popup-content {
  margin: 5px;
}

.map-card img {
  transition: transform 0.3s ease;
}

.map-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .map-card {
    width: 180px;   /* shrink whole card */
  }

  .map-card img {
    height: 80px;   /* smaller image on mobile */
  }

  .map-card h3 {
    font-size: 13px;
  }

  .map-btn {
    font-size: 12px;
    padding: 5px;
  }
}

.leaflet-popup-content,
.leaflet-popup-content * {
  font-family: 'Poppins', sans-serif;
}

.leaflet-popup-content h3 {
  color: #222 !important;
}

.leaflet-popup-content .map-rating {
  color: #f5b301 !important;
}


.campsite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* Card */
.map-card.campsite-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  text-decoration: none;
  color: #333;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.map-card.campsite-card:hover {
  transform: translateY(-4px);
}

/* Image */
.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Rank badge */
.rank-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #82BE21;
  color: white;
  font-size: 0.8em;
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: 600;
}

/* Body */
.card-body {
  padding: 15px;
  border-top: 1px solid #eee;
}

.card-body h3 {
  font-size: 1.1em;
  font-weight: 600;
}

/* Ratings layout */
.card-ratings {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

/* Individual rating blocks */
.rating-block {
  display: flex;
  flex-direction: column;
  font-size: 0.95em;
}

.rating-block .label {
  color: #777;
  font-size: 0.95em;
  margin-bottom: 3px;
}

.rating-block .value {
  font-size: 1.1em;
  font-weight: 600;
}

/* Colour accents */
.rating-block.eurocamp .value {
   font-size: 1.2em;
   color: #f5a623;
}

.rating-block.hub .value {
  color: #82BE21;
}

.destination {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 20px 0;
  padding: 10px;
}

.pagination a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  min-width: 36px;
  text-align: center;
}

.pagination a.active {
  background: #82BE21;
  color: #fff;
  border-color: #82BE21;
}

@media (max-width: 768px) {
  .pagination a {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 32px;
  }
}

.news-widget {
  background: #fff;
  padding: 10px;
}

.news-item {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

.news-title {
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.3;
}

.news-date {
  font-size: 0.75em;
  color: #777;
  margin-top: 4px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.campsite-layout {
  display: grid;
  grid-template-columns: 7fr 3fr; /* 70 / 30 */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.campsite-layout > * {
  min-width: 0;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .campsite-layout {
    grid-template-columns: 1fr;
  }
}

.news-widget h3 {
  color: #2271B3;
  font-weight: 700;
  letter-spacing: 0.3px;
}
