/* Dynamic components — girl gallery, blog detail, cards */

.girl-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.girl-card__link:hover .girl-card__img-wrap img {
  transform: scale(1.03);
}

.girl-card__img-wrap img {
  transition: transform 0.35s ease;
}

.girl-card__photos {
  margin: 0;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--gold-2, #e9df79);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.girl-card__photos span {
  opacity: 0.9;
}

.girl-card h2.girl-card__name a,
h2.girl-card__name a {
  color: transparent;
  background-image: linear-gradient(0deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  text-decoration: none;
}

.girl-card h2.girl-card__name a:hover,
.girl-card h2.girl-card__name a:focus,
h2.girl-card__name a:hover,
h2.girl-card__name a:focus {
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2.5px 4.33px 2.5px rgba(0, 0, 0, 0.75)) brightness(1.1);
}

/* Girl detail */
.girl-breadcrumb,
.blog-breadcrumb {
  margin-bottom: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.girl-breadcrumb a,
.blog-breadcrumb a {
  color: var(--gold-2, #e9df79);
  text-decoration: none;
}

.girl-breadcrumb a:hover,
.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.girl-detail__name {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.girl-detail__bio {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.5rem;
}

.girl-detail-cta a {
  margin-right: 1rem;
}

/* Multi-image gallery */
.girl-gallery__main-wrap {
  position: relative;
  border: 2px solid #e9df79;
  margin-bottom: 1rem;
}

.girl-gallery__main {
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111;
}

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

.girl-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #e9df79;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.girl-gallery__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.girl-gallery__arrow--prev {
  left: 10px;
}

.girl-gallery__arrow--next {
  right: 10px;
}

.girl-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .girl-gallery__thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .girl-gallery__thumb {
    flex: 0 0 72px;
    max-width: 72px;
  }
}

.girl-gallery__thumb {
  flex: 0 0 calc(25% - 0.375rem);
  max-width: calc(25% - 0.375rem);
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: border-color 0.2s, opacity 0.2s;
}

.girl-gallery__thumb.is-active {
  border-color: #e9df79;
}

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

.girl-gallery__hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.girl-gallery__hint i {
  margin-right: 0.35rem;
  color: #e9df79;
}

/* Lightbox */
body.exotic-lightbox-open {
  overflow: hidden;
}

.exotic-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.exotic-lightbox__figure {
  margin: 0;
  max-width: min(90vw, 520px);
  text-align: center;
}

.exotic-lightbox__figure img {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border: 2px solid #e9df79;
}

.exotic-lightbox__figure figcaption {
  margin-top: 0.75rem;
  color: #e9df79;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.exotic-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.exotic-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(233, 223, 121, 0.15);
  color: #e9df79;
  font-size: 2rem;
  cursor: pointer;
}

.exotic-lightbox__nav--prev {
  left: 1rem;
}

.exotic-lightbox__nav--next {
  right: 1rem;
}

.exotic-lightbox__thumbs {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  max-width: 95vw;
  overflow-x: auto;
  padding: 0.25rem;
}

.exotic-lightbox__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.exotic-lightbox__thumb.is-active {
  border-color: #e9df79;
}

.exotic-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .exotic-lightbox {
    padding: 3.5rem 0.5rem 5.5rem;
  }

  .exotic-lightbox__figure {
    max-width: min(88vw, 420px);
  }

  .exotic-lightbox__figure img {
    max-height: 58vh;
  }

  .exotic-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .exotic-lightbox__nav--prev {
    left: 0.25rem;
  }

  .exotic-lightbox__nav--next {
    right: 0.25rem;
  }

  .exotic-lightbox__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .exotic-lightbox__thumbs {
    bottom: 0.5rem;
    max-width: 98vw;
  }
}

/* Blog detail */
.blog-detail-article {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.blog-detail-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

.blog-detail-cat {
  color: var(--gold-2, #e9df79);
}

.blog-detail-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.blog-detail-featured {
  margin-bottom: 2rem;
  overflow: hidden;
}

.blog-detail-featured img {
  width: 100%;
  display: block;
}

.blog-detail-body p {
  font-family: "Roboto", Sans-serif;
    font-size: 19px;
    line-height: 25px;
    letter-spacing: 0px;
    color: #E5E5E5;
}

.blog-related {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(233, 223, 121, 0.3);
}

.blog-related h3 {
  font-family: "Oswald", sans-serif;
  color: #e9df79;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

.blog-related li {
  margin-bottom: 0.75rem;
}

.blog-related a {
  color: #fff;
  text-decoration: none;
}

.blog-related a:hover {
  color: #e9df79;
}

@media (max-width: 575.98px) {
  .girl-gallery__thumb {
    flex: 0 0 calc(33.333% - 0.34rem);
    max-width: calc(33.333% - 0.34rem);
  }
}
