/* === block 2 (from home.html) === */
body {
  --header-v2-logo-d: clamp(132px, 20vw, 192px);
  --header-v2-nav-outer-h: 38px;
}

.header-v2 {
  position: sticky;
  top: 0;
  z-index: 200;
  overflow: visible;
  background: #fff;
  transition: box-shadow 0.35s ease;
}

.header-v2.header-v2--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-v2.header-v2--scrolled .header-v2-top {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-v2 .header-v2-top__left .toggleSidemenu img,
.header-v2 .header-v2-social img {
  transition:
    filter 0.3s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.header-v2 .header-v2-social img {
  filter: brightness(0);
  opacity: 1;
}

.header-v2 .header-v2-top {
  padding: 14px 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.header-v2 .header-v2-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.header-v2 .header-v2-logo-mobile {
  display: none;
  text-decoration: none;
  flex-shrink: 0;
}

.header-v2 .header-v2-logo-mobile .header-v2-logo {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header-v2 .header-v2-logo-mobile img {
  width: clamp(56px, 18vw, 96px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.header-v2 .header-v2-top__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header-v2 .header-v2-account-mobile {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #111;
  line-height: 0;
  cursor: pointer;
}

.header-v2 .header-v2-social {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-v2 .header-v2-social a {
  display: flex;
  opacity: 0.9;
}

.header-v2 .header-v2-social a:hover {
  opacity: 1;
}

.header-v2 .header-v2-social a:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

.header-v2 .header-v2-social a:focus-visible img,
.header-v2 .header-v2-social a:active img,
.header-v2 .header-v2-social a.active img {
  filter: none;
  opacity: 0.9;
  transform: scale(0.95);
}

.header-v2 .header-v2-top__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-v2 .header-v2-search {
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  line-height: 0;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-v2 .header-v2-search:hover {
  opacity: 0.75;
}

/* Global header search modal */
.header-search-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 5vh, 48px) 16px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.header-search-modal:not([hidden]) {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.header-search-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(20, 18, 16, 0.55);
  cursor: pointer;
}

.header-search-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  padding: 1.25rem 1.35rem 1.5rem;
}

.header-search-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
}

.header-search-modal__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 400;
  margin: 0;
  color: #111;
}

.header-search-modal__dismiss {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #f3f0eb;
  color: #111;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-search-modal__dismiss:hover {
  background: #e8e4de;
}

.header-search-modal__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #e0dcd6;
  border-radius: 10px;
  background: #faf9f7;
}

.header-search-modal__field:focus-within {
  border-color: #c5a97b;
  background: #fff;
}

.header-search-modal__field-icon {
  flex-shrink: 0;
  color: #8a8580;
}

.header-search-modal__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 14px 0;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 15px;
  color: #111;
  outline: none;
}

.header-search-modal__hint {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8580;
  margin: 1rem 0 0.5rem;
}

.header-search-modal__scopes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.header-search-modal__chip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.header-search-modal__chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.header-search-modal__chip span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c5348;
  background: #f3f0eb;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-search-modal__chip input:checked + span {
  background: rgba(197, 169, 123, 0.22);
  color: #3d362e;
  border-color: rgba(197, 169, 123, 0.55);
}

.header-search-modal__chip input:focus-visible + span {
  outline: 2px solid #c5a97b;
  outline-offset: 2px;
}

.header-search-modal__actions {
  margin-top: 1.25rem;
}

.header-search-modal__submit {
  width: 100%;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #c5a97b;
  cursor: pointer;
}

.header-search-modal__submit:hover {
  filter: brightness(0.96);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-v2 .btn-join-club {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: #c5a97b;
  border-radius: 4px;
  border: 0;
  white-space: nowrap;
}

.header-v2 .btn-join-club:hover {
  filter: brightness(0.95);
  color: #fff !important;
}

.header-v2 .header-v2-nav {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.header-v2 .header-v2-nav__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px 12px;
  padding: 8px clamp(12px, 3vw, 40px);
  background-color: #c5a97b;
  transition: background-color 0.35s ease;
}

.header-v2.header-v2--scrolled .header-v2-nav__row {
  background-color: #fff;
}

.header-v2 .header-v2-nav__links {
  display: flex;
  align-items: center;
  gap: 18px 28px;
  flex-wrap: nowrap;
  min-width: 0;
}

.header-v2 .header-v2-nav__links--left {
  flex: 1 1 0;
  justify-content: flex-end;
  padding-right: calc(var(--header-v2-logo-d) * 0.5 + 6px);
}

.header-v2 .header-v2-nav__links--right {
  flex: 1 1 0;
  justify-content: flex-start;
  padding-left: calc(var(--header-v2-logo-d) * 0.5 + 6px);
}

.header-v2 .header-v2-nav__links a {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: var(--font14);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.header-v2:not(.header-v2--scrolled) .header-v2-nav__links a {
  color: #fff;
}

.header-v2:not(.header-v2--scrolled) .header-v2-nav__links a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.header-v2.header-v2--scrolled .header-v2-nav__links a {
  color: #111;
}

.header-v2.header-v2--scrolled .header-v2-nav__links a:hover {
  color: #c5a97b;
}

.header-v2 .header-v2-logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  flex-shrink: 0;
}

.header-v2 .header-v2-logo {
  display: block;
  /* width: var(--header-v2-logo-d);
    height: var(--header-v2-logo-d); */
  border-radius: 50%;
  /* border: 2px solid #c5a97b; */
  background: #fff;
  /* padding: clamp(8px, 1.1vw, 12px); */
  box-sizing: border-box;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}

.header-v2 .header-v2-logo img {
  /* width: 100%;
    height: 100%; */
  object-fit: contain;
  display: block;
}

header.header-v2 ~ .slider {
  margin-top: calc(
    (var(--header-v2-nav-outer-h) - var(--header-v2-logo-d)) / 2
  );
  position: relative;
  z-index: 1;
}

.sidebar  .header-v2-social img:hover {
    filter: brightness(0);
    opacity: 1;
}

.toggleSidemenu {
  background-color: transparent;
  border: none;
  background-color: transparent;
  outline: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .header-v2 .header-v2-nav {
    display: none !important;
  }

  header.header-v2 ~ .slider {
    margin-top: 0;
  }

  .header-v2 .header-v2-top {
    position: relative;
    padding: 12px 0 24px;
    border-bottom: 4px solid #c5a97b;
  }

  .header-v2 .header-v2-social {
    display: none;
  }

  .header-v2 .header-v2-top__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
  }

  .header-v2 .header-v2-logo-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: -42px;
    transform: translateX(-50%);
    max-width: none;
    z-index: 4;
  }

  .header-v2 .header-v2-top__left {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 14px;
    flex-wrap: nowrap;
  }

  .header-v2 .header-v2-account-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
  }

  .header-v2 .header-v2-top__right {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    justify-content: flex-end;
    min-width: 0;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 0;
  }

  .header-v2 .header-v2-search {
    display: inline-flex;
  }

  .header-v2 .header-v2-logo-mobile img {
    width: min(116px, 32vw);
    max-height: 116px;
  }

  .header-v2 .btn-join-club {
    padding: 12px 30px;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: none;
    max-width: 100%;
    border-radius: 8px;
  }
}

@media (max-width: 380px) {
  .header-v2 .btn-join-club {
    padding: 10px 24px;
    font-size: 12px;
    margin-left: 1rem;
  }
  .sm-mg-low{
    margin-top: 0rem;;
  }
  .footer-v2__col--left, .footer-v2__col--right {
    padding-top: 20px!important;
  }
  .col-lg-4.col-md-5.col-12.dailyclub-block__intro{
    margin-top: 0rem!important;
  }
}

/* === home.html block 3 === */
.dailyclub-block {
  background: #fff;
  --dailyclub-gold: #c5a97b;
}

.dailyclub-block__intro {
  text-align: center;
}

@media (min-width: 768px) {
  .dailyclub-block__intro {
    text-align: left;
  }
}

.dailyclub-block__logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  /* border: 2px solid var(--dailyclub-gold); */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .dailyclub-block__logo {
    margin-left: 0;
    margin-right: 0;
  }
}

.dailyclub-block__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dailyclub-block__title {
  font-family: "the-seasons", "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 400;
  color: var(--dailyclub-gold);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.dailyclub-block__tagline {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27, 28, 25, 0.45);
  margin: 0 0 1.5rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .dailyclub-block__tagline {
    margin-left: 0;
    margin-right: 0;
  }
}

.dailyclub-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 12px 22px;
  background: #111;
  color: #7b6b4d !important;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: 0;
}

.dailyclub-block__cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

.dailyclub-block__cta span {
  font-size: 1.1em;
  line-height: 1;
  opacity: 0.95;
}

.dailyclub-block__rule {
  margin: 1.75rem 0 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.dailyclub-block__section-rule {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.dailyclub-card-v2 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.dailyclub-card-v2__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.dailyclub-card-v2__media {
  border-radius: 14px 14px;
  overflow: hidden;
  aspect-ratio: 360 / 220;
  background: #f3f0eb;
}

.dailyclub-card-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dailyclub-card-v2__body {
  padding: 1rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.dailyclub-card-v2__meta {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dailyclub-gold);
  margin: 0 0 0.5rem;
}

.dailyclub-card-v2__title {
  font-family: "the-seasons", "Times New Roman", Times, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #1b1c19;
  margin: 0 0 0.5rem;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
  max-height: calc(1.35em * 2);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dailyclub-card-v2__excerpt {
  font-family: "the-seasons", Georgia, serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(27, 28, 25, 0.55);
  margin: 0 0 1rem;
  min-height: calc(1.5em * 3);
  max-height: calc(1.5em * 3);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.dailyclub-card-v2__pill {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 6px;
  background: #f4eee6;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5c5348;
  text-transform: uppercase;
}

/* === home.html block 4 === */
.featured-head-v2 {
  --fh-gold: #c5a97b;
  --fh-muted: #8a8580;
}

.featured-head-v2__title {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 1rem 0 0.5rem;
  letter-spacing: 0.02em;
}

.featured-head-v2__title span:first-child {
  color: #111;
}

.featured-head-v2__title span:last-child {
  color: var(--fh-gold);
}

.featured-head-v2__tagline {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fh-muted);
  margin: 0 0 0.25rem;
}

.featured-head-v2__all {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #5c5348;
  text-decoration: underline !important;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.featured-head-v2__all:hover {
  color: #111;
}

.featured-head-v2 .tablist .tabsbtn {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fh-muted);
  border-bottom: 2px solid transparent !important;
  padding-bottom: 2px;
}

.featured-head-v2 .tablist .tabsbtn:hover {
  color: #111;
}

.featured-head-v2 .tablist .tabsbtn.active {
  color: #111;
  border-bottom-color: var(--fh-gold) !important;
}

/* Featured articles v3 */
.featured-articles-v3 {
  --fa-gold: #c5a97b;
  --fa-muted: #8a8580;
  --fa-radius: 12px;
}

.featured-articles-v3__grid {
  margin-top: 0.5rem;
}

.feat-hero {
  position: relative;
  border-radius: var(--fa-radius);
  overflow: hidden;
  background: #f3f0eb;
  width: 100%;
  aspect-ratio: 800 / 1000;
}

.feat-hero__link {
  display: block;
  position: absolute;
  inset: 0;
  color: inherit;
  text-decoration: none;
}

.feat-hero__link:hover {
  color: inherit;
}

.feat-hero__media {
  position: absolute;
  inset: 0;
}

.feat-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feat-hero__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(60, 48, 36, 0.55) 35%,
    rgba(45, 36, 28, 0.92) 100%
  );
}

.feat-hero__title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  color: #fff;
}

.feat-hero__by {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 0.5rem;
}

.feat-hero__excerpt {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feat-hero__more {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #fff;
}

.feat-hero__link:hover .feat-hero__more {
  color: var(--fa-gold);
}

.featured-articles-v3 .feat-card-v3 {
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.feat-card-v3__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.feat-card-v3__link:hover {
  color: inherit;
}

.feat-card-v3__media {
  border-radius: var(--fa-radius);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 360 / 260;
  background: #f0eeeb;
}

.feat-card-v3__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.feat-card-v3__link:hover .feat-card-v3__media img {
  transform: scale(1.03);
}

.feat-card-v3__body {
  padding-top: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feat-card-v3__meta {
  margin: 0 0 0.5rem;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fa-muted);
}

.feat-card-v3__meta .feat-card-v3__date {
  /* color: var(--fa-muted); */
  color: var(--fa-gold);
}

.feat-card-v3__sep {
  margin: 0 0.4rem;
  color: rgba(138, 133, 128, 0.65);
}

.feat-card-v3__title {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  line-height: 1.34;
  color: #1b1c19;
}

.feat-card-v3__author {
  margin: 0;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #4b463f;
  font-style: italic;
}

/* Keep old small/medium/big rhythm while image ratio stays fixed */
.feat-card-v3--small .feat-card-v3__title {
  font-size: 1.04rem;
  line-height: 1.32;
}

.feat-card-v3--medium .feat-card-v3__title {
  font-size: 1.1rem;
}

.feat-card-v3--big .feat-card-v3__title {
  font-size: 1.16rem;
  line-height: 1.36;
}

.feat-card-v3--small .feat-card-v3__body {
  padding-top: 0.9rem;
}

.feat-card-v3--small .feat-card-v3__media
{
  aspect-ratio: 396 / 180;
}

.feat-card-v3--big .feat-card-v3__body {
  padding-top: 1.1rem;
}

/* Match old mycard image size behavior on desktop */
@media (min-width: 992px) {
  .ftartimain .feat-card-v3--small .feat-card-v3__media {
    height: 32vh;
    aspect-ratio: auto;
  }

  .ftartimain .feat-card-v3--medium .feat-card-v3__media {
    height: 58vh;
    aspect-ratio: auto;
  }
}

@media (max-width: 991.98px) {
  .featured-articles-v3 .featstick {
    position: static !important;
  }

  .featured-articles-v3 .col-lg-7 .row > .col {
    gap: 1.25rem !important;
  }
}

/* === home.html block 5 === */
.club-insights-v2 {
  background: #000;
  --ci-gold: #c5a97b;
  --ci-muted: rgba(255, 255, 255, 0.72);
}

.club-insights-v2__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  background-color: #000 !important;
}

@media (min-width: 768px) {
  .club-insights-v2__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.club-insights-v2__title {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.02em;
}

.club-insights-v2__title span:first-child {
  color: #fff;
}

.club-insights-v2__title span:last-child {
  color: var(--ci-gold);
}

.club-insights-v2__tagline {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0.5rem 0 0;
}

.club-insights-v2__all {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  /* text-transform: uppercase; */
  color: #fff;
  text-decoration: underline !important;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.club-insights-v2__all:hover {
  color: var(--ci-gold);
}

.club-insights-v2__hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  background: #1a1a1a;
}

.club-insights-v2__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-insights-v2__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.club-insights-v2__hero-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.75rem 2rem;
}

@media (min-width: 992px) {
  .club-insights-v2__hero-inner {
    padding: 2rem 2.25rem 2.25rem;
  }
}

.club-insights-v2__time {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.club-insights-v2__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.club-insights-v2__pill {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.club-insights-v2__hero h3 {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  max-width: 36rem;
}

.club-insights-v2__excerpt {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ci-muted);
  margin: 0 0 1.25rem;
  max-width: 40rem;
}

.club-insights-v2__read {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline !important;
  text-underline-offset: 5px;
  align-self: flex-start;
}

.club-insights-v2__read:hover {
  color: var(--ci-gold);
}

.club-insights-v2__side {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  background: #1a1a1a;
  display: block;
  color: inherit;
  text-decoration: none;
}

.club-insights-v2__side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.club-insights-v2__side:hover img {
  transform: scale(1.04);
}

.club-insights-v2__side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
}

.club-insights-v2__side-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.5rem 1.75rem 2rem;
}

.club-insights-v2__side-cap h3 {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 0.65rem;
}

.club-insights-v2__author {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.club-insights-v2__grid article {
  height: 100%;
}

.club-insights-v2__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.club-insights-v2__card-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}

.club-insights-v2__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.club-insights-v2__card:hover .club-insights-v2__card-media img {
  transform: scale(1.03);
}

.club-insights-v2__card-body {
  padding-top: 1.15rem;
}

.club-insights-v2__meta {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ci-gold);
  margin: 0 0 0.5rem;
}

.club-insights-v2__card h3 {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.club-insights-v2__card p {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ci-gold);
  margin: 0;
}
.club-insights-v2__card .club-insights-v2__short_description {
  color: var(--ci-muted);
  font-weight: 400;
}

/* === home.html block 6 === */
.daily-vault-block {
  background: #fff;
  --dv-gold: #c5a97b;
  --dv-muted: #8a8580;
}

.daily-vault-block__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .daily-vault-block__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.daily-vault-block__title {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.02em;
}

.daily-vault-block__title-part--dark {
  color: #111;
}

.daily-vault-block__title-part--gold {
  color: var(--dv-gold);
}

.daily-vault-block__tagline {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dv-muted);
  margin: 0.5rem 0 0;
  max-width: 32rem;
}

.daily-vault-block__all {
  /* font-family: "Josefin Sans", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
    text-decoration: underline !important;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    white-space: nowrap;
}

 .explore-collection-block__link { */
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: grey;
  text-decoration: underline !important;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.daily-vault-block__all:hover {
  color: #5c5348;
}

.vault-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vault-card__media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #f0eeeb;
  aspect-ratio: 360 / 220;
}

.vault-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vault-card__media:hover img {
  transform: scale(1.03);
}

.vault-card__body {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}

.vault-card__pill {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c5348;
  background: rgba(197, 169, 123, 0.22);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.vault-card__title {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #111;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.vault-card__excerpt {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--dv-muted);
  margin: 0 0 1rem;
  flex: 1;
}

.vault-card__read {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.vault-card__read:hover {
  color: #000;
}

/* Daily club video collage */
.daily-club-video-wall {
  background: #fff;
}

.daily-club-video-wall__frame {
  background: #f6f6f6;
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 14px;
}

.daily-club-video-wall__grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 10px;
}

.daily-club-video-wall__tile {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #f6f6f6;
  aspect-ratio: 16 / 9;
  max-height: 245px;
}

.daily-club-video-wall__tile--hero {
  grid-row: span 2;
  aspect-ratio: auto;
  max-height: none;
}

.club-insight-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.club-insight-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.club-insight-video__symbol {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.club-insight-video-wrap:hover .club-insight-video__symbol {
  transform: translate(-50%, -50%) scale(1.05);
}

/* Keep support for image fallback cards */
.daily-club-video-wall__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.daily-club-video-wall__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.daily-club-video-wall__play::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(80, 80, 80, 0.95);
}

@media (max-width: 991.98px) {
  .daily-club-video-wall__grid {
    grid-template-columns: 1fr;
  }

  .daily-club-video-wall__tile--hero {
    grid-column: auto;
    grid-row: auto;
    max-height: 260px;
  }
}

@media (max-width: 575.98px) {
  .daily-club-video-wall__frame {
    padding: 10px;
  }

  .daily-club-video-wall__grid {
    gap: 8px;
  }

  .daily-club-video-wall__tile {
    max-height: 220px;
  }

  .daily-club-video-wall__tile--hero {
    max-height: 220px;
  }
}

/* === home.html block 7 === */
.explore-collection-block {
  /* background: #fff; */
  background: #000;

  --ec-muted: #8a8580;
  --ec-border: rgba(0, 0, 0, 0.08);
}

.explore-collection-block__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .explore-collection-block__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.explore-collection-block__title {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #111;
  margin: 0;
  line-height: 1.2;
}

.explore-collection-block__tagline {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ec-muted);
  margin: 0.5rem 0 0;
  max-width: 28rem;
}

.explore-collection-block__link {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: grey;
  text-decoration: underline !important;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.explore-collection-block__link:hover {
  color: #5c5348;
}

.explore-collection-block__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ec-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.explore-collection-block__card:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.explore-collection-block__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f4f2ef;
  overflow: hidden;
}

.explore-collection-block__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-collection-block__split {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.explore-collection-block__split > div {
  flex: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.explore-collection-block__split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.explore-collection-block__body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}

.explore-collection-block__label {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ec-muted);
  margin: 0 0 0.4rem;
}

.explore-collection-block__card-title {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #111;
  line-height: 1.3;
  margin: 0 0 1.1rem;
}

.explore-collection-block__btn {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c5a97b;
  background: #111;
  border: none;
  border-radius: 3px;
  padding: 0.65rem 1.35rem;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.explore-collection-block__btn:hover {
  background: #2a2a2a;
  color: #fff;
}

.explore-collection-block__title-part--dark {
  color: #ffffff;
}

.explore-collection-block__title-part--gold {
  color: var(--dv-gold);
}

.explore-collection-block__head {
  /* background: #fff; */
  background: transparent;
  --dv-gold: #c5a97b;
  --dv-muted: #8a8580;
}

/* === home.html block 8 === */
.contributors-v2 {
  background: #0c0c0c;
}

.contributors-v2 .mainhead {
  font-family: "the-seasons", "Times New Roman", serif;
  color: #c5a97b;
  letter-spacing: 0.02em;
}

.contributors-v2 .mainhead .text-white {
  color: #c5a97b !important;
}

.contributors-v2 .mycard .cardcont .head {
  font-family: "the-seasons", "Times New Roman", serif;
  color: #c5a97b;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.2;
}

/* === home.html block 9 === */
/* Override global mystyle footer:before split-panel */
footer.footer-v2::before {
  display: none !important;
  content: none !important;
}

.footer-v2 {
  background: #0c0c0c !important;
  --fv-gold: #c5a97b;
  --fv-pad-top: clamp(3.25rem, 6.5vw, 5rem);
  --fv-pad-bottom: clamp(2.5rem, 4.5vw, 3.5rem);
  --fv-title: clamp(1.5rem, 2.4vw, 1.875rem);
  --fv-body: 0.875rem;
  --fv-nav: 0.75rem;
  --fv-btn: 0.6875rem;
  --fv-copy: 0.6875rem;
  --fv-rhythm-sm: 0.875rem;
  --fv-rhythm-md: 1.375rem;
  --fv-rhythm-lg: 1.875rem;
  --fv-rhythm-xl: 2.25rem;
  color: rgba(255, 255, 255, 0.92);
  padding: var(--fv-pad-top) 0 var(--fv-pad-bottom) !important;
}

.footer-v2 .cmpad {
  position: relative;
}

.footer-v2__col--left,
.footer-v2__col--right {
  text-align: left;
  padding-top: 100px;
}

.footer-v2 .backtop {
  filter: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-v2 .backtop .backtop-arrow {
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.footer-v2__title {
  font-family: "the-seasons", "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--fv-gold);
  margin: 0rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}

.footer-v2__text {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: var(--fv-body);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 40ch;
}

.footer-v2__col--right .footer-v2__text {
  max-width: 48ch;
}

.footer-v2__social,
.footer-v2 .social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1rem;
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.footer-v2__social a,
.footer-v2 .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.footer-v2__social a:hover,
.footer-v2 .social a:hover {
  opacity: 1;
}

.footer-v2__social img,
.footer-v2 .social img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(18%) saturate(497%)
    hue-rotate(5deg) brightness(95%) contrast(88%);
}

.footer-v2__center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-v2__logo-wrap {
  position: relative;
  width: clamp(148px, 24vw, 172px);
  height: clamp(148px, 24vw, 172px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 14px);
  background: transparent;
}

.footer-v2__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.footer-v2__vline {
  width: 1px;
  min-height: 3rem;
  background: var(--fv-gold);
  margin-top: var(--fv-rhythm-md);
}

@media (min-width: 992px) {
  .footer-v2__vline {
    min-height: 15rem;
  }
}

.footer-v2__form {
  /* margin-top: var(--fv-rhythm-md); */
  margin-top: 1rem;
}

.footer-v2__form .footer-v2__field {
  display: flex;
  flex-direction: column;
  gap: var(--fv-rhythm-sm);
}

@media (min-width: 576px) {
  .footer-v2__form .footer-v2__field {
    flex-direction: row;
    align-items: stretch;
  }
}

.footer-v2__form input[type="email"] {
  flex: 1;
  min-width: 0;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: var(--fv-body);
  color: #fff;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 0.8125rem 1.125rem;
  min-height: 3rem;
  box-sizing: border-box;
}

.footer-v2__form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.85);
}

.footer-v2__form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-v2__form button[type="submit"] {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: var(--fv-btn);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  background: var(--fv-gold);
  border: none;
  border-radius: 6px;
  padding: 0.8125rem 1.625rem;
  min-height: 3rem;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.footer-v2__form button[type="submit"]:hover {
  filter: brightness(1.08);
}

.footer-v2__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.35rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  /* border-top: 1px solid rgba(197, 169, 123, 0.25); */
}

.footer-v2__nav a {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: var(--fv-nav);
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.25rem 0;
}

.footer-v2__nav a:hover {
  color: var(--fv-gold);
}

.footer-v2__copy {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: var(--fv-copy);
  letter-spacing: 0.05em;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: var(--fv-rhythm-xl) 0 0;
  padding-bottom: 0.125rem;
}

@media (max-width: 991.98px) {
  .footer-v2 {
    --fv-pad-top: clamp(2.2rem, 8vw, 3.25rem);
    --fv-pad-bottom: clamp(1.9rem, 6vw, 2.6rem);
  }

  .footer-v2__main {
    row-gap: 1.5rem !important;
  }

  .footer-v2__col--left,
  .footer-v2__col--right {
    padding-top: 0 !important;
    text-align: center;
  }

  .footer-v2__text,
  .footer-v2__col--right .footer-v2__text {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-v2__social,
.footer-v2 .social {
    justify-content: center;
  }

  .footer-v2__center {
    margin-bottom: 0.5rem;
  }

  .footer-v2__vline {
    display: none;
  }

  .footer-v2__form .footer-v2__field {
    flex-direction: column;
    width: 100%;
  }

  .footer-v2__form button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .footer-v2__title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .footer-v2__logo-wrap {
    width: 128px;
    height: 128px;
    padding: 10px;
  }

  .footer-v2__nav {
    gap: 0.45rem 0.9rem;
    margin-top: 1.6rem;
    padding-top: 1.3rem;
  }

  .footer-v2__copy {
    margin-top: 1.6rem;
    line-height: 1.45;
  }
}

/* === home.html block 10 === */
/* Position toast container at the bottom */
#toast-container {
  position: fixed;
  bottom: 140px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  pointer-events: none;
  z-index: 9999;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Style individual toasts */
#toast-container > div {
  opacity: 1 !important;
  -ms-filter: none !important;
  filter: none !important;
  width: auto !important;
  min-width: 0;
  max-width: 100%;
  margin: 20px 0;
  padding: 12px 24px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: auto;
}

/* Gold color for success and info */
.toast-success,
.toast-info {
  background-color: #c3a975 !important;
}

/* Red color for error and warning */
.toast-error,
.toast-warning {
  background-color: #c3a975 !important;
}

/* Adjust close button position */
.toast-close-button {
  position: absolute;
  top: 5px;
  right: 5px;
}

.toast-message {
  padding-left: 25px !important;
}

/* === home.html block 11 === */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: sans-serif;
  flex-direction: column;
}

.loader-spinner img.loader-logo {
  width: 100px;
  height: 100px;
  animation: pulse 1.5s infinite;
  border-radius: 50%;
  object-fit: cover;
  /* optional: ensures image doesn't stretch */
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}
