/** Shopify CDN: Minification failed

Line 510:6 Unexpected "/"

**/


/* CSS from section stylesheet tags */
/* ==========================================
   Image Hover Grid v2 — Tag Overlay (no zoom)
   + Heading/Subtext (fluid)
========================================== */

.iuh-wrap{
  background:var(--iuh-bg);
  padding:var(--iuh-pad-y) 0;
}
.iuh-shell{
  max-width:var(--iuh-max);
  margin:0 auto;
  padding:0 20px;
}

/* ------- Head (Title + Subtext) ------- */
.iuh-head{
  text-align:center;
  /* Combined: legacy spacing + NEW subtext-to-grid gap control */
  margin-bottom:calc(var(--iuh-head-space-bottom) + var(--iuh-sub-gap-bottom));
  max-width:var(--iuh-max);
  margin-left:auto;
  margin-right:auto;
}
.iuh-head__title{
  margin:0 0 15px 0;
  font-family:Baskerville,'Libre Baskerville',serif;
  font-weight:600;
  font-size:var(--iuh-head-title-size);
  line-height:1.15;
  color:var(--iuh-head-title-color);
}
.iuh-head__sub{
  margin:0 auto;
  font-family:'Epilogue',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  font-weight:300;
  font-size:var(--iuh-head-sub-size);
  line-height:1.5;
  color:var(--iuh-head-sub-color);
  max-width:var(--iuh-head-sub-max);
}

/* ------- Grid ------- */
.iuh-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:var(--iuh-gap);
}
.iuh-card{
  position:relative;
  overflow:visible;
  padding-bottom:calc(var(--tag-overhang) + var(--tag-extra-space));
}
.iuh-link{ display:block; color:inherit; text-decoration:none; }

/* Image */
.iuh-image-wrap{ position:relative; z-index:1; }
.iuh-image-wrap img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* Aspect Ratios */
.iuh-card.square img{ aspect-ratio:1 / 1; }
.iuh-card.portrait img{ aspect-ratio:3 / 4; }

/* Tag Pill */
.iuh-tag{
  position:absolute;
  left:50%;
  bottom:calc(var(--tag-overhang) * -1);
  transform:translateX(-50%);
  z-index:2;

  background:var(--tag-bg);
  color:var(--tag-color);
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:8px 18px;
  min-height:38px;
  max-width:calc(100% - 32px);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;

  font-family:'Epilogue',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  font-size:15px;

  /* NEW: lighter by default; gets bolder on hover */
  font-weight:400;

  box-shadow:0 6px 16px rgba(0,0,0,.15);
  transition:background .25s ease;
}
.iuh-tag-icon{
  width:18px; height:18px;
  flex:0 0 18px;
  display:block;
}

/* NEW: on hover, elevate weight to 600 */
.iuh-card:hover .iuh-tag{
  background:var(--tag-hover-bg);
  font-weight:400;
}

/* ======= Tablet (641–1024px) ======= */
@media (max-width:1024px) and (min-width:641px){
  .iuh-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ======= Mobile (≤640px) ======= */
@media (max-width:640px){
  .iuh-grid{ grid-template-columns:1fr; gap:calc(var(--iuh-gap) * 0.85); }

  /* Fluid mobile typography via clamp() */
  .iuh-head__title{
    font-size:clamp(var(--iuh-head-title-min-mobile), 7.4vw, var(--iuh-head-title-size));
    line-height:1.2;
  }
  .iuh-head__sub{
    font-size:clamp(var(--iuh-head-sub-min-mobile), 4.8vw, var(--iuh-head-sub-size));
    line-height:1.6;
    max-width:min(100%, var(--iuh-head-sub-max));
  }

  /* Slightly tighter tag bottom overlap on very small screens */
  .iuh-tag{
    font-size:14px;
    padding:7px 14px;
    bottom:calc((var(--tag-overhang) - 2px) * -1);
  }
}
.blog-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-hover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.blog-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.blog-image-wrapper {
  position: relative;
  overflow: visible;
  transition: max-height 0.3s ease;
}

/* Default frame sizes */
.blog-card.portrait .blog-image-wrapper { max-height: 400px; }
.blog-card.square .blog-image-wrapper { max-height: 300px; }

/* Hover frame expand */
.blog-card.portrait:hover .blog-image-wrapper { max-height: 420px; }
.blog-card.square:hover .blog-image-wrapper { max-height: 320px; }

.blog-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform-origin: top;
}

/* .blog-card:hover .blog-image-wrapper img {
  transform: scaleY(1.05);
} */

/* Desktop Hover Effect */
@media (min-width: 1025px) {
  .blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
  }
  .blog-card:hover .blog-content {
    transform: translateY(15px);
  }
}

.blog-content {
  transition: transform 0.3s ease;
  margin-top: 12px;
  position: relative;
  padding-bottom: 44px; /* space for date */
}

.blog-title {
  font-weight: 600;
  font-size: 24px;
  font-family: Baskerville;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #2C4A3B;
}

.blog-excerpt {
  font-size: 18px;
  font-family: Epilogue;
  color: #2C4A3B;
  line-height: 1.5;
  margin-bottom: 8px;

  font-weight: 300;
}

.blog-card:hover .blog-content {
  transform: translateY(20px);
}

.blog-date {
  position: absolute;
  bottom: 100;
  right: 0;
 font-size: 16px;
   font-family: Baskerville;
  color: #2C4A3B;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  
  /* background: transparent !important; */
  /* padding: 4px 8px; 
  border-radius: 4px;  */
}

.blog-card:hover .blog-date {
  opacity: 1;
  transform: translateY(0);
}

/* Portrait & Square aspect ratios */
.blog-card.portrait img { aspect-ratio: 3/4; object-fit: cover; }
.blog-card.square img { aspect-ratio: 1/1; object-fit: cover; }

/* Responsive Grid */
/* @media (max-width: 1024px) {
  .blog-hover-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .blog-hover-grid { grid-template-columns: 1fr; }
} */


 /* Responsive Grid */
/* === Desktop hover effect (as it is) === */
.blog-hover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 20px;
  max-width: 1320px;
  margin: 0 auto;
}

/* === Desktop Hover Animation (unchanged) === */
@media (min-width: 1025px) {
  .blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
  }
  .blog-card:hover .blog-content {
    transform: translateY(15px);
  }
  .blog-card:hover .blog-date {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Tablet Layout (2 per row) === */
@media (max-width: 1024px) and (min-width: 641px) {
  .blog-hover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Row 1 (default) */
  .blog-card:nth-child(1) { order: 1; } /* Portrait left */
  .blog-card:nth-child(2) { order: 2; } /* Square right */

  /* Row 2 (swapped) */
  .blog-card:nth-child(3) { order: 4; } /* Square goes right */
  .blog-card:nth-child(4) { order: 3; } /* Portrait goes left */

  /* Prevent overlap issue */
  .blog-card .blog-content {
    transform: none !important;
    margin-top: 12px;
  }
  .blog-card .blog-date {
    opacity: 1;
    transform: none;
    position: static;
    display: block;
    margin-top: 6px;
    font-size: 14px;
  }
  .blog-image-wrapper {
    overflow: hidden;
  }
}




/* === Mobile Layout (1 per row) === */
@media (max-width: 640px) {
  .blog-hover-grid {
    grid-template-columns: 1fr;
  }
  .blog-card .blog-content {
    transform: none !important;
    margin-top: 12px;
  }
  .blog-card .blog-date {
    opacity: 1;
    transform: none;
    position: static;
    display: block;
    margin-top: 6px;
    font-size: 14px;
  }
  .blog-image-wrapper {
    overflow: hidden;
  }
}
.crow-blog-carousel {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 40px 50px;
}
.crow-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.crow-swiper {
  overflow: hidden;
}
.crow-card {
  height: 100%;
}
.crow-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.crow-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
}
.crow-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.crow-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  clip-path: path("M0,60 Q80,0 200,60 T400,60 L400,400 L0,400 Z"); /* 👈 Example wave shape */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.crow-card-inner:hover .crow-overlay {
  opacity: 0.8;
}
.crow-overlay-content {
  color: #fff;
  width: 100%;
}
.crow-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: Baskerville;
}
.crow-excerpt,
.crow-readmore {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  color: #fff;
}
.crow-card-inner:hover .crow-excerpt,
.crow-card-inner:hover .crow-readmore {
  opacity: 1;
  transform: translateY(0);
}

/* Author strip */
.crow-author-strip {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.8);
  color: #2C4A3B;
  padding: 5px 12px 5px 24px;
  font-size: 16px;
  font-family: Baskerville;
  transition: background 0.3s ease;
}
.crow-author-strip::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2C4A3B;
}
.crow-card-inner:hover .crow-author-strip {
  background: rgba(255,255,255,1);
}

/* Arrow button */
.crow-arrow-btn {
  position: absolute;
  bottom: 20px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}
.crow-arrow-icon {
  width: 20px;
  height: 20px;
  stroke: #000;
  stroke-width: 2;
  fill: none;
  transform: rotate(-45deg);
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.crow-card-inner:hover .crow-arrow-btn {
  background: #2C4A3B;
}
.crow-card-inner:hover .crow-arrow-icon {
  transform: rotate(0deg);
  stroke: #fff;
}
/* =============================
   Blog Hover Grid Second
============================= */

.blog-hover-grid-second-wrapper {
  background-color: #C8964A; /* full width background */
  padding: 40px 0px;          /* upar niche ka gap */
}

.blog-hover-grid-second {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0px 20px;
  max-width: 1320px;   /* content center aligned */
  margin: 0 auto;
}
/* .blog-hover-grid-second {
  background-color: #D32F2F; /* red background */
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 20px;
  max-width: 1320px;
  margin: 0 auto;
} */ */

.blog-hover-grid-second .blog-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.blog-hover-grid-second .blog-image-wrapper {
  position: relative;
  overflow: visible;
  transition: max-height 0.3s ease;
}

.blog-hover-grid-second .blog-card.portrait .blog-image-wrapper { max-height: 400px; }
.blog-hover-grid-second .blog-card.square .blog-image-wrapper { max-height: 300px; }

.blog-hover-grid-second .blog-card:hover .blog-image-wrapper { max-height: 420px; }

.blog-hover-grid-second .blog-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform-origin: top;
}

/* .blog-hover-grid-second .blog-card:hover .blog-image-wrapper img {
  transform: scaleY(1.05);
} */

/* Desktop Hover Effect */
@media (min-width: 1025px) {
  .blog-hover-grid-second .blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
  }
  .blog-hover-grid-second .blog-card:hover .blog-content {
    transform: translateY(15px);
  }
}

.blog-hover-grid-second .blog-content {
  transition: transform 0.3s ease;
  margin-top: 12px;
  position: relative;
  padding-bottom: 44px;

}

.blog-hover-grid-second .blog-title {
  font-weight: 600;
  font-size: 24px;
  font-family: Baskerville;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #2C4A3B;;
}

.blog-hover-grid-second .blog-excerpt {
   font-size: 18px;
  font-family: Epilogue;
  color: #2C4A3B;;
  line-height: 1.5;
  margin-bottom: 4px;

  font-weight: 300;

}

.blog-hover-grid-second .blog-card:hover .blog-content {
  transform: translateY(20px);
}

/* Read More Button */
.blog-hover-grid-second .blog-btn-wrapper {
  position: absolute;
  bottom: 200;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.blog-hover-grid-second .blog-btn {
  display: inline-block;
  /* padding: 8px 16px; */
  /* background: #fff; */
  color: #2C4A3B;;
  font-weight: 600;
 font-size: 16px;
   font-family: Baskerville;
  transition: all 0.3s ease;
  text-decoration: underline;
}

/* .blog-hover-grid-second .blog-btn:hover {
  background: #2C4A3B;
  color: #fff;
} */

.blog-hover-grid-second .blog-card:hover .blog-btn-wrapper {
  opacity: 1;
  transform: translateY(0);
}

/* Aspect ratios */
/* .blog-hover-grid-second .blog-card.portrait img { aspect-ratio: 3/4; }
.blog-hover-grid-second .blog-card.square img { aspect-ratio: 1/1; } */

/* Portrait & Square aspect ratios */
.blog-card.portrait img { aspect-ratio: 3/4; object-fit: cover; }
.blog-card.square img { aspect-ratio: 1/1; object-fit: cover; }

/* Responsive */
/* === Desktop hover effect (as it is) === */

/* .blog-hover-grid-second .blog-hover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 20px;
  max-width: 1320px;
  margin: 0 auto;
} */

/* =============================
   Responsive Layout
============================= */

/* === Desktop Hover Animation (unchanged) === */
@media (min-width: 1025px) {
  .blog-hover-grid-second .blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
  }
  .blog-hover-grid-second .blog-card:hover .blog-content {
    transform: translateY(15px);
  }
  .blog-hover-grid-second .blog-card:hover .blog-date {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Tablet Layout (2 per row with swap) === */
@media (max-width: 1024px) and (min-width: 641px) {
  .blog-hover-grid-second {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Row 1 (default) */
  .blog-hover-grid-second .blog-card:nth-child(1) { order: 1; } /* Portrait left */
  .blog-hover-grid-second .blog-card:nth-child(2) { order: 2; } /* Square right */

  /* Row 2 (swapped) */
  .blog-hover-grid-second .blog-card:nth-child(3) { order: 4; } /* Square right */
  .blog-hover-grid-second .blog-card:nth-child(4) { order: 3; } /* Portrait left */

  /* Fix hover content */
  .blog-hover-grid-second .blog-card .blog-content {
    transform: none !important;
    margin-top: 12px;
  }
  .blog-hover-grid-second .blog-card .blog-date {
    opacity: 1;
    transform: none;
    position: static;
    display: block;
    margin-top: 6px;
    font-size: 14px;
  }
  .blog-hover-grid-second .blog-image-wrapper {
    overflow: hidden;
  }
}

/* === Mobile Layout (1 per row) === */
@media (max-width: 640px) {
  .blog-hover-grid-second {
    grid-template-columns: 1fr;
  }
  .blog-hover-grid-second .blog-card .blog-content {
    transform: none !important;
    margin-top: 12px;
  }
  .blog-hover-grid-second .blog-card .blog-date {
    opacity: 1;
    transform: none;
    position: static;
    display: block;
    margin-top: 6px;
    font-size: 14px;
  }
  .blog-hover-grid-second .blog-image-wrapper {
    overflow: hidden;
  }
}


/* === Tablet & Mobile: Read More always visible === */
@media (max-width: 1024px) {
  .blog-hover-grid-second .blog-btn-wrapper {
    opacity: 1 !important;
    transform: none !important;
    position: static;
    margin-top: 8px;
  }
}