/* =================================================
   BLOG BASE STYLES
   Shared across ALL blog categories
   (Weddings, Studio, Wildlife, Outdoors, Docs)
   ================================================= */

/* Root Blog Wrapper */
body.blog {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
}

/* Main Container */
.blog .blog-container {
  max-width: 920px;
  margin: auto;
  padding: 80px 20px;
}

/* Hero Image */
.blog .blog-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin-bottom: 42px;
}

/* Blog Title */
.blog h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Blog Meta */
.blog .blog-meta {
  font-size: 14px;
  letter-spacing: 0.3px;
  margin-bottom: 44px;
}

/* Paragraphs */
.blog p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 26px;
}

/* Headings */
.blog h2 {
  font-size: 30px;
  margin: 64px 0 18px;
  font-weight: 600;
}

.blog h3 {
  font-size: 22px;
  margin: 44px 0 14px;
  font-weight: 600;
}

/* Lists */
.blog ul,
.blog ol {
  margin: 20px 0 30px 24px;
}

.blog li {
  margin-bottom: 12px;
  font-size: 17px;
}

/* Images inside content */
.blog .content-image {
  margin: 50px 0;
}

.blog .content-image img {
  width: 100%;
  border-radius: 14px;
}

/* Blockquote / Highlight (neutral base) */
.blog .highlight {
  padding: 32px;
  margin: 54px 0;
  font-style: italic;
  border-left: 4px solid currentColor;
}

/* CTA Base */
.blog .blog-cta {
  padding: 54px 30px;
  margin-top: 90px;
  text-align: center;
  border-radius: 14px;
}

.blog .blog-cta h3 {
  margin-bottom: 14px;
}

.blog .blog-cta p {
  max-width: 520px;
  margin: 0 auto 24px;
}

/* CTA Button Base */
.blog .blog-cta a {
  display: inline-block;
  padding: 14px 34px;
  font-size: 15px;
  border-radius: 40px;
  text-decoration: none;
  border: 1px solid currentColor;
}

/* Divider */
.blog .divider {
  height: 1px;
  width: 100%;
  margin: 80px 0;
  background: currentColor;
  opacity: 0.15;
}

/* Related Posts */
.blog .related-posts {
  margin-top: 100px;
}

.blog .related-posts h3 {
  margin-bottom: 28px;
}

.blog .related-posts ul {
  list-style: none;
  padding: 0;
}

.blog .related-posts li {
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog .blog-container {
    padding: 60px 16px;
  }

  .blog h1 {
    font-size: 34px;
  }

  .blog h2 {
    font-size: 26px;
  }

  .blog p {
    font-size: 17px;
  }
}
/* ===============================
   Blog Hero Image (Safe Framing)
   =============================== */

.blog .blog-hero {
  max-height: 480px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 42px;
}

.blog .blog-hero img {
  width: 50%;
  height: 250x;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 768px) {
  .blog .blog-hero {
    max-height: 320px;
  }

  .blog .blog-hero img {
    height: 320px;
    object-position: center;
  }
}
/* ===============================
   Editorial In-Content Images
   =============================== */

/* Editorial blog images */
.blog .content-image {
  margin: 60px 0;
  text-align: center;
}
/* Editorial blog images – SAFE framing */
.blog .content-image {
  margin: 60px 0;
  text-align: center;
}

.blog .content-image img {
  width: 100%;
  max-width: 760px;
  height: auto;              /* KEY FIX */
  max-height: 520px;         /* prevents huge images */
  object-fit: contain;       /* PREVENTS SIDE CROPPING */
  border-radius: 14px;
  background-color: #f4f4f4; /* subtle frame for empty space */
}

@media (max-width: 768px) {
  .blog .content-image img {
    max-width: 100%;
    max-height: 360px;
  }
}

/* WhatsApp Floating Button – Global Size Fix */
.whatsapp-float img {
  width: 80px;
  height: 80px;
}
.whatsapp-float {
  padding: 10px;
}
/* Force WhatsApp Floating Button to Bottom Right */
.whatsapp-float {
  position: fixed;
  right: 18px;
  left: auto;     /* THIS is the key fix */
  bottom: 18px;
  z-index: 999;
}
/* View Packages Button Hover Effect */
.blog-cta a,
.view-packages-btn {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: #111;
  border: 2px solid #111;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.blog-cta a:hover,
.view-packages-btn:hover {
  background-color: #C9A24D;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(250, 5, 5, 0.15);
}

/* Pull blog content up */
.blog-container {
  margin-top: 0;
  padding-top: 0;
}
