/* =====================================================================
   CABIN COLLECTION PAGES (mt_collections taxonomy terms)
   ===================================================================== */

/* --- Header --- */
.collection-header {
  padding: 1.5rem 0 0.5rem;
}
.collection-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #2B2B2B;
  margin: 0;
  line-height: 1.2;
}

/* --- Breadcrumb --- */
.collection-breadcrumb {
  padding: 0.25rem 0 1.25rem;
}
.collection-breadcrumb .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
  font-size: 0.85rem;
}
.collection-breadcrumb .breadcrumb__item {
  color: #888;
}
.collection-breadcrumb .breadcrumb__item a {
  color: #2B2B2B;
  text-decoration: none;
  transition: color 0.2s ease;
}
.collection-breadcrumb .breadcrumb__item a:hover {
  color: #F3C45D;
}
.collection-breadcrumb .breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  padding-right: 0.4rem;
  color: #ccc;
}
.collection-breadcrumb .breadcrumb__item--active {
  color: #F3C45D;
  font-weight: 600;
}

/* --- Intro Row (image + description) --- */
.collection-intro {
  padding: 0 0 2rem;
  align-items: flex-start;
}
.collection-intro__image {
  margin-bottom: 1.25rem;
}
.collection-intro__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@media (min-width: 768px) {
  .collection-intro__image {
    margin-bottom: 0;
  }
}

/* --- Cabin Grid --- */
.collection-cabins {
  padding-top: 0.5rem;
}
.collection-cabins .views-row {
  list-style: none;
}
.collection-cabins .mt-teaser-tile {
  margin-bottom: 0 !important;
}

/* =====================================================================
   PAGER — Yellow / Charcoal theme
   ===================================================================== */
.pager {
  padding: 2rem 0 1rem;
  text-align: center;
}
.pager__items {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.pager__item a,
.pager__item a.mt-style-custom-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0.3rem 0.7rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #2B2B2B;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
}
.pager__item a:hover,
.pager__item a.mt-style-custom-all:hover {
  border-color: #F3C45D;
  background: #FFF9E6;
  color: #2B2B2B;
}
.pager__item.is-active a,
.pager__item.is-active a.mt-style-custom-all {
  background: #F3C45D;
  border-color: #F3C45D;
  color: #2B2B2B;
  box-shadow: 0 2px 8px rgba(243, 196, 93, 0.35);
}
.pager__item.is-active a:hover,
.pager__item.is-active a.mt-style-custom-all:hover {
  background: #e6b84f;
  border-color: #e6b84f;
}
.pager__item--next a,
.pager__item--last a,
.pager__item--previous a,
.pager__item--first a {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
