/* Theme */
:root {
  --bg: #fdf9f3;
  --bg-2: #f5efe6;
  --text: #4b2e2a;
  --muted: #6d4d47;
  --card: #ffffff;
  --brown: #4b2e2a;
  --accent: #ffffff;
  --shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Dark theme removed; site runs in light mode only */

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; color: var(--brown); margin: 0 0 12px; }
h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
p { margin: 0 0 12px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 12px; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.section { padding: 64px 0; }
.section-alt { background: var(--bg-2); }
.section-title { margin-bottom: 24px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.section-intro { max-width: 760px; margin: 0 auto 16px; color: var(--muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; border: 1px solid transparent; background: var(--brown); color: #fff; box-shadow: var(--shadow); cursor: pointer; transition: transform .15s ease, opacity .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brown); color: #fdf9f3; }
.btn-secondary { background: var(--card); color: var(--text); border-color: rgba(0,0,0,0.06); }
.btn-link { background: transparent; color: var(--text); box-shadow: none; padding: 0; border: none; }
.btn-text { background: transparent; color: var(--text); box-shadow: none; border: 1px solid rgba(0,0,0,0.08); padding: 8px 12px; border-radius: 10px; }
.btn-icon { padding: 8px; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.theme-btn { border-radius: 50%; position: relative; }
.icon-moon::before, .icon-sun::before { content: ""; display: block; width: 20px; height: 20px; background-size: contain; background-position: center; background-repeat: no-repeat; }
.icon-moon::before { background-image: radial-gradient(circle at 60% 40%, var(--text) 55%, transparent 56%), radial-gradient(circle at 55% 45%, transparent 62%, var(--text) 63%); border-radius: 50%; }
.icon-sun::before { background-image: radial-gradient(circle, var(--text) 40%, transparent 41%); box-shadow: 0 0 0 3px var(--text) inset; border-radius: 50%; }
.btn-whatsapp { background: #25D366; color: #fff; }

/* Dark theme button adjustments */
/* Dark theme button override removed */

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(180%) blur(8px); background: color-mix(in srgb, var(--bg), transparent 15%); border-bottom: 1px solid rgba(0,0,0,0.06); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 36px; height: 36px; border-radius: 50%; }
.brand-name { font-weight: 700; }
.main-nav ul { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.main-nav a { padding: 10px 8px; border-radius: 8px; }
.main-nav a:hover { background: var(--bg-2); }

/* Mobile menu */
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); background: var(--card); box-shadow: var(--shadow); }
.menu-icon { display: block; width: 20px; height: 2px; background: var(--text); margin: 0 auto; position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--text); }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.mobile-nav { display: none; background: color-mix(in srgb, var(--bg), transparent 6%); border-top: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 16px 16px; display: grid; gap: 6px; }
.mobile-nav a, .mobile-nav button { display: block; width: 100%; text-align: left; padding: 10px 8px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.06); background: var(--card); }

/* Hero */
.hero { position: relative; min-height: 86vh; display: grid; place-items: center; background-size: cover; background-position: center; background-repeat: no-repeat; transition: background-image 0.8s ease-in-out; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.35)); }
.hero-content { position: relative; text-align: center; color: #fff; padding: 40px 0; animation: fadeUp 800ms ease both; }
.hero-logo { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 12px; box-shadow: var(--shadow); }
.hero-title { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.hero-subtitle { color: #fff; opacity: 0.95; }
.hero-actions { margin-top: 18px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Grid & Cards */
.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--card); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; box-shadow: var(--shadow); padding: 16px; text-align: left; }
.card-body { padding: 12px 4px 0; }
.persona { text-align: left; cursor: pointer; }
.persona h3 { margin-top: 0; }
.persona .persona-teaser { padding-top: 0; }
.persona .persona-teaser p { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; font-size: 15px; line-height: 1.6; color: var(--muted); }
.expand-hint { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(0,0,0,0.6); margin-top: 6px; }
.expand-hint .expand-icon { width: 16px; height: 16px; color: var(--brown); }
.persona:hover .expand-hint, .activity-card .expand-hint:hover { color: var(--brown); }
.persona-expanded { margin-top: 12px; }
.persona-expanded .video-wrap { margin-bottom: 12px; }
.persona-host { margin-bottom: 18px; display: none; position: relative; }
.persona-host.open { display: block; animation: fadeIn .25s ease; }
.persona[aria-expanded="true"] { box-shadow: 0 0 0 2px color-mix(in srgb, var(--brown), transparent 75%), var(--shadow); }
.persona .persona-close { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08); background: var(--card); color: var(--text); display: grid; place-items: center; box-shadow: var(--shadow); }
/* Expanded host close button floats to top-right inside the content flow */
.persona-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.persona-header h3 { margin: 0; }
.persona-host .persona-close { position: static; float: none; width: 32px; height: 32px; margin: 0; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08); background: var(--card); box-shadow: var(--shadow); display: inline-flex; align-items: center; justify-content: center; }
.persona-expanded-enter { max-height: 0; opacity: 0; overflow: hidden; }
.persona-expanded-enter-active { max-height: 2000px; opacity: 1; transition: max-height .35s ease, opacity .35s ease; }
.persona-expanded-exit { max-height: 2000px; opacity: 1; overflow: hidden; }
.persona-expanded-exit-active { max-height: 0; opacity: 0; transition: max-height .3s ease, opacity .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Gallery */
.gallery-grid .gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; }
/* Hide visible captions beneath gallery images */
.gallery-grid figcaption { display: none !important; }

/* Amenities */
.amenities-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; list-style: none; padding: 0; margin: 0; }
.amenities-list li { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; background: var(--card); border-radius: 14px; border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow); }
.amenities-list .icon { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; color: var(--brown); }
.amenities-list .icon svg { width: 28px; height: 28px; stroke-width: 2; }

/* Activities */
.activities-grid img { aspect-ratio: 16 / 9; object-fit: cover; }
.activity-card { transition: transform .18s ease, box-shadow .18s ease; overflow: hidden; padding: 14px; display: flex; }
.activity-card .card-body { display: flex; flex-direction: column; }
.activities-grid { align-items: stretch; }
.activity-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.12); }
.activity-card h3 { font-size: 22px; margin: 4px 0 8px; }
.activity-card .view-more { display: inline-flex; align-items: center; gap: 6px; margin-left: 6px; color: var(--brown); font-weight: 600; }
.activity-card .view-more [data-lucide] { width: 18px; height: 18px; }
.activity-card .sub-activities { display: grid; gap: 12px; margin-top: 12px; padding-bottom: 8px; }
.activity-card .sub-activities h4 { margin: 2px 0 4px; font-size: 16px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.activity-card .sub-activities .sub-icon { width: 28px; height: 28px; color: var(--brown); flex: 0 0 auto; }
.activity-card .sub-activities .sub-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.activity-card .sub-activities p { margin: 0 0 6px; color: var(--muted); }
.video-wrap { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 12px; overflow: hidden; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.list-inline { display: flex; flex-wrap: wrap; gap: 8px 12px; padding: 0; margin: 12px 0 0; list-style: none; }
.list-inline li { background: var(--bg-2); padding: 6px 10px; border-radius: 999px; font-size: 14px; }
/* Chip styling for Why You'll Love It */
.why-love-chips { margin-top: 20px; }
.why-love-chips .list-inline li { background: var(--brown); color: #fff; padding: 8px 14px; font-weight: 500; }
/* Button styling within paragraphs */
p .btn { display: inline-block; margin-left: 8px; }
/* Explore Nearby link styling */
.explore-link { 
  text-decoration: none; 
  border-bottom: 1px dotted var(--brown); 
  color: var(--brown); 
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.explore-link:hover { 
  border-bottom-style: solid; 
  color: var(--text);
}
.explore-link .link-icon { 
  width: 14px; 
  height: 14px; 
  flex-shrink: 0;
}

/* Blog */
.blog-card img { aspect-ratio: 16 / 9; object-fit: cover; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3,
.contact-map h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  color: var(--brown);
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  color: var(--text);
  display: inline;
  margin-right: 0.5rem;
}

.contact-item a {
  color: var(--brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--brown);
  text-decoration: underline;
}

.social-links {
  margin-bottom: 2rem;
}

.social-links h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.social-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-icons a:nth-child(3),
.social-icons a:nth-child(4) {
  justify-self: start;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  min-width: 0;
}

.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icons a span:first-child {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.social-icons a span:last-child {
  font-weight: 500;
}

.book-now-hero {
  text-align: center;
  margin: 2rem 0 3rem 0;
}

.book-now-hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.book-now-hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.book-now-section {
  text-align: center;
}

.book-now-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-map {
  position: relative;
}

.map-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.map-overlay .btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-overlay .btn:hover {
  background: var(--brown);
  color: white;
  border-color: var(--brown);
}

.wa-icon { width: 16px; height: 16px; display: inline-block; background: conic-gradient(from 0deg at 50% 50%, #25D366, #25D366); border-radius: 50%; }

/* Footer */
.site-footer { background: var(--brown); color: #fdf9f3; margin-top: 40px; }
.footer-simple { padding: 30px 0; text-align: center; }
.footer-content { margin-bottom: 20px; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; }
.footer-logo { width: 50px; height: 50px; border-radius: 50%; }
.footer-description { font-size: 0.95rem; line-height: 1.4; color: rgba(255,255,255,0.9); margin: 0; }
.footer-bottom { padding: 0; text-align: center; }
.footer-bottom .muted { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.muted { color: rgba(255,255,255,0.8); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; display: none; place-items: center; background: rgba(0,0,0,0.7); z-index: 100; padding: 20px; }
.lightbox.open { display: grid; }
.lightbox-figure { max-width: 88vw; max-height: 85vh; }
.lightbox-figure img { max-width: 88vw; max-height: 85vh; width: auto; height: auto; object-fit: contain; border-radius: 12px; }
.lightbox-figure figcaption { display: none !important; }
.lightbox-close { position: absolute; top: 16px; right: 16px; background: #fff; color: #000; border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 20px; cursor: pointer; box-shadow: var(--shadow); }
/* Lightbox navigation */
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.1); width: 40px; height: 40px; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 22px; color: #000; box-shadow: var(--shadow); cursor: pointer; }
.lightbox.open .lightbox-prev, .lightbox.open .lightbox-next { display: inline-flex; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox.hide-prev .lightbox-prev { display: none; }
.lightbox.hide-next .lightbox-next { display: none; }
@media (max-width: 640px) {
  .lightbox { padding: 10px; overflow: hidden; }
  /* Keep image narrower than screen so nav buttons don't overlap content */
  .lightbox-figure { max-width: 82vw; max-height: 88vh; }
  .lightbox-figure img { max-width: 70vw; max-height: 88vh; }
  .lightbox-prev, .lightbox-next { width: 48px; height: 48px; font-size: 26px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* Utilities */
.mt-0 { margin-top: 0; }

/* Responsive */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-icons {
    grid-template-columns: 1fr;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .map-overlay {
    position: static;
    margin-top: 1rem;
    text-align: center;
  }
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav { display: none; }
  /* Theme toggle removed on mobile */
}

@media (max-width: 768px) {
  /* Tablet adjustments */
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .blog-content {
    padding: 0 10px;
  }
  
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  /* Mobile adjustments */
  .container { padding: 0 16px; }
  .section { padding: 32px 0; }
  
  h1 { font-size: 28px; line-height: 1.2; }
  h2 { font-size: 24px; line-height: 1.3; }
  h3 { font-size: 18px; line-height: 1.4; }
  
  p { font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
  
  .blog-content {
    padding: 0;
    max-width: 100%;
  }
  
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 12px 18px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
  .nav-container { gap: 12px; }
  
  .contact-item {
    flex-direction: row;
    gap: 0.75rem;
    text-align: left;
  }
  
  .contact-icon {
    flex-shrink: 0;
  }
  
  /* Mobile typography improvements */
  ul, ol {
    padding-left: 20px;
    margin-bottom: 16px;
  }
  
  li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
  }
  
  /* Mobile spacing adjustments */
  .section-title {
    margin-bottom: 20px;
  }
  
  /* Mobile image adjustments */
  img {
    border-radius: 8px;
    margin: 16px 0;
  }
  
  /* Mobile list improvements */
  .list-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .list-inline li {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 480px) {
  /* Small mobile adjustments */
  .container { padding: 0 12px; }
  .section { padding: 24px 0; }
  
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 16px; }
  
  p { font-size: 14px; }
  li { font-size: 14px; }
  
  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .nav-container {
    padding: 8px 12px;
  }
  
  .brand-name {
    font-size: 16px;
  }
  
  .brand-logo {
    width: 32px;
    height: 32px;
  }
  
  .menu-toggle {
    width: 36px;
    height: 36px;
  }
  
  .menu-icon {
    width: 18px;
  }
  
  .menu-icon::before { top: -5px; }
  .menu-icon::after { top: 5px; }
}

/* Mobile-specific blog content improvements */
@media (max-width: 640px) {
  .blog-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(75, 46, 42, 0.1);
  }
  
  .blog-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
  }
  
  .blog-content ul,
  .blog-content ol {
    margin: 16px 0;
    padding-left: 18px;
  }
  
  .blog-content li {
    margin-bottom: 6px;
  }
  
  /* Mobile table improvements if any exist */
  .blog-content table {
    font-size: 13px;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  
  .blog-content th,
  .blog-content td {
    padding: 8px 6px;
  }
  
  /* Mobile blockquote improvements */
  .blog-content blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    font-size: 14px;
    border-left: 3px solid var(--brown);
  }
  
  /* Mobile code improvements */
  .blog-content code {
    font-size: 13px;
    padding: 2px 4px;
  }
  
  .blog-content pre {
    font-size: 13px;
    padding: 12px;
    overflow-x: auto;
  }
  
  /* Mobile text wrapping improvements */
  .blog-content b {
    word-break: break-word;
  }
  
  /* Mobile spacing for better readability */
  .blog-content p + h2,
  .blog-content ul + h2,
  .blog-content ol + h2 {
    margin-top: 40px;
  }
  
  .blog-content p + h3,
  .blog-content ul + h3,
  .blog-content ol + h3 {
    margin-top: 28px;
  }
  
  /* Mobile list spacing improvements */
  .blog-content ul ul,
  .blog-content ol ol,
  .blog-content ul ol,
  .blog-content ol ul {
    margin: 8px 0;
    padding-left: 16px;
  }
  
  /* Mobile emphasis improvements */
  .blog-content strong,
  .blog-content b {
    font-weight: 600;
  }
  
  /* Mobile link improvements */
  .blog-content a {
    word-break: break-word;
    text-decoration: underline;
    text-decoration-color: var(--brown);
    text-underline-offset: 2px;
  }
  
  .blog-content a:hover {
    text-decoration-color: var(--text);
  }
}

/* Additional mobile improvements for very small screens */
@media (max-width: 360px) {
  .container { padding: 0 8px; }
  
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
  h3 { font-size: 15px; }
  
  p { font-size: 13px; }
  li { font-size: 13px; }
  
  .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .blog-content {
    font-size: 13px;
  }
  
  .blog-content h2 {
    margin-top: 28px;
    margin-bottom: 12px;
  }
  
  .blog-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .blog-content ul,
  .blog-content ol {
    padding-left: 16px;
  }
}




