.left_widget__img {
  text-align: center;
}

.left_widget__img img {
  margin-bottom: 25px;
  border-radius: 12px;
}

.div_load_more {
  display: flex;
  justify-content: center;
}

.btn_load_more {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.btn_load_more img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.btn_load_more:hover img.hover {
  opacity: 1;
}

#waiting_load_more {
  display: none;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.embed-container {
  --video--width: 406;
  --video--height: 608;
  position: relative;
  width: 100%;
  max-width: calc(var(--video--width) * 1px);
  background: black;
  border-radius: 12px;
  margin: 0 auto;
  overflow: hidden;
}

.embed-container::before {
  content: "";
  display: block;
  padding-top: calc(var(--video--height) / var(--video--width) * 100%);
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.datepicker.dropdown-menu {
  width: auto !important;
  background-color: #232323;
}

.datepicker.dropdown-menu div {
  color: white;
}

.article-limit-container .article-limit {
  max-width: none;
}

.name_desc {
  text-align: center;
}

.name_desc > h2 {
  font-size: 14px;
  margin: 0;
}

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

.visual-h1-desktop {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
}

.visual-h1-mobile {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
}

.gallery-item-responsive {
  float: left;
  padding: 0 15px;
}

.model-flag-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #de33cd;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 15px;
  z-index: 2;
  pointer-events: none;
}

/* Hover effect for escort images */
.item-girl-block .subitem-girl-block figure {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  isolation: isolate;
}

.item-girl-block .subitem-girl-block figure img {
  transition: transform 0.5s ease;
  border-radius: 12px;
  display: block;
}

.item-girl-block:hover .subitem-girl-block figure img {
  transform: scale(1.05);
}

/* Desktop (>768px): 5 items per row */
@media (min-width: 768px) {
  .gallery-item-responsive { width: 20%; }
}
/* Mobile (<=767px): 2 items per row */
@media (max-width: 767px) {
  .gallery-item-responsive { width: 50%; }
}

/* =========================================
   3. GUIDE CARD
   @used-in: Escort Guides
   ========================================= */

/* --- GUIDE CARD STYLES --- */

.guide-card {
  display: block;
  height: 100%;
}

.guide-card__link {
  text-decoration: none;
  color: #30aef6;
  display: flex;
  flex-direction: row; /* Horizontal layout */
  align-items: flex-start;
  gap: 2rem; /* Bootstrap-like gap */
  height: 100%;
}

.guide-card__img-wrapper {
  position: relative;
  /* Fixed width for the left column (image) */
  flex: 0 0 280px;
  width: 280px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-bg-light);
  margin-bottom: 0;
}

.guide-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guide-card:hover .guide-card__img {
  transform: scale(1.05);
}

.guide-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  /* Center vertically if needed, otherwise remove */
  justify-content: center;
}

.guide-card__title {
  font-size: 1.5rem; /* Adjusted slightly for section header hierarchy */
  line-height: 1.4;
  color: var(--color-text-main); /* Inherit original variable */
  margin-bottom: 0.75rem;
  font-weight: 400;

  /* Display full title */
  display: block;
  overflow: visible;
  white-space: normal;
  transition: color 0.2s;
}

.guide-card:hover .guide-card__title {
  color: var(--color-primary);
}

.guide-card__desc {
  font-size: 1rem;
  color: var(--color-text-muted); /* Inherit original variable */
  line-height: 1.5;
  margin-bottom: 1rem;

  /* Display full description */
  display: block;
  -webkit-line-clamp: unset;
}

.guide-card__meta {
  margin-top: auto;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

/* --- RESPONSIVE --- */

@media (max-width: 768px) {
  .guide-card__link {
    flex-direction: column; /* Revert to vertical on mobile */
    gap: 1rem;
  }

  .guide-card__img-wrapper {
    flex: none;
    width: 100%;
    aspect-ratio: 16/9;
  }
}

@media (min-width: 1400px) {
    .main-navigation {
        font-size: 16px;
    }
}
