/** Shopify CDN: Minification failed

Line 17:23 Expected identifier but found whitespace
Line 17:35 Unexpected ";"

**/
/* ============================================
   NAMEG — Blog Luxury Redesign
   nameg-blog-luxury.css
   Depends on: nameg-luxury.css (CSS custom properties)
   ============================================ */

/* ============================================
   SHARED UTILITIES
   ============================================ */

-webkit-font-smoothing: antialiased;

.nameg-blog-page {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--nameg-cream);
}

/* ============================================
   SCROLL REVEAL — Blog-scoped variant
   ============================================ */

.nameg-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nameg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO SECTION — Clean rotating slideshow
   ============================================ */

.nameg-blog-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  max-height: 750px;
  overflow: hidden;
  background: var(--nameg-ink);
}

.nameg-blog-hero__slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide: absolute fill, crossfade */
.nameg-blog-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  cursor: pointer;
}

.nameg-blog-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.nameg-blog-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Subtle bottom scrim for button readability */
.nameg-blog-hero__scrim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
  pointer-events: none;
}

/* Read More button — bottom-right, minimal luxury */
.nameg-blog-hero__cta {
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 2;
  display: inline-block;
  font-family: var(--nameg-body, 'Cormorant Garamond', Georgia, serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  padding: 16px 44px;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nameg-blog-hero__cta:hover {
  color: var(--nameg-ink, #1a1a1a);
  background: #fff;
  border-color: #fff;
}

/* Mobile hero */
@media (max-width: 767px) {
  .nameg-blog-hero {
    height: 55vh;
    max-height: 500px;
  }

  .nameg-blog-hero__cta {
    bottom: 24px;
    right: 24px;
    padding: 12px 28px;
    font-size: 10px;
  }

  .nameg-blog-hero__content {
    padding: 0 20px 40px;
    max-width: 100%;
  }

  .nameg-blog-hero__title {
    font-size: clamp(22px, 7vw, 32px);
  }

  .nameg-blog-hero__excerpt {
    display: none;
  }
}

/* ============================================
   CATEGORY NAVIGATION
   ============================================ */

.nameg-blog-nav {
  background: var(--nameg-cream);
  border-bottom: 1px solid var(--nameg-border);
  position: sticky;
  top: var(--header-height, 80px);
  z-index: 100;
}

.nameg-blog-nav__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nameg-blog-nav__inner::-webkit-scrollbar {
  display: none;
}

.nameg-blog-nav__pill {
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--nameg-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nameg-ink);
  border: 1px solid var(--nameg-border);
  padding: 8px 20px;
  white-space: nowrap;
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.nameg-blog-nav__pill:hover {
  border-color: var(--nameg-gold);
  color: var(--nameg-gold) !important;
}

.nameg-blog-nav__pill.is-active {
  background: var(--nameg-gold);
  color: #fff !important;
  border-color: transparent;
}

.nameg-blog-nav__pill.is-active:hover {
  background: var(--nameg-gold-light);
}

@media (max-width: 767px) {
  .nameg-blog-nav__inner {
    padding: 12px 20px;
    gap: 6px;
  }

  .nameg-blog-nav {
    top: 60px;
  }
}

/* ============================================
   BLOG GRID LAYOUT
   ============================================ */

.nameg-blog-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Featured block — first 4 posts */
.nameg-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
  perspective: 800px;
}

/* First post: full-width featured */
.nameg-blog-featured .nameg-blog-card:first-child {
  grid-column: 1 / -1;
}

/* Standard grid — remaining posts */
.nameg-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 800px;
}

/* Section title */
.nameg-blog-section-title {
  font-family: var(--nameg-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nameg-ink);
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--nameg-border);
  position: relative;
}

.nameg-blog-section-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--nameg-gold);
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .nameg-blog-main {
    padding: 48px 24px;
  }

  .nameg-blog-featured {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
  }

  .nameg-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .nameg-blog-main {
    padding: 32px 16px;
  }

  .nameg-blog-featured {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .nameg-blog-featured .nameg-blog-card:first-child {
    grid-column: auto;
  }

  .nameg-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   BLOG CARDS
   ============================================ */

.nameg-blog-card {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Lift on hover */
.nameg-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Gold accent line at bottom — sweeps left to right */
.nameg-blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nameg-gold);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nameg-blog-card:hover::after {
  width: 80%;
}

/* Image container */
.nameg-blog-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--nameg-warm);
}

/* Overlay dim on hover */
.nameg-blog-card__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  pointer-events: none;
}

.nameg-blog-card:hover .nameg-blog-card__image-wrap::after {
  background: rgba(0, 0, 0, 0.06);
}

/* Image zoom */
.nameg-blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nameg-blog-card:hover .nameg-blog-card__image {
  transform: scale(1.08);
  filter: brightness(1.04) contrast(1.02);
}

/* Category tag on image */
.nameg-blog-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--nameg-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--nameg-gold);
  padding: 5px 12px;
}

/* Card body */
.nameg-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Meta — author + date */
.nameg-blog-card__meta {
  font-family: var(--nameg-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--nameg-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nameg-blog-card__meta-sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--nameg-border);
  flex-shrink: 0;
}

/* Title */
.nameg-blog-card__title {
  font-family: var(--nameg-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--nameg-ink);
  margin: 0 0 12px;
  line-height: 1.35;
  text-decoration: none;
  display: block;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nameg-blog-card__title:hover {
  color: var(--nameg-accent) !important;
}

/* Featured card — larger title */
.nameg-blog-card--featured .nameg-blog-card__title {
  font-size: clamp(22px, 3vw, 30px);
}

.nameg-blog-card--featured .nameg-blog-card__body {
  padding: 32px;
}

/* Excerpt — 3-line clamp */
.nameg-blog-card__excerpt {
  font-family: var(--nameg-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--nameg-muted);
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read More link */
.nameg-blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nameg-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nameg-ink);
  margin-top: auto;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nameg-blog-card__read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--nameg-gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nameg-blog-card__read-more:hover {
  color: var(--nameg-gold) !important;
}

.nameg-blog-card:hover .nameg-blog-card__read-more::after,
.nameg-blog-card__read-more:hover::after {
  width: 100%;
}

/* Arrow on read-more */
.nameg-blog-card__read-more-arrow {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nameg-blog-card__read-more-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.nameg-blog-card:hover .nameg-blog-card__read-more-arrow {
  width: 22px;
}

/* Mobile: no hover transforms */
@media (max-width: 767px) {
  .nameg-blog-card:hover {
    transform: none;
    box-shadow: none;
  }

  .nameg-blog-card:hover::after {
    width: 0;
  }

  .nameg-blog-card__body {
    padding: 20px;
  }

  .nameg-blog-card--featured .nameg-blog-card__body {
    padding: 20px;
  }

  .nameg-blog-card__title {
    font-size: 18px;
  }
}

/* ============================================
   CAROUSEL SECTION
   ============================================ */

.nameg-blog-carousel {
  background: var(--nameg-warm);
  padding: 70px 0;
  overflow: hidden;
}

.nameg-blog-carousel__header {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.nameg-blog-carousel__title {
  font-family: var(--nameg-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nameg-ink);
  margin: 0;
  position: relative;
  padding-bottom: 14px;
}

.nameg-blog-carousel__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--nameg-gold);
}

.nameg-blog-carousel__track {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Slick slider: arrow styling — match review carousel pattern */
.nameg-blog-carousel [data-blog-slider] .slick-prev,
.nameg-blog-carousel [data-blog-slider] .slick-next {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid var(--nameg-border);
  border-radius: 0;
  opacity: 0.6;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
}

.nameg-blog-carousel [data-blog-slider] .slick-prev:hover,
.nameg-blog-carousel [data-blog-slider] .slick-next:hover {
  opacity: 1;
  border-color: var(--nameg-gold);
  background: var(--nameg-gold);
}

.nameg-blog-carousel [data-blog-slider] .slick-prev {
  left: -28px;
}

.nameg-blog-carousel [data-blog-slider] .slick-next {
  right: -28px;
}

.nameg-blog-carousel [data-blog-slider] .slick-prev::before,
.nameg-blog-carousel [data-blog-slider] .slick-next::before {
  color: var(--nameg-ink);
  font-size: 14px;
  opacity: 1;
  transition: color 0.3s ease;
}

.nameg-blog-carousel [data-blog-slider] .slick-prev:hover::before,
.nameg-blog-carousel [data-blog-slider] .slick-next:hover::before {
  color: #fff;
}

/* Slick dots — gold */
.nameg-blog-carousel [data-blog-slider] .slick-dots {
  bottom: -36px;
}

.nameg-blog-carousel [data-blog-slider] .slick-dots li button::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nameg-border);
  color: transparent;
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 0;
}

.nameg-blog-carousel [data-blog-slider] .slick-dots li.slick-active button::before {
  background: var(--nameg-gold);
  transform: scale(1.3);
}

/* Cards inside carousel: match blog card but no bottom gold line on carousel */
.nameg-blog-carousel .nameg-blog-card {
  margin: 0 8px;
}

/* Carousel mobile */
@media (max-width: 767px) {
  .nameg-blog-carousel {
    padding: 48px 0 60px;
  }

  .nameg-blog-carousel__header {
    padding: 0 20px;
    margin-bottom: 28px;
  }

  .nameg-blog-carousel__track {
    padding: 0 20px;
  }

  .nameg-blog-carousel [data-blog-slider] .slick-prev,
  .nameg-blog-carousel [data-blog-slider] .slick-next {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nameg-blog-carousel__header {
    padding: 0 24px;
  }

  .nameg-blog-carousel__track {
    padding: 0 24px;
  }
}

/* ============================================
   SUBSCRIBE SECTION
   ============================================ */

.nameg-blog-subscribe {
  background: var(--nameg-warm);
  padding: 80px 40px;
  text-align: center;
}

.nameg-blog-subscribe__inner {
  max-width: 600px;
  margin: 0 auto;
}

/* Eyebrow above title */
.nameg-blog-subscribe__eyebrow {
  font-family: var(--nameg-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nameg-gold);
  display: block;
  margin-bottom: 16px;
}

.nameg-blog-subscribe__title {
  font-family: var(--nameg-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nameg-ink);
  margin: 0 0 16px;
  line-height: 1.2;
}

/* Gold underline accent */
.nameg-blog-subscribe__accent {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--nameg-gold);
  margin: 0 auto 24px;
}

.nameg-blog-subscribe__description {
  font-family: var(--nameg-body);
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: var(--nameg-muted);
  margin: 0 0 36px;
}

/* Form — inline on desktop, stacked on mobile */
.nameg-blog-subscribe__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.nameg-blog-subscribe__input {
  flex: 1;
  font-family: var(--nameg-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--nameg-ink);
  background: #fff;
  border: 1px solid var(--nameg-border);
  border-right: none;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.nameg-blog-subscribe__input::placeholder {
  color: var(--nameg-muted);
}

.nameg-blog-subscribe__input:focus {
  border-color: var(--nameg-gold);
}

/* Subscribe button — Chanel fill */
.nameg-blog-subscribe__btn {
  font-family: var(--nameg-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nameg-ink);
  background: transparent;
  border: 1px solid var(--nameg-ink);
  padding: 14px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-appearance: none;
  appearance: none;
}

.nameg-blog-subscribe__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--nameg-ink);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nameg-blog-subscribe__btn:hover {
  color: #fff;
}

.nameg-blog-subscribe__btn:hover::before {
  left: 0;
}

@media (max-width: 767px) {
  .nameg-blog-subscribe {
    padding: 56px 20px;
  }

  .nameg-blog-subscribe__form {
    flex-direction: column;
    gap: 0;
  }

  .nameg-blog-subscribe__input {
    border-right: 1px solid var(--nameg-border);
    border-bottom: none;
  }

  .nameg-blog-subscribe__input:focus {
    border-color: var(--nameg-gold);
  }

  .nameg-blog-subscribe__btn {
    width: 100%;
    padding: 16px;
  }
}

/* ============================================
   LOAD MORE
   ============================================ */

.nameg-blog-load-more {
  text-align: center;
  margin: 60px 0 0;
}

.nameg-blog-load-more__btn {
  display: inline-block;
  font-family: var(--nameg-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nameg-ink);
  border: 1px solid var(--nameg-ink);
  padding: 16px 48px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  background: transparent;
}

.nameg-blog-load-more__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--nameg-ink);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nameg-blog-load-more__btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.nameg-blog-load-more__btn:hover::before {
  left: 0;
}

/* ============================================
   SIDEBAR (optional) — for classic 2-col layout
   ============================================ */

.nameg-blog-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.nameg-blog-sidebar {
  position: sticky;
  top: calc(var(--header-height, 80px) + 80px);
}

.nameg-blog-sidebar__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--nameg-border);
}

.nameg-blog-sidebar__section:last-child {
  border-bottom: none;
}

.nameg-blog-sidebar__title {
  font-family: var(--nameg-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nameg-ink);
  margin: 0 0 20px;
}

.nameg-blog-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nameg-blog-sidebar__tag {
  font-family: var(--nameg-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nameg-muted);
  border: 1px solid var(--nameg-border);
  padding: 6px 14px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nameg-blog-sidebar__tag:hover {
  border-color: var(--nameg-gold);
  color: var(--nameg-gold) !important;
}

@media (max-width: 1023px) {
  .nameg-blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  .nameg-blog-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .nameg-blog-layout {
    padding: 32px 16px;
  }
}

/* ============================================
   REDUCED MOTION — honor user preference
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .nameg-blog-hero__image,
  .nameg-blog-hero__image.ken-burns-active {
    animation: none !important;
  }

  .nameg-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nameg-blog-hero__content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nameg-blog-card,
  .nameg-blog-card__image,
  .nameg-blog-card::after,
  .nameg-blog-card__read-more::after {
    transition-duration: 0.01ms !important;
  }

  .nameg-blog-card:hover {
    transform: none !important;
  }

  .nameg-blog-card:hover .nameg-blog-card__image {
    transform: none !important;
    filter: none !important;
  }
}

/* ==============================================
   UNIFIED CAROUSEL SYSTEM — Blog Luxury
   ============================================== */

/* --- Unified Dots: Light Background Variant (gold) --- */
.nameg-blog-carousel [data-blog-slider] .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  bottom: -36px;
  gap: 0;
}

.nameg-blog-carousel [data-blog-slider] .slick-dots li {
  margin: 0 4px !important;
}

.nameg-blog-carousel [data-blog-slider] .slick-dots li button {
  width: 6px !important;
  height: 6px !important;
  border-radius: 3px !important;
  background: rgba(201, 185, 154, 0.3) !important;
  border: none !important;
  padding: 0 !important;
  font-size: 0 !important;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.nameg-blog-carousel [data-blog-slider] .slick-dots li button::before,
.nameg-blog-carousel [data-blog-slider] .slick-dots li.slick-active button::before {
  display: none !important;
}

.nameg-blog-carousel [data-blog-slider] .slick-dots li.slick-active button {
  width: 24px !important;
  height: 6px !important;
  border-radius: 3px !important;
  background: var(--nameg-gold, #b8860b) !important;
}

/* --- Unified Arrows: Thin Chevrons (light bg) --- */
.nameg-blog-carousel [data-blog-slider] .slick-prev,
.nameg-blog-carousel [data-blog-slider] .slick-next {
  width: 44px !important;
  height: 44px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  opacity: 0;
  transition: opacity 0.3s ease !important;
}

.nameg-blog-carousel:hover [data-blog-slider] .slick-prev,
.nameg-blog-carousel:hover [data-blog-slider] .slick-next {
  opacity: 1;
}

.nameg-blog-carousel [data-blog-slider] .slick-prev::before,
.nameg-blog-carousel [data-blog-slider] .slick-next::before {
  content: '' !important;
  display: block;
  width: 14px;
  height: 14px;
  font-size: 0 !important;
  color: transparent !important;
  opacity: 1 !important;
}

.nameg-blog-carousel [data-blog-slider] .slick-prev::before {
  border-left: 1.5px solid var(--nameg-muted, #6b6b6b);
  border-bottom: 1.5px solid var(--nameg-muted, #6b6b6b);
  transform: rotate(45deg);
  margin-left: 4px;
}

.nameg-blog-carousel [data-blog-slider] .slick-next::before {
  border-right: 1.5px solid var(--nameg-muted, #6b6b6b);
  border-top: 1.5px solid var(--nameg-muted, #6b6b6b);
  transform: rotate(45deg);
  margin-right: 4px;
}

.nameg-blog-carousel [data-blog-slider] .slick-prev:hover::before {
  border-color: var(--nameg-gold, #b8860b);
}

.nameg-blog-carousel [data-blog-slider] .slick-next:hover::before {
  border-color: var(--nameg-gold, #b8860b);
}
