/**
 * Common color variables
 * Shared between Angular app and static pages
 *
 * These should match the Ionic variables in src/theme/variables.scss
 */

:root {
  /* Primary brand colors */
  --primary: #5bbabe;
  --primary-light: #6ad6db;
  --primary-dark: #4a9a9d;
  --primary-darker: #327578; /* For white text on dark bg - 5.5:1 contrast WCAG AA */
  --primary-text: #2d6769; /* For text on white bg - 5.8:1 contrast WCAG AA */
  --primary-fade: rgba(91, 186, 190, 0.08);

  /* Secondary/accent colors */
  --secondary: #e37e40;
  --secondary-light: #e49d14;

  /* Text colors - WCAG AA compliant (4.5:1 contrast on white) */
  --text-primary: #222;
  --text-secondary: #555;
  --text-muted: #666;
  --text-tertiary: #999; /* Decorative only, not for essential text */

  /* Background colors */
  --bg-white: #fff;
  --bg-gray: #f5f5f5;
  --bg-light-gray: #fafafa;
  --bg-light: #f8f9fa;
  --bg-footer: #fafafa;

  /* Border colors */
  --border-color: #e5e5e5;
  --border-light: #efefef;

  /* Status colors */
  --success: #2dd36f;
  --warning: #ffc409;
  --danger: #f53d3d;

  /* Rating */
  --rating-color: #f5a623;

  /* Review highlights */
  --positive-color: #4caf50;
  --negative-color: #ef5350;

  /* Footer (dark theme) */
  --footer-bg: #2d3436;
  --footer-bottom-bg: #1e2324;
  --footer-text: #b2bec3;
  --footer-text-light: #dfe6e9;
  --footer-link-hover: white;
}


/**
 * Shared CSS styles for static SEO pages
 * Designed to match the place detail page UI
 *
 * Colors are defined in colors.css
 * Loaded by server at startup - see server/utils/styles.ts
 */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-white);
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* Layout */
.page-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.content-wrapper { display: flex; gap: 24px; margin-top: 24px; }
.main-content { flex: 1; min-width: 0; }
.sidebar { width: 340px; flex-shrink: 0; }

/* Icons */
.icon { width: 24px; height: 24px; flex-shrink: 0; }
.back-icon { width: 24px; height: 24px; }
.btn-icon { width: 18px; height: 18px; }
.grid-btn-icon { width: 20px; height: 20px; filter: invert(1); }
.ai-icon { width: 20px; height: 20px; }
.highlight-icon { width: 16px; height: 16px; }
.footer-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* Header - Full Width */
.page-header {
  width: 100%;
  background: var(--bg-white);
}
.header-container {
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.back-btn { display: flex; align-items: center; justify-content: center; padding: 4px; }
.back-btn:hover { opacity: 0.7; }
.logo { display: flex; align-items: center; }
.logo:hover { opacity: 0.8; }
.logo-img { height: 24px; width: auto; }

/* Header Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 14px;
  color: var(--text-primary);
  padding: 8px 12px;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-separator {
  color: var(--text-muted);
  font-size: 12px;
}
.nav-btn-signup {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--primary-darker);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  transition: background 0.2s;
}
.nav-btn-signup:hover {
  background: var(--primary-dark);
  color: white;
}

/* Title section */
.title-section { margin-bottom: 16px; }
.title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.place-title { font-size: 24px; font-weight: 600; color: var(--text-primary); margin: 0 0 4px; }
.title-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border: 1px solid var(--border-color); border-radius: 8px;
  font-size: 14px; color: var(--text-primary); background: var(--bg-white);
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--text-secondary); }

/* Rating */
.rating-row { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.rating-row:hover { opacity: 0.8; }
.stars { color: var(--rating-color); font-size: 16px; letter-spacing: 1px; }
.rating-label { font-size: 14px; color: var(--text-muted); }

/* Review source links */
.review-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}
.review-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--primary-darker);
  text-decoration: none;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.2s;
}
.review-source-link:hover {
  background: var(--bg-gray);
  border-color: var(--primary-darker);
}
.review-source-link .google-icon { width: 18px; height: 18px; flex-shrink: 0; }
.review-source-link .source-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); }

/* Legacy Google reviews link (keep for backward compatibility) */
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--primary-darker);
  text-decoration: none;
  transition: opacity 0.2s;
}
.google-reviews-link:hover { opacity: 0.8; }
.google-icon { width: 20px; height: 20px; flex-shrink: 0; filter: invert(47%) sepia(89%) saturate(387%) hue-rotate(131deg) brightness(93%) contrast(92%); }

/* Photo gallery */
.photo-gallery { position: relative; margin-bottom: 24px; border-radius: 2rem; overflow: hidden; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 350px 250px; gap: 8px; }
.photo-grid.single { grid-template-columns: 1fr; grid-template-rows: 350px; }
.photo-main { grid-column: span 2; }
.gallery-img {
  width: 100%; height: 100%; object-fit: cover; background: var(--bg-gray);
  display: block;
}
.show-photos-btn {
  position: absolute; bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: rgba(0,0,0,0.7); color: white;
  border-radius: 10px; font-size: 14px; font-weight: 500;
}
/* Host section */
.host-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
.host-info { display: flex; align-items: center; gap: 12px; }
.host-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e91e63;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}
.host-details { }
.host-name { font-size: 15px; color: var(--text-primary); }
.host-name strong { font-weight: 600; }
.host-joined { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.btn-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--primary-text);
  border-radius: 8px;
  color: var(--primary-text);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s;
  width: fit-content;
}
.btn-message:hover { background: var(--primary-darker); color: white; }
.btn-message .icon { filter: invert(32%) sepia(20%) saturate(900%) hue-rotate(140deg) brightness(90%) contrast(95%); }
.btn-message:hover .icon { filter: brightness(0) invert(1); }

/* Claim banner - contained width at top */
.claim-banner-wrapper {
  padding: 16px 24px;
}
.claim-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  background: var(--bg-gray);
  border-radius: 12px;
}
.claim-banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.claim-icon { width: 18px; height: 18px; color: var(--text-muted); }
.btn-claim {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--primary-darker);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-claim:hover { background: var(--primary-dark); color: white; }

/* Listing actions (Report, Claim) */
.listing-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.listing-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-light-gray);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}
.listing-action:hover { background: var(--bg-gray); color: var(--text-secondary); }
.action-icon { width: 16px; height: 16px; }

/* Contact section */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light-gray);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 200px;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-card-icon { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.contact-card-phone { justify-content: space-between; }
.phone-masked { flex: 1; font-family: monospace; letter-spacing: 1px; }
.contact-card-reveal { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.6; }
.contact-card-phone:hover .contact-card-reveal { opacity: 1; }

/* Quick info cards */
.quick-info-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-color); }
.quick-info-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 16px 12px; background: var(--bg-light-gray); border-radius: 12px;
}
.quick-info-icon { width: 24px; height: 24px; margin-bottom: 8px; color: var(--text-muted); }
.quick-info-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.quick-info-value { font-size: 14px; font-weight: 600; color: var(--text-primary); }

/* Tags section (Amenities, Activities, Terrain cards) */
.tags-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.tags-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light-gray);
  border-radius: 16px;
}
.tags-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.tags-card-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tags-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.tags-card-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-primary);
}

/* About section */
.about-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-color); }
.section-title { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.about-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.show-more { color: var(--text-primary); font-weight: 500; display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; }

/* Review section */
.review-section { margin-bottom: 24px; }
.review-header { margin-bottom: 16px; }
.review-header-title { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 600; color: var(--text-primary); }
.review-count { color: var(--text-muted); font-weight: 400; }

/* User reviews */
.user-reviews-card { background: var(--bg-gray); border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.user-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.user-review-item { }
.user-review-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.user-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; flex-shrink: 0;
}
.user-review-meta { flex: 1; }
.user-review-author { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.user-review-stars { color: var(--rating-color); font-size: 12px; letter-spacing: 1px; }
.user-review-date { font-size: 13px; color: var(--text-muted); flex-shrink: 0; }
.user-review-text { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }
.show-more-reviews {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; margin-top: 16px;
  border: 1px solid var(--primary-text); border-radius: 24px;
  color: var(--primary-text); font-size: 14px; font-weight: 500;
  background: transparent; cursor: pointer; transition: all 0.2s;
}
.show-more-reviews:hover { background: var(--primary-darker); color: white; }

/* AI review card */
.ai-review-card { background: var(--bg-gray); border-radius: 12px; padding: 24px; }
.ai-review-title { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.ai-review-text { font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; }
.highlights-section, .considerations-section { margin-bottom: 16px; }
.highlights-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.highlights-title.positive { color: var(--positive-color); }
.highlights-title.negative { color: var(--negative-color); }
/* Use CSS filter to colorize SVG images */
.highlights-title.positive .icon { filter: invert(52%) sepia(81%) saturate(412%) hue-rotate(93deg) brightness(94%) contrast(93%); }
.highlights-title.negative .icon { filter: invert(44%) sepia(72%) saturate(1798%) hue-rotate(335deg) brightness(91%) contrast(95%); }
.highlight-list { list-style: none; }
.highlight-item { display: flex; align-items: flex-start; gap: 8px; padding: 4px 0; font-size: 14px; color: var(--text-secondary); }
.highlight-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.highlight-dot.positive { background: var(--positive-color); }
.highlight-dot.negative { background: var(--negative-color); }

/* Booking card (sidebar) */
.booking-card {
  position: sticky; top: 24px;
  background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 12px;
  padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.booking-title { font-size: 18px; font-weight: 600; text-align: center; margin-bottom: 16px; }
.booking-price { text-align: center; margin-bottom: 12px; }
.price-from { font-size: 14px; color: var(--text-muted); }
.price-amount { font-size: 28px; font-weight: 700; color: var(--text-primary); }
.price-unit { font-size: 14px; color: var(--text-muted); }
.booking-card .rating-row { justify-content: center; margin-bottom: 16px; }
.btn-primary {
  display: block; width: 100%; padding: 14px 24px;
  background: var(--primary-darker); color: white; border: none; border-radius: 8px;
  font-size: 16px; font-weight: 600; text-align: center; cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); color: white; }

/* Location Section (below booking card) */
.location-section { margin-top: 24px; }
.location-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.static-map-link { display: block; border-radius: 12px; overflow: hidden; }
.static-map-link:hover { opacity: 0.95; }
.static-map-img { display: block; width: 100%; height: auto; border-radius: 12px; }
.static-map-fallback {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border: 1px solid var(--border-color); border-radius: 8px;
  color: var(--text-secondary); font-size: 14px; transition: background 0.2s;
}
.static-map-fallback:hover { background: var(--bg-gray); color: var(--text-primary); }
.static-map-fallback .icon { width: 16px; height: 16px; }

/* Breadcrumbs */
.breadcrumbs {
  margin: 16px 0;
  padding: 0;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 4px;
  font-size: 14px;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-item a {
  color: var(--text-secondary);
}
.breadcrumb-item a:hover {
  color: var(--primary);
}
.breadcrumb-separator {
  color: var(--text-muted);
}
.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 500;
}

/* Source Attribution */
.source-attribution {
  padding: 16px 20px;
  margin: 16px 0;
  background: var(--bg-light);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.source-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.source-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.source-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.source-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.source-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.source-link {
  color: var(--primary-text);
  font-weight: 500;
}
.source-link:hover {
  text-decoration: underline;
}

/* Listing article wrapper */
.listing-article {
  width: 100%;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .content-wrapper { flex-direction: column; }
  .sidebar { width: 100%; order: -1; }
  .booking-card { position: static; margin-bottom: 24px; }
  .quick-info-cards { grid-template-columns: repeat(3, 1fr); }
  .tags-section { grid-template-columns: 1fr; gap: 16px; }
  .tags-card { padding: 16px; gap: 12px; }
  .tags-card-title { font-size: 16px; }
  .user-reviews-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: 250px; }
  .photo-main { grid-column: span 1; }
  .photo-grid > div:not(.photo-main) { display: none; }
  .place-title { font-size: 20px; }
  .title-row { flex-direction: column; }
  .title-actions { width: 100%; justify-content: flex-end; }
  .contact-section { gap: 12px; }
  .contact-cards { flex-direction: column; }
  .contact-card { min-width: 100%; }
  .quick-info-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .quick-info-card { padding: 12px 8px; }
  /* Host section mobile */
  .host-section { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-message { width: 100%; justify-content: center; }
  /* Claim banner mobile */
  .claim-banner { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .btn-claim { width: auto; justify-content: center; }
  /* Hide back button on mobile, keep nav */
  .back-btn { display: none; }
  .header-nav { gap: 4px; }
  .nav-link { padding: 8px 8px; font-size: 13px; }
  .nav-btn-signup { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  /* Hide "Become a Host" text on very small screens */
  .nav-link:first-child, .nav-separator { display: none; }
}


/**
 * Common footer styles (dark design)
 * Used by: Angular (via angular.json styles) and static pages (via server)
 *
 * Colors are defined in colors.css
 */

/* Main Footer (dark design) */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__main {
  padding: 48px 0;
}

.footer__main > .footer__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer__main > .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Brand section */
.footer__brand {
  max-width: 280px;
}

@media (max-width: 767px) {
  .footer__brand {
    max-width: 100%;
    text-align: center;
  }
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--footer-text);
  margin: 0 0 20px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.2s;
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__social-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer__social a:hover .footer__social-icon {
  opacity: 1;
}

/* Links columns */
.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .footer__links {
    grid-template-columns: repeat(4, auto);
    gap: 48px;
  }
}

.footer__heading {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--footer-text-light);
  margin: 0 0 16px;
}

.footer__column nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__column a {
  font-size: 14px;
  color: var(--footer-text);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.footer__column a:hover {
  color: var(--footer-link-hover);
}

/* Copyright bar */
.footer__bottom {
  background: var(--footer-bottom-bg);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom span {
  font-size: 13px;
  color: var(--footer-text);
}

@media (max-width: 767px) {
  .footer__bottom {
    text-align: center;
  }
}

/* Page disclaimer (for static pages) */
.page-disclaimer {
  font-size: 13px;
  color: var(--text-muted, #999);
  margin: 48px 0 24px;
  padding: 16px;
  background: var(--bg-light-gray, #fafafa);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}