/* ============================================================
   Highland Folk Heritage — Single Hotel Detail
   ============================================================ */

/* ----- LIGHTBOX ----- */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 40, 24, 0.85);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s var(--bh-ease-out);
}

#lightbox img {
  display: block;
  object-fit: contain;
  border-radius: var(--bh-radius-md);
}

/* ----- HERO ----- */
.dhero {
  position: relative;
  height: 460px;
  overflow: hidden;
}

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

.dhero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 40, 24, 0.2) 0%, rgba(13, 40, 24, 0.05) 30%, rgba(13, 40, 24, 0.85) 100%);
}

.dhero-c {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  color: #fff;
  z-index: 2;
}

.dhero-stars {
  color: var(--bh-gold-400);
  font-size: var(--bh-text-lg);
  letter-spacing: 3px;
  margin-bottom: var(--bh-sp-2);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.dhero h1 {
  font-family: var(--bh-font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--bh-sp-2);
  color: var(--bh-garnet-100);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.3);
}

.dhero-loc {
  font-size: var(--bh-text-sm);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: var(--bh-sp-2);
}

.dhero-meta {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-3);
  margin-top: 14px;
}

.dhero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: var(--bh-radius-md);
  font-size: var(--bh-text-xs);
  font-weight: 600;
}

.dhero-score {
  background: var(--bh-garnet-600);
  padding: 6px 14px;
  border-radius: var(--bh-radius-md);
  font-size: var(--bh-text-sm);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(36, 99, 74, 0.35);
}

.dhero-back {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: var(--bh-text-sm);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--bh-radius-md);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dhero-back:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ----- ORNAMENT ----- */
.ornament {
  height: 3px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg,
    var(--bh-garnet-400) 0, var(--bh-garnet-400) 6px,
    transparent 6px, transparent 10px,
    var(--bh-gold-400) 10px, var(--bh-gold-400) 14px,
    transparent 14px, transparent 18px,
    var(--bh-spa-400, #4CA8C8) 18px, var(--bh-spa-400, #4CA8C8) 22px,
    transparent 22px, transparent 26px);
}

.orn-w {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ----- TWO-COLUMN LAYOUT ----- */
.dl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.dm {
  min-width: 0;
}

.ds {
  align-self: start;
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bh-stone-200) transparent;
}

.ds::-webkit-scrollbar {
  width: 4px;
}

.ds::-webkit-scrollbar-thumb {
  background: var(--bh-stone-200);
  border-radius: 2px;
}

.ds::-webkit-scrollbar-track {
  background: transparent;
}

/* ----- GALLERY ----- */
.gal {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  margin-bottom: 32px;
  border-radius: var(--bh-radius-xl);
  overflow: hidden;
}

.gi {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--bh-ease-out);
}

.gi:hover img {
  transform: scale(1.05);
}

.gi:first-child {
  grid-row: 1 / 3;
}

.gi-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: var(--bh-text-xs);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
}

/* ----- CONTENT BLOCKS ----- */
.blk {
  margin-bottom: 40px;
}

.blk-t {
  font-family: var(--bh-font-display);
  font-size: var(--bh-text-xl);
  margin-bottom: var(--bh-sp-4);
  padding-bottom: var(--bh-sp-3);
  border-bottom: 1px solid var(--bh-stone-150);
}

/* ----- ARTICLE (overview) ----- */
.art h3 {
  font-family: var(--bh-font-display);
  font-size: var(--bh-text-lg);
  margin: 24px 0 10px;
  color: var(--bh-stone-900);
}

.art h3:first-child {
  margin-top: 0;
}

.art p {
  font-size: var(--bh-text-base);
  color: var(--bh-stone-600);
  line-height: 1.72;
  margin-bottom: var(--bh-sp-3);
}

.art strong {
  color: var(--bh-stone-800);
}

.art em {
  color: var(--bh-stone-700);
  font-style: normal;
  font-weight: 600;
}

.art i {
  font-style: italic;
  color: var(--bh-stone-500);
}

/* ----- GUEST SCORES ----- */
.sc-head {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-4);
  margin-bottom: 24px;
}

.sc-big {
  background: var(--bh-garnet-600);
  color: #fff;
  font-family: var(--bh-font-display);
  font-size: 34px;
  font-weight: 700;
  width: 68px;
  height: 68px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(36, 99, 74, 0.25);
}

.sc-label {
  font-weight: 700;
  font-size: var(--bh-text-lg);
}

.sc-sub {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-400);
}

.sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.sc-row {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-3);
}

.sc-row-l {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-600);
  width: 130px;
  flex-shrink: 0;
}

.sc-bar {
  flex: 1;
  height: 7px;
  background: var(--bh-stone-150);
  border-radius: 99px;
  overflow: hidden;
}

.sc-bar-f {
  height: 100%;
  border-radius: 99px;
  transition: width 0.8s var(--bh-ease-out);
}

.sc-row-v {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-text-xs);
  font-weight: 600;
  width: 30px;
  text-align: right;
}

/* ----- ROOMS ----- */
.rm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: var(--bh-sp-5);
}

.rm {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--bh-surface-card, #fff);
  border: 1px solid var(--bh-stone-150);
  border-radius: var(--bh-radius-lg);
  transition: all 0.2s;
}

.rm:hover {
  border-color: var(--bh-garnet-200);
  background: var(--bh-garnet-50);
}

.rm-name {
  font-weight: 700;
  font-size: var(--bh-text-base);
  margin-bottom: 6px;
}

.rm-beds {
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-500);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.rm-bed {
  background: var(--bh-stone-100);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.rm-guests {
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
}

.rm-pr {
  margin-top: auto;
  padding-top: var(--bh-sp-3);
  border-top: 1px solid var(--bh-stone-100);
}

.rm-pr-v {
  font-family: var(--bh-font-display);
  font-size: var(--bh-text-xl);
  font-weight: 700;
}

.rm-pr-u {
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
}

.rm-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--bh-garnet-600);
  color: #fff;
  border: none;
  border-radius: var(--bh-radius-lg);
  font-family: var(--bh-font-body);
  font-size: var(--bh-text-md);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s var(--bh-ease-out);
  box-shadow: var(--bh-shadow-sm);
}

.rm-cta:hover {
  background: var(--bh-garnet-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(36, 99, 74, 0.35);
}

/* ----- FACILITIES ----- */
.fc-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fc-sec {
  background: var(--bh-stone-50, #faf9f7);
  border: 1px solid var(--bh-stone-150);
  border-radius: 10px;
  padding: 14px 16px;
  transition: box-shadow 0.2s ease;
  min-width: 0;
  overflow: hidden;
}

.fc-sec:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.fc-cat {
  font-size: var(--bh-text-sm);
  font-weight: 700;
  color: var(--bh-stone-800);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-icon {
  width: 28px;
  height: 28px;
  background: var(--bh-garnet-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bh-garnet-600);
}

.fc-icon svg {
  width: 16px;
  height: 16px;
}

.fc-cnt {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--bh-stone-600);
  background: var(--bh-stone-150);
  border-radius: 20px;
  padding: 1px 8px;
  min-width: 22px;
  text-align: center;
}

.fc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  max-height: 96px;
  overflow: hidden;
}

.fc-item {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-600);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fc-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bh-garnet-400);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .fc-wrap {
    grid-template-columns: 1fr;
  }
}

/* ----- HOUSE RULES ----- */
.ru-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ru {
  background: var(--bh-surface-card, #fff);
  border: 1px solid var(--bh-stone-150);
  border-radius: var(--bh-radius-md);
  padding: var(--bh-sp-4);
  transition: border 0.2s;
}

.ru:hover {
  border-color: var(--bh-stone-200);
}

.ru-k {
  font-size: var(--bh-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bh-garnet-600);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ru-v {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-600);
  line-height: 1.55;
}

/* ----- REVIEWS ----- */
.rv {
  background: var(--bh-surface-card, #fff);
  border: 1px solid var(--bh-stone-150);
  border-radius: var(--bh-radius-lg);
  padding: 20px;
  margin-bottom: 12px;
  transition: border 0.2s;
}

.rv:hover {
  border-color: var(--bh-stone-200);
}

.rv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: var(--bh-sp-3);
}

.rv-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bh-garnet-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--bh-text-md);
  color: var(--bh-garnet-700);
  flex-shrink: 0;
}

.rv-name {
  font-weight: 700;
  font-size: var(--bh-text-sm);
}

.rv-country {
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
}

.rv-score {
  background: var(--bh-garnet-600);
  color: #fff;
  font-size: var(--bh-text-sm);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  flex-shrink: 0;
}

.rv-title {
  font-weight: 600;
  font-size: var(--bh-text-sm);
  margin-bottom: 6px;
  font-style: italic;
  color: var(--bh-stone-700);
}

.rv-text {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-600);
  line-height: 1.6;
}

.rv-neg {
  font-size: var(--bh-text-sm);
  color: var(--bh-garnet-700);
  line-height: 1.6;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--bh-stone-100);
}

.rv-date {
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
  margin-top: 8px;
}

/* ----- SURROUNDINGS ----- */
.su-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bh-sp-4);
}

.su {
  background: var(--bh-surface-card, #fff);
  border: 1px solid var(--bh-stone-150);
  border-radius: var(--bh-radius-md);
  padding: var(--bh-sp-4);
}

.su-cat {
  font-size: var(--bh-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bh-spa-700, #1B5974);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.su-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: var(--bh-text-sm);
  border-bottom: 1px solid var(--bh-stone-100);
}

.su-row:last-child {
  border-bottom: none;
}

.su-name {
  color: var(--bh-stone-600);
}

.su-dist {
  font-family: var(--bh-font-mono);
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
  font-weight: 500;
}

/* ----- SIDEBAR: BOOKING CARD ----- */
.bk {
  background: var(--bh-surface-card, #fff);
  border: 1px solid var(--bh-stone-150);
  border-radius: var(--bh-radius-xl);
  padding: 28px;
  box-shadow: var(--bh-shadow-md);
  margin-bottom: var(--bh-sp-4);
}

.bk-hotel-name {
  font-family: var(--bh-font-display);
  font-size: var(--bh-text-lg);
  font-weight: 700;
  color: var(--bh-text-primary);
  line-height: 1.3;
  margin-bottom: var(--bh-sp-1);
}

.bk-addr {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-500);
  line-height: 1.4;
  margin-bottom: var(--bh-sp-4);
  padding-bottom: var(--bh-sp-4);
  border-bottom: 1px solid var(--bh-stone-100);
}

.bk-addr svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--bh-stone-400);
}

.bk-pr {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.bk-pr b {
  font-family: var(--bh-font-display);
  font-size: 32px;
  font-weight: 700;
}

.bk-pr span {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-400);
}

.bk-rt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bk-sc {
  background: var(--bh-garnet-600);
  color: #fff;
  font-size: var(--bh-text-sm);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
}

.bk-sc-t {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-400);
}

.bk-stars {
  color: var(--bh-gold-400);
  font-size: var(--bh-text-sm);
  letter-spacing: 2px;
  margin-bottom: var(--bh-sp-4);
}

.bk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--bh-sp-4);
}

.qtag {
  font-size: var(--bh-text-xs);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--bh-forest-50, #F0F7F2);
  color: var(--bh-forest-700, #225432);
}

.qtag.spa {
  background: var(--bh-spa-50, #F0F7FA);
  color: var(--bh-spa-700, #1B5974);
}

.bk-btn {
  width: 100%;
  padding: 16px;
  background: var(--bh-garnet-600);
  color: #fff;
  border: none;
  border-radius: var(--bh-radius-lg);
  font-family: var(--bh-font-body);
  font-size: var(--bh-text-md);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s var(--bh-ease-out);
  box-shadow: var(--bh-shadow-sm);
  margin-bottom: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.bk-btn:hover {
  background: var(--bh-garnet-700);
  transform: translateY(-1px);
  box-shadow: var(--bh-shadow-md);
}

.bk-note {
  font-size: var(--bh-text-xs);
  color: var(--bh-stone-400);
  text-align: center;
  margin-bottom: var(--bh-sp-4);
}

.bk-div {
  height: 1px;
  background: var(--bh-stone-150);
  margin: var(--bh-sp-4) 0;
}

.bk-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bh-sp-2);
  font-size: var(--bh-text-sm);
  font-weight: 600;
  color: var(--bh-stone-600);
  text-decoration: none;
  transition: color 0.15s;
}

.bk-phone:hover {
  color: var(--bh-garnet-600);
}

/* ----- SIDEBAR: MAP ----- */
.ds-map {
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
  margin-bottom: var(--bh-sp-4);
}

.ds-map .map-container {
  height: 200px;
  background: var(--bh-stone-200);
}

/* ----- SIDEBAR: ADDRESS ----- */
.ds-addr {
  background: var(--bh-surface-card, #fff);
  border: 1px solid var(--bh-stone-150);
  border-radius: var(--bh-radius-lg);
  padding: var(--bh-sp-4);
  margin-bottom: var(--bh-sp-4);
}

.ds-addr-title {
  font-size: var(--bh-text-sm);
  font-weight: 700;
  margin-bottom: var(--bh-sp-2);
}

.ds-addr p {
  font-size: var(--bh-text-sm);
  color: var(--bh-stone-600);
  margin: 0;
  line-height: 1.55;
}

/* ----- SIDEBAR: HELP ----- */
.ds-help {
  background: var(--bh-spa-50, #F0F7FA);
  border: 1px solid var(--bh-spa-100, #DCEEF5);
  border-radius: var(--bh-radius-lg);
  padding: var(--bh-sp-4);
  margin-bottom: var(--bh-sp-4);
}

.ds-help b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--bh-text-sm);
  margin-bottom: 8px;
}

.ds-help p {
  font-size: var(--bh-text-sm);
  color: var(--bh-spa-700, #1B5974);
  line-height: 1.6;
  margin: 0;
}

/* ----- MOBILE CTA ----- */
#lastcta {
  display: none;
}

/* ----- RELATED POSTS ----- */
.related-posts .flex-ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--bh-sp-4) var(--bh-sp-8);
  text-align: center;
}

/* ----- SECTION HEADINGS ----- */
.hotel section .container > h2:first-child,
.hotel section .container > .h2:first-child,
.hotel section .container > h3:first-child,
.hotel section .container > .h3:first-child,
.hotel section .container > h4:first-child,
.hotel section .container > .h4:first-child,
.hotel section .container > h5:first-child,
.hotel section .container > .h5:first-child,
.hotel section .container > p:first-child,
.hotel section .container > .p:first-child {
  margin-top: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .dhero {
    height: 340px;
  }

  .dhero h1 {
    font-size: var(--bh-text-2xl);
  }

  .dhero-c {
    padding: 24px 16px;
  }

  .dhero-back {
    left: 16px;
    top: 16px;
    padding: 6px 12px;
    font-size: var(--bh-text-xs);
  }

  .dhero-meta {
    flex-wrap: wrap;
    gap: var(--bh-sp-2);
  }

  .orn-w {
    padding: 0 16px;
  }

  .dl {
    grid-template-columns: 1fr;
    padding: 20px 16px 32px;
    gap: 24px;
  }

  .gal {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }

  .gi:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .sc-grid {
    grid-template-columns: 1fr;
  }

  .sc-row-l {
    width: 110px;
  }

  .rm-grid {
    grid-template-columns: 1fr;
  }

  .fc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ru-grid {
    grid-template-columns: 1fr;
  }

  .su-grid {
    grid-template-columns: 1fr;
  }

  .ds {
    position: relative;
    top: 0;
    max-height: none;
    overflow-y: visible;
  }

  #lastcta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--bh-sp-4);
    z-index: 99999;
    background: linear-gradient(135deg, var(--bh-garnet-800), var(--bh-garnet-600));
  }

  #lastcta .cta-phone {
    display: none;
  }

  #lastcta .cta-link {
    width: 100%;
    color: #fff;
    text-align: center;
  }

  #lastcta .cta-buttons .button {
    background: #fff;
    color: var(--bh-garnet-700);
    width: 100%;
    justify-content: center;
  }

  .related-posts .flex-ul {
    justify-content: left;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .dhero {
    height: 280px;
  }

  .dhero h1 {
    font-size: var(--bh-text-xl);
  }

  .dhero-stars {
    font-size: var(--bh-text-base);
  }

  .gal {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 120px 120px;
  }

  .gi:first-child {
    grid-row: auto;
  }

  .fc-grid {
    grid-template-columns: 1fr;
  }

  .sc-big {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
}
