/*
Theme Name: Phrasing
Author: Phrasing Development
Author URI: http://www.phrasing.agency
Description: HTML5 theme
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

:root {
	--radius: 1.5rem;
	--blue: #78C1D5;
	--light-blue: #80D8F0;
	--dark-blue: #0E4C81;
	--off-black: #121212;
	--grey: #4F4F4F;
	--light-grey: rgba(0, 0, 0, 0.50);
	--body-grey: #F8F9FA;
	--panel-border: #E7E7E7;
	--large: clamp(1rem, 0.85rem + 0.6vw, 1.5rem);
	--regular: clamp(0.875rem, 0.8rem + 0.45vw, 1.125rem);
	--small: clamp(0.875rem, 0.82rem + 0.35vw, 1rem);;
	--tiny: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
	--container-width: 90%;
	--container-max: 1400px;
	--spacing-large: clamp(4rem, 3.5rem + 1.25vw, 5rem);
	--spacing-small: clamp(2.5rem, 2.05rem + 1.1vw, 3.5rem);
	--spacing-medium: clamp(3rem, 2.6rem + 1.2vw, 4rem);
	--spacing-tiny: clamp(2rem, 1.85rem + 0.6vw, 2.5rem);
	--inactive: #B8B8B8;
	--full-width: width: calc(100% - 3rem);
}

* {
  font-family: 'Quicksand', Arial, sans-serif;
}

 *, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.body-grey {
	background: var(--body-grey);
}

.tiny {
	font-size: var(--tiny);
}

#intro, 
.container {
	max-width: var(--container-max);
	width: var(--container-width);
	margin: auto;
}

h1 {
	font-family: Quicksand;
	font-size: clamp(2rem, 1.45rem + 2vw, 3.5rem);
	font-style: normal;
	font-weight: 700;
	line-height: 110%; /* 2.75rem */
	letter-spacing: -0.05rem;
	margin-bottom: 3rem;
	margin-top: 2rem;
	color: #000;
}

h2 {
	font-size: clamp(2rem, 1.55rem + 1.6vw, 3rem);
	font-style: normal;
	font-weight: 700;
	line-height: 110%; /* 3.3rem */
	letter-spacing: -0.06rem;
	color: var(--off-black);
}

h4 {
	font-size: 2rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 2.4rem */
	letter-spacing: -0.04rem;
	margin-bottom: var(--spacing-tiny);
}

h5 {
	font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 1.8rem */
	letter-spacing: -0.03rem;
	color: var(--off-black);
}

h6 {
	font-size: var(--typography-text-size-H6, 1.25rem);
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 1.5rem */
	letter-spacing: -0.025rem;
}

p {
	font-family: Quicksand;
	font-size: var(--regular);
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 1.6875rem */
	color: #000;
}

a {
	text-decoration: none;
	color: var(--dark-blue);
}

.tagline {
	font-size: var(--small, 1rem);
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 1rem */
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	margin: 0;
	}

.subtitle {
	font-size: var(--large);
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 2.25rem */
	margin: 0;
}

img {
	border-radius: var(--radius);
}

.btn {
	display: inline-flex;
  	align-items: center;
  	gap: 0.5rem;
	background: var(--light-blue);
	color: white;
	height: 3.25rem;
	padding: 1.0625rem 1.625rem;
	font-weight: 500;
	font-size: var(--regular);
	border-radius: 0.75rem;
	border: none;
	text-decoration: none;
}

.btn:hover {
	cursor: pointer;
}

.btn .icon {
	display: inline-flex; 
	transition: transform 0.25s ease;
}

.btn:hover .icon {
	transform: rotate(90deg);
}

.btn.white {
	background: white;
	border: 1px solid var(--dark-blue);
	color: var(--off-black);
}

.btn.dark {
	color: var(--off-black);
}

.transparent {
	background: transparent;
	border: 1px solid white;
}

.body-grey {
	background: var(--body-grey);}

/* =========================
   		 Header
========================= */

.main-header {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 5rem;
  background: var(--body-grey);
  gap: 2rem;
}

.header-left,
.header-right {
  position: relative;
  z-index: 2; 
}

#menu-header-menu, #menu-header-menu-1 {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 2.5rem;
}

#menu-header-menu-1 {
	padding-inline-start: 0;
}

#menu-header-menu li a,
.footer-menu li a {
	font-size: var(--small);
	color: var(--off-black);
	text-decoration: none;
}

.logo {
	width: 5rem;
	height: auto;
	margin-left: -15px;
}

.main-menu ul {
  display:flex;
  gap:1.5rem;
  list-style:none;
  margin:0;
  padding:0;
}

.main-menu a {
  text-decoration:none;
}



/* =========================
   		Mobile Menu
========================= */

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

.nav-toggle { 
	display:none; 
}



/* =========================
   		Home Page
========================= */

.home-title h1 {
	font-family: Quicksand;
	font-size: clamp(2.625rem, 1.9rem + 2.8vw, 4.5rem);
	font-style: normal;
	font-weight: 700;
	line-height: 115%; /* 5.175rem */
	letter-spacing: -0.09rem;
	color: #fff;
}

.home-title {
	margin-top: auto;
	max-width: 49.41rem;
}

.home-title .btn:first-of-type {
	margin-right: 0.5rem;
}

.hero-container {
	padding: 0 1.5rem;
	background: var(--body-grey);
}

.home-hero {
	height: 75vh;
	border-radius: var(--radius);
	width: 100%;
	display: flex;
	padding: var(--spacing-large);
	flex-direction: column;
}

.hero-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;	
	margin-top: auto;
	justify-content: space-between;
}

.arrow {
	display: flex;
	width: 3.1rem;
	height: 3.1rem;
	padding: 1rem 0;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	aspect-ratio: 1/1;
	border-radius: 3.125rem;
	border: 1px solid white;
}

.home-title-buttons {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
}

.home p {
	color: var(--grey);
}

.grey-wrapper {
	background: var(--body-grey);
}
	
#intro {
	max-width: var(--container-max);
	width: var(--container-width);
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-top: var(--spacing-large);
	padding-bottom: var(--spacing-small);
}

#intro div:first-of-type {
	max-width: 31.78rem;
}

#intro div:last-of-type {
	width: 43%;
}

#banner-image {
	background: url('/wp-content/uploads/2025/12/f80e9e280e234fd5d7cecd4059c05b3b716d759e-scaled.jpg') center / cover no-repeat;
	height: 33rem;
	width: 100%;
	border-radius: var(--radius);
}

.banner-image-container {
	margin: 0 1.5rem 0 1.5rem;
	padding-bottom: var(--spacing-large);
}

#stories {
	background: white;
	padding-top: var(--spacing-large);
	padding-bottom: var(--spacing-small);
}

#stories .blog-feed {
	padding-top: var(--spacing-medium);
}


/* =========================
   		Hotel Page
========================= */

.breadcrumbs {
	font-size: var(--tiny);
	font-style: normal;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-top: var(--spacing-large);
	color: black;
}

.breadcrumbs span {
	margin-bottom: -3px;
	margin-left: -7px;
}

.entry-content {
	display: flex;
	flex-direction: row;
	gap: var(--spacing-large);
}

.content-container img {
	width: 100%;
	margin: 2rem 0;
	object-fit: cover;
}

.article-content p:first-of-type {
	margin-top: 0;
}

/* DESKTOP / TABLET WIDE */
@media (min-width: 901px){

  /* Make the whole top section a 2-col grid */
  .entry-content.container{
		display: grid;
		grid-template-columns: minmax(0, 1fr) 360px; /* adjust 360px */
		column-gap: 5rem;
		align-items: start;
		grid-template-areas:
			"crumbs sidebar"
			"title  sidebar"
			"image  sidebar"
			"body   sidebar";
		grid-auto-rows: auto;
		align-items: start;
  }
  
  .breadcrumbs     { grid-area: crumbs; }
  .entry-title     { grid-area: title; }
  .featured-image  { grid-area: image; }
  .article-content { grid-area: body; }
  
  /*
    Flatten .content-container so its children become direct grid items.
    This allows the sidebar (currently nested) to live in column 2.
  */
  .entry-content.container > .content-container{
    display: contents;
  }

  /* Left column items */
  .entry-content.container .breadcrumbs,
  .entry-content.container .entry-title,
  .entry-content.container .featured-image,
  .entry-content.container .article-content{
    grid-column: 1;
  }

  /* Right column sidebar */
  .entry-content.container .sidebar{
    grid-column: 2;
    grid-row: 1 / span 4; /* keeps it alongside the whole left column stack */
    align-self: stretch;
    width: 100%;
  }

  /* Keep images from blowing out the grid */
  .entry-content.container .featured-image{
    max-width: 100%;
    height: auto;
    display: block;
  }
}

.entry-title {
	margin: 0;
}

.content-container {
	width: 65%;
}
	
.sidebar {
	width: 35%;
	padding-top: 11.88rem;
	grid-area: sidebar;
    align-self: stretch;
}

.page-template-default .sidebar,
.post-template-default .sidebar {
	padding-top: 2rem;
}

.sidebar-value{
	overflow-wrap: anywhere;
	word-break: break-word; /* fallback */
}

.featured-image {
	width: 100%;
	height: clamp(32rem, 4vw, 42rem);
	object-fit: cover;
}

.sidebar-card, .newsletter-signup {
	padding: clamp(1.5rem, 1.25vw, 2rem);
	border-radius: var(--radius);
	border: 1px solid var(--inactive);
	position: sticky;
	top: 4rem;
}

.sidebar-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem auto 1.5rem 0;
}

.sidebar-item {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	align-items: center;
}

.sidebar-meta {
	display: flex;
	flex-direction: column;
}

.sidebar-icon {
	border: 1px solid var(--inactive);
	border-radius: 0.5rem;
	padding: 0.5rem;
}

.sidebar-label {
	font-size: var(--tiny);
}

.sidebar-value {
	font-weight: 700;
	padding-top: 0.5rem;
	font-size: var(--regular);
}

.sidebar-title {
	margin: 0 0 1.5rem 0;
}

.sidebar-stars {
  display: flex;
  gap: 4px;
  font-size: 22px;
  line-height: 1;
}

.star--full {
  color: #f5c400; /* gold */
}

.star--empty {
  color: #f5e7a3; /* pale yellow / muted */
}

.amenity-item {
	display: inline-flex;
    padding: 1rem;
    border: 1px solid var(--inactive);
    border-radius: 2.5rem;
    margin: 0 1.12rem 1rem 0;
    font-size: var(--regular);
    font-weight: 700;
}

#gallery {
	  display: grid;
	  grid-template-columns: repeat(4, 1fr);
	  gap: 2rem;
}

.gallery__item {
	  border-radius: 1.25rem;
	  overflow: hidden;
}

.gallery__img {
	  width: 100%;
	  aspect-ratio: 1/1;
	  object-fit: cover;
	  display: block;
}


/* =========================
   		  Gallery
========================= */

.exit-content h4{
	margin-top: clamp(3rem, 4vw, 5rem);
}

#gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.gallery__item{
  border-radius: 1.25rem;
  overflow: hidden;
}

.gallery__link { 
	display: block; 
	}

.gallery__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox { 
	position: fixed; 
	inset: 0; 
	display: none; 
	z-index: 99999; 
}
.lightbox.is-open { 
	display: block; 
}
.lightbox__backdrop { 
	position: absolute; 
	inset: 0; 
	background: rgba(0,0,0,.75); 
}

.lightbox__dialog{
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  margin: 7vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.lightbox__img{
  max-width: 92vw;
  max-height: 86vh;
  display: block;
  border-radius: 12px;
}

.lightbox__close{
  position: absolute; 
  top: 12px; 
  right: 12px;
  width:4 0px; 
  height: 40px; 
  border-radius: 999px;
  border: 0; 
  background: #fff; 
  font-size: 28px; 
  cursor: pointer;
}


.lightbox__nav{
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%);
  width: 44px; 
  height: 44px; 
  border-radius: 999px;
  border: 0; 
  background: rgba(255,255,255,.9);
  cursor: pointer; 
  font-size: 28px;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
}

.lightbox__prev { 
	left: 12px; 
}

.lightbox__next { 
	right: 12px; 
}

/* =========================
   		Blog Feed
========================= */

.bfs {
  width: 100%;
}

.bfs__viewport {
  overflow: hidden;
}

.bfs__track {
  display: flex;
  gap: 2rem;
  scroll-behavior: smooth;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.25rem;
}

.bfs__track::-webkit-scrollbar {
  height: 0;
}

.bfs__card {
  flex: 0 0 calc(50% - 1rem);
  scroll-snap-align: start;
}

.bfs__image img {
  width: 100%;
  aspect-ratio: 1.78;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  object-fit: cover;
}

.bfs__img-fallback {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  background: #ddd;
}

.bfs__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
  font-size: var(--small);
}

.bfs__badge, .post-top__readtime {
  background: var(--dark-blue);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: var(--small);
}

.bfs__readtime {
  color: #555;
}

.bfs__title {
  margin: 1rem 0 1.25rem;
  line-height: 1.2;
}

.bfs__title a {
  text-decoration: none;
  color: inherit;
}

.bfs__excerpt {
  margin: 0;
}

.bfs__link {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 2rem;
  text-decoration: none;
  color: inherit;
  font-size: var(--regular);
}

.bfs__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.19rem;
}

.bfs__dots, .hcs__dots {
  display: flex;
  gap: 0.5rem;
}

.bfs__dot, .hcs__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--light-grey);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.bfs__dot.is-active, .hcs__dot.is-active {
  background: var(--light-blue);
}

.bfs__arrows, .hcs__arrows {
  display: flex;
  gap: 0.75rem;
}

.bfs__btn, .hcs__btn, .afs__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.afs__btn svg,
.bfs__btn svg {
	padding-top: 5px;
}

.hcs__btn svg {
	padding-top: 3px;
}

.bfs__btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.bfs__next, .hcs__next, .afs__next {
	background: var(--blue);
}

.feed-title {
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/* =========================
   Hotel Cards Slider
========================= */

.hcs {
	width: 100%;
}

.hcs__viewport {
	overflow: hidden;
}

.hcs__track {
	display: flex;
	gap: 2rem;
	overflow: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding-bottom: 0.25rem;
}

.hcs__track::-webkit-scrollbar {
	height: 0;
}

.hcs__card {
	flex: 0 0 calc(33.333% - 1.333rem);
	scroll-snap-align: start;
}

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

.hcs__media {
	position: relative;
	width: 100%;
	aspect-ratio: 0.87;
	border-radius: 1.5rem;
	background-color: #ddd;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;					
}

.hcs__rating {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	gap: 0.4rem;
	align-items: center;
	padding: 0.625rem 0.75rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.26);
	color: #fff;
	font-weight: 500;
	font-size: var(--regular);
	backdrop-filter: blur(6px);
}

.hcs__city {
	font-size: var(--regular);
}

.hcs__panel,.hotel-landing-card__panel {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	background: #fff;
	border-radius: 0.625rem;
	padding: 1.75rem 1.38rem;
}

.hcs__title h5, .hotel-landing-card__panel h5 {
	margin: 0 0 0.5rem;
}

.hcs__meta, .hotel-landing-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	color: #666;
}

.hcs__location, .hotel-landing-card__location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--regular);
}

.hcs__pin {
	opacity: 0.75;
}

.hcs__price, .hotel-landing-card__price {
	font-weight: 500;
	color: #000;
	font-size: var(--large);
}

.hcs__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 3rem;
}

.hotel-feed {
	padding-top: var(--spacing-medium);
}

#hotels {
	padding-top: var(--spacing-tiny);
	padding-bottom: var(--spacing-large);
	background: white;
}


/* =========================
   Attractions Feed Slider
========================= */

.afs { 
	width: 100%; 
}

.afs__viewport { 
	overflow: hidden; 
}

.afs__track {
	display: flex;
	gap: 2rem;
	overflow: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding-bottom: 0.25rem;
}

.afs__track::-webkit-scrollbar { 
	height: 0; 
}

.afs__card {
	flex: 0 0 100%;
	scroll-snap-align: start;
	padding-top: var(--spacing-medium);
}

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

.afs__media {
	width: 100%;
	height: 35rem; /* adjust to match design */
	border-radius: 1.5rem 1.5rem 0 0;
	background: #ddd center / cover no-repeat;
}

.afs__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	background: #fff;
	border-radius: 0 0 1.5rem 1.5rem;
	padding: 1.6rem 2rem;
	border: 1px solid var(--panel-border);
}

.afs__kicker {
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 0.35rem;
}

.afs__title {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
}

.afs__desc {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

.afs__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
}

.afs__dots { 
	display: flex; gap: 0.5rem; 
}

.afs__dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: #cfcfcf;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.afs__dot.is-active { 
	background: #5aa9b3; 
}

.afs__arrows { 
	display: flex; gap: 0.75rem; 
}

#attraction {
	background: white;
	padding-top: var(--spacing-tiny);
	padding-bottom: var(--spacing-large);
}

/* =========================
   		Article Landing
========================= */

/* GRID WRAPPER */
.article-landing-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

/* 1 column on mobile */
@media (max-width: 900px){
  .article-landing-cards{
    grid-template-columns: 1fr;
  }
}

/* CARD */
.article-landing-card{
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

/* FULL CLICK AREA */
.article-landing-card__link{
  display: block;
  text-decoration: none;
  color: inherit;
}

/* IMAGE TOP */
.article-landing-card__media {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);       
  margin: 0.75rem 0 1.5rem;           
}

/* CONTENT BELOW IMAGE */
.article-landing-card__panel{
  padding: 0 0 1.25rem;
}

/* META ROW (Guide + read time) */
.article-landing-card__meta{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.article-landing-card__time{
  font-size: var(--small);
  opacity: .7;
}

/* TITLE */
.article-landing-card__title{
  margin: 0 0 1.25rem;
}

/* EXCERPT */
.article-landing-card__excerpt{
  margin: 0 0 2rem;
  opacity: .75;
}

/* READ MORE */
.article-landing-card__more{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--regular); 
  color: var(--off-black);
}

.article-landing-card__more::after{
  content: "›";
  font-size: var(--regular);
  line-height: 1;
}

.featured-article-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08); 
  margin-top: var(--spacing-medium);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.featured-article-card__link{
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* image / content */
  text-decoration: none;
  color: inherit;
  min-height: 340px;
}

.featured-article-card__media{
  background-size: cover;
  background-position: center;
  min-height: clamp(25rem, 7vw, 31rem);
}

.featured-article-card__panel{
  padding: clamp(1.5rem, 2vw, 3rem);
  display: grid;
  align-content: start;
  gap: 0rem;
}

.featured-article-card__tag,
.article-landing-card__tag {
  display: inline-flex;
  width: fit-content;
  font-size: var(--small);
  padding: .35rem .6rem;
  border-radius: .5rem;
  background: var(--dark-blue);
  color: #fff;
  font-weight: 600;
}

.featured-article-card__title{
  margin: 1.5rem 0 2rem;
}

.featured-article-card__excerpt{
  margin: 0;
  opacity: .75;
  line-height: 150%;
}

.featured-article-card__byline{
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .75rem;
  align-items: center;
}

.featured-article-card__avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.featured-article-card__author{
  font-weight: 600;
  font-size: var(--small);
}

.featured-article-card__meta{
  opacity: .7; 
  font-size: var(--tiny); 
}

.featured-article-card__dot{
  margin: 0 .4rem;
}




/* =========================
   		Hotel Landing
========================= */

.landing-title-area {
	background: var(--body-grey);
	padding: var(--spacing-large) 0 var(--spacing-large) 0;
}

.hotel-landing-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	width: 100%;
}

.hotel-landing-cards-feed {
	background: white;
	width: 100%;
	padding: var(--spacing-medium) 0 var(--spacing-medium) 0;
}

.hotel-landing-card {
	flex: 0 0 calc(33.333% - 1.333rem);
}

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

.hotel-landing-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5; /* adjust to taste */
	border-radius: 1.5rem;
	background: #ddd center / cover no-repeat;
	overflow: hidden;
}

.hotel-pagination, .article-pagination {
	padding-top: var(--spacing-large);
}

/* Responsive */
@media (max-width: 1000px){
  .hotel-landing-card { 
  	flex:0 0 calc(50% - 1rem); 
  	}
}

.attraction-pagination, .hotel-pagination, .article-pagination {
	display: flex;
	flex-direction: row;
	gap: 0.88rem;
}

.page-numbers, .prev a {
	border: 1px solid var(--inactive);
	border-radius: 1.5rem;
	width: 3rem;
	padding: 0.75rem;
	display: flex;
	height: 3rem;
	justify-content: center;
	flex-direction: row;
	align-items: center;
}

.page-numbers.current {
	background: var(--blue);
	border: none;
}

/* =========================
   	Atrraction Landing
========================= */

.attraction-landing-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	padding: var(--spacing-large) 0 var(--spacing-large) 0;
}

.attraction-landing-card {
	flex:0 0 calc(50% - 3rem); /* two columns */
}

.attraction-landing-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius) var(--radius) 0 0;
	background: #ddd center / cover no-repeat;
	overflow: hidden;
}

.attraction-landing-card__kicker {
	margin: 0 auto 1rem 0;
}

.attraction-landing-card__title {
	margin: 0;
}

.attraction-landing-card__panel {
	border-radius: 0 0 var(--radius) var(--radius);
 	border-left: 1px solid var(--panel-border);
 	border-right: 1px solid var(--panel-border);
 	border-bottom: 1px solid var(--panel-border);
 	border-top: none;
 	padding: 3rem 2.12rem 2.25rem;
}

.post-top { 
	width:100%;
	background: var(--body-grey);
	padding-bottom: var(--spacing-large);
	margin-bottom: 2rem;
}

.post-top__row1 {
	display:flex;
	gap:.75rem;
	align-items:center;
	margin-bottom:1.5rem;
}

/*
.post-top__readtime {
	font-size: var(--small);
	color: var(--light-grey);
	margin-top: 1.88rem;
}*/

.post-top__readtime {
	margin-top: 1.88rem;	
}

.post-top__row2 {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.post-top__title {
	margin: 0 0 1.5rem;
	font-size: 3rem;
	line-height: 1.05;
}

.post-top__meta {
	display: flex;
	gap: 3rem;
}

.post-top__meta-block {
	display: flex;
	flex-direction: column;
	gap: .25rem;
}

.post-top__meta-label {
	font-size: var(--regular);
}

.post-top__meta-value {
	font-weight: 700;
	font-size: var(--regular);
}

.post-top__share {
	display: flex;
	gap: .6rem;
	align-items: center;
}

.post-top__iconbtn {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--off-black);
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	padding: 0;
}

.post-top__iconbtn:hover {
	transform: translateY(-1px);
}

.post-top__iconbtn svg {
 	display: block;
 	width:16px;
  	height:16px;
}


/* =========================
   	Article Template
========================= */

.page-template-default .featured-image {
	height: 43rem;
}


/* =========================
   		Mail Poet
========================= */
input.mailpoet_text {
 	border: 1px solid var(--inactive);
 	border-radius: 0.5rem;
 	font-size: var(--regular);
 	padding: 1.25rem 0.75rem !important;
}

input.mailpoet_submit {
	border-radius: 0.75rem;
	background: #80D8F0;
	font-size: var(--regular);
	padding: 1.0625rem 1.625rem !important;
	color: var(--off-black);
	font-weight: 500;
}

#mailpoet_form_1 form.mailpoet_form {
	padding: 0 !important;
}

#mailpoet_form_1 .mailpoet_paragraph {
	margin: 1.5rem 0;
}



/* =========================
   	Sticky Mobile Menu
========================= */

.mobile-bottom-nav {
	display: flex;
	justify-content: space-between;
	height: 4.75rem;
}

.mobile-bottom-nav__item {
	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: center;
}


.mobile-bottom-nav__icon svg {
	width: 1.25rem;
  	height: 1.25rem;
  	stroke: currentColor;
}

.mobile-bottom-nav__label {
	color: #717171;
	padding-top: 0.5rem;
	font-size: var(--tiny);
	font-weight: 500;
}

/* Base hidden */
.modal {
  display: none;
}

/* Open state */
.modal.is-open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.modal__dialog {
  position: relative;
  max-width: 560px;
  width: calc(100% - 2rem);
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  outline: none;
}

/* Close button */
.modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal__title {
  margin: 0 2.5rem .75rem 0;
}

.modal__body {
  margin-top: .75rem;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .modal__dialog {
    margin: 8vh auto 0;
    width: calc(100% - 1.5rem);
    border-radius: 14px;
  }
}

/* =========================
   		Footer
========================= */

.footer-container {
	display: flex;
	justify-content: space-between;
	margin: 4rem 5%;
	border-bottom: 1px solid var(--inactive);
	padding-bottom: 3rem;
}

.footer-container h5 {
	margin: 0 0 2rem;
}

.footer-meta {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: var(--tiny);
	padding-bottom: 5rem;
	margin: 4rem 5%;
}


/* =========================
   		Responsive
========================= */


@media (max-width: 1240px) {
	.home-hero {
		height: 65vh;
	}
}

@media (max-width: 1100px) {
  .hcs__card {
    flex: 0 0 calc(50% - 1rem);
  }
  .entry-content.container {
  	grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 1000px) {
  .entry-content.container {
  	grid-template-columns: minmax(0, 1fr) 280px;
  }
}

@media (max-width: 900px){
	.featured-article-card__link{
		grid-template-columns: 1fr;
	}
	.entry-content.container{
		display: flex;
		flex-direction: column;
  }
  	.entry-content.container > .content-container{
		display: flex;
		flex-direction: column;
  }
  	.entry-title{
		margin-top: -1rem; 
}
  	.content-container {
		width: 100%;
		gap: 3rem;
  }
  	.afs__media { 
  		height: 18rem; 
  }
  	.afs__panel { 
  		grid-template-columns: 1fr; 
  		gap: 1rem;
  }
  	.page-template-default .entry-content {
  		flex-direction: column;
	}
	.page-template-default .content-container {
		width: 100%;
	}
	.page-template-default .sidebar {
		width: 100%;
		position: unset;
		padding-top: 0;
	}
	.sidebar {
		width: 100%;
		padding-top: 0;
	}
	#gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.desktop-button, .menu-item-2264 {
		display: none;
  }
}

	
@media (max-width: 768px) {
	.footer-meta {
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
	}
	.mobile-sticky-wrapper {
    	position: relative;
  	}
  	.main-menu__cta {
	  margin-top: 1rem;
	}
	.main-menu__cta .btn.dark {
		width: 100%;
		margin-top: 2rem;
		justify-content: center;
	}
 	.mobile-sticky-bar {
	    position: fixed;
	    bottom: 0;
	    background: #fff;
	    padding: 1rem 10%;
	    z-index: 5;
	    width: 100%;
	    border-top: 1px solid var(--inactive); 
	    background: var(--body-grey);
  	}
	.footer-left {
		text-align: center;
	}
	.footer-right {
		padding-top: 3rem;
		display: flex;
		align-content: center;
		justify-content: center;
		text-align: center;
		flex-direction: column;
	}
	.post-top__share {
		justify-content: center;
	}
	#menu-header-menu-1 {
		flex-direction: column;
		gap: 1.5rem;
	}
	.footer-container {
		flex-direction: column;
	}
	.feed-title .btn {
		display: none;
	}
	.article-landing-card__media {
		aspect-ratio: 4 / 3;
	}
	.hotel-landing-card__media {
		aspect-ratio: 1 / 1;
	}
	.hotel-landing-cards {
		gap: 3rem;
	}
	#intro {
		flex-direction: column;
	}
	#intro div:first-of-type, #intro div:last-of-type {
		max-width: 100%;
		width: 100%;
	}
	#hotels .container, #stories .container {
		width: 95%;
		margin: 0 0 0 auto;
	}
	.hcs__card {
		flex: 0 0 calc(55% - 1rem);
	}
	.hcs__footer, .bfs__footer {
		margin-right: 5%;
	}
	.hcs__media {
		aspect-ratio: 0.72;
	}
	.hcs__panel {
		padding: 1.5rem 1.25rem;
	}
	.bfs__image img {
		aspect-ratio: 1.4;
	}
	.bfs__card {
    	flex: 0 0 85%;
  }
  .mobile-hide, .page-template-home-page-template .feed-title .btn {
  	display: none;
  }
  .mobile-view-all {
  	display: flex !important;
  	justify-content: flex-end;
  	margin: 3rem 5% 0 0;
  }
  .home-title-buttons .btn {
  	width: clamp(12rem, 10rem + 5vw, 18rem);
  }
  .home-title-buttons div:first-of-type {
  	display: flex;
  	flex-direction: column;
  	gap: 0.75rem;
  }
  .home-title-buttons div:nth-child(2) {
  	display: flex;
  }
  .arrow {
  	margin-top: auto;
  }
  .home-hero {
  	padding: 3rem 1.5rem;
  }
  .main-header { 
  	position:relative; 
  }
  .nav-toggle {
    display:inline-flex;
    flex-direction:column;
    gap:6px;
    background:none;
    border:0;
    padding:10px;
    cursor:pointer;
  }
  .nav-toggle__bar {
    width:24px;
    height:2px;
    background:#000;
    display:block;
  }
  .main-menu { 
  	display:none; 
  }
  .main-header.is-open .main-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 9999;
    background: #fff;
    padding: 2rem 1.25rem;
    background: var(--body-grey);
    height: 100vh;
  }
  #menu-header-menu {
  	display: flex;
    flex-direction: column;
  }
  .main-header.is-open .main-menu .menu-main-container { 
 	display:block; 
 }
  .main-header.is-open .main-menu ul,
  .main-header.is-open .main-menu ul.menu {
    display:flex;
    flex-direction:column;
    gap:1rem;
  }
  .hotel-landing-card { 
  	flex:0 0 100%; 
  }
  .featured-image {
  	height: clamp(23rem, 3vw, 30rem);
  }
  .entry-content {
  	flex-direction: column;
  }
  .sidebar {
	width: 100%;
	padding-top: 0;
   }
	.page-template-default .sidebar,
	.post-template-default .sidebar {
		padding-top: 0rem;
	}
	.attraction-landing-card {
		flex: 100%;
	}
	.attraction-landing-card__panel {
		padding: 2.25rem 2.125rem;
	}
}

	

@media (min-width: 769px) {
	.hide-desktop {
		display: none;
	}
	.mobile-view-all, .mobile-sticky-wrapper, .main-menu__cta, .mobile-button  {
		display: none;
	}
	.main-menu {
	    position: absolute;
	    left: 50%;
	    transform: translateX(-50%);
	    z-index: 1;
  	}
}



@media (max-width: 550px) {
	.hcs__card {
		flex: 0 0 calc(75% - 1rem);
	}
}

@media (max-width: 400px) {
	.hcs__card {
		flex: 0 0 calc(85% - 1rem);
	}
}

/* =========================
   Misc
========================= */

.mtn {
	margin-top: 0;
}

.mbn {
	margin-bottom: 0;
}

.mt1 {
	margin-top: 1rem;
}

.mb1 {
	margin-bottom: 1rem;
}

.mt2 {
	margin-top: 1.8rem;
}

.mb2 {
	margin-bottom: 1.8rem;
}
button {
	align-items: center;
	text-align: center;
	cursor: default;
	padding-inline-start: 0px;
	color: buttontext;
	padding-block-start: 0px;
	padding-block-end: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: none;
	border-right-color: none;
	border-bottom-color: none;
	border-left-color: none;
	padding-inline-end: 0;
}
