/**
Theme Name: maribook
Author: poroolyosh
Version: 1.0.0
*/

/* Variable
 * --------------------------------------------- */
:root {
	--contain-width: 1280px;
	--color-bg: #fbfbf8;
	--color-bg-two: #fff9e6;
	--color-primary: #6aa6da;
	--color-primary-light: #dbe3e9;
	--color-accent: #909459;
	--color-accent-hover: #595c36;
	--color-accent-cta: #dc3232;
	--color-accent-cta-hover: #a52323;
	--color-title: #372d2d;
	--color-subtitle: #3a3a3a;
	--color-text: #353535;
	--my-shadow: 0 0 7px #00000047;
	--my-shadow-hover: 0 0 9px #0000006e;
}

/* Переопределение переменных для темной темы */
@media (prefers-color-scheme: dark) {
  :root {
	--color-bg: #fbfbf8;
	--color-bg-two: #fff9e6;
	--color-primary: #6aa6da;
	--color-primary-light: #dbe3e9;
	--color-accent: #909459;
	--color-accent-hover: #595c36;
	--color-accent-cta: #dc3232;
	--color-accent-cta-hover: #a52323;
	--color-title: #070707;
	--color-subtitle: #656565;
	--color-text: #cf2626;
  }
}

/* Normalize
-------------------------------------------------- */
html {
	line-height: 1.3;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	margin: 0;
	padding: 0;
}
main {
	display: block;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}
a {
	background-color: transparent;
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}
b, strong {
	font-weight: bolder;
}
code, kbd, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
img {
	border-style: none;
}
button, input,
optgroup, select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}
button, input {
	overflow: visible;
}
button, select {
	text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
fieldset {
	padding: 0.35em 0.75em 0.625em;
}
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
details {
	display: block;
}
summary {
	display: list-item;
}
template {
	display: none;
}
[hidden] {
	display: none;
}

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

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
.site {
	display: flex;
	flex-direction: column;		
}
.menu-menu-1-container,
.wrap,
.container {
	max-width: var(--contain-width);
	margin: 0 auto;
	padding: 0 10px;
}
.single-site-main {
	max-width: 836px;
}
.container-form {
	max-width: 780px;
}

/* Typography
--------------------------------------------- */
body, button,
input, select,
optgroup, textarea {
	color: var(--color-text);
	font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	font-size: clamp(0.875rem, 0.8262rem + 0.2439vw, 1rem);
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5rem;
}
address {
	margin: 0 0 1.5rem;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd,
tt, var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
big {
	font-size: 125%;
}
.centered-text {
  text-align: center;  
}

/* Elements
--------------------------------------------- */
body {
	background: var(--color-bg);
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 0.5em 0.5em;
	padding-left: 1rem;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: 700;
}
dd {
	margin: 0 1.5em 1.5em;
}
embed,
iframe,
object {
	max-width: 100%;
}
img {
	display: block;
	height: auto;
	width: 100%;
}
figure {
	margin: 1em 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	text-decoration: none;
	color: var(--color-primary);
}
a:visited {
	color: #800080;
}
a:hover, a:focus, a:active {
	color: var(--color-primary-dark);
}
a:focus {
	outline: thin dotted;
}
a:hover, a:active {
	outline: 0;
}
.site-title a {
	text-decoration: none;
	font-weight: 600;
	color: var(--color-dark);
}
.site-title a:hover {
	color: var(--color-gray);
}
.entry-title a,
.grid-entry-title a {
	text-decoration: none;
	color: var(--color-dark);
}
.entry-title a:hover {
	color: var(--color-primary);
}

/* Forms
--------------------------------------------- */
button, input[type="button"],
input[type="reset"], input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}
button:hover, input[type="button"]:hover,
input[type="reset"]:hover, input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}
button:active, button:focus, input[type="button"]:active,
input[type="button"]:focus, input[type="reset"]:active,
input[type="reset"]:focus, input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}
input[type="text"], input[type="email"],
input[type="url"], input[type="password"],
input[type="search"], input[type="number"],
input[type="tel"], input[type="range"],
input[type="date"], input[type="month"],
input[type="week"], input[type="time"],
input[type="datetime"], input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}
input[type="text"]:focus, input[type="email"]:focus,
input[type="url"]:focus, input[type="password"]:focus,
input[type="search"]:focus, input[type="number"]:focus,
input[type="tel"]:focus, input[type="range"]:focus,
input[type="date"]:focus, input[type="month"]:focus,
input[type="week"]:focus, input[type="time"]:focus,
input[type="datetime"]:focus, input[type="datetime-local"]:focus,
input[type="color"]:focus, textarea:focus {
	color: #111;
}
select {
	border: 1px solid #ccc;
}
textarea {
	width: 100%;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
	background-color: var(--color-primary);
}
.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}
.main-navigation li {
	position: relative;
}
.main-navigation a {
	display: flex;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
    font-weight: 600;
	padding: 8px 0 4px;
	border-bottom: 4px solid transparent;
	color: #ffffff;
	transition: all 0.2s ease-in-out;
}
.main-navigation a:hover {
	border-bottom: 4px solid var(--color-accent);
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}
.menu-toggle {
  position: absolute;
  right: 10px;
  top: 20px;
  padding: 18px 6px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  border: none;
  background: transparent;
}
.menu-toggle span {
  height: 3px;
  width: 35px;
  border-radius: 2px;
  background-color: var(--color-dark);
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;	
}
.menu-toggle span:before {
  top: -10px;
  visibility: visible;	
}
.menu-toggle span:after {
  top: 10px;	
}
.menu-toggle span:before, .menu-toggle span:after {
  height: 3px;
  width: 35px;
  margin-left: -18px;
  border-radius: 2px;
  background-color: var(--color-dark);
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;	
}
.toggled .menu-toggle span {
	background: transparent;
}
.toggled .menu-toggle span:before {
	transform: rotate(45deg) translate(7px, 7px);
	opacity: 1;
}
.toggled .menu-toggle span:after {
	transform: rotate(-45deg) translate(7px, -7px);	
}
.menu-glavnoe-container {
}
.toggled .menu-menu-1-container {
 	height: 100vh;
	width: 100vw;
	margin-left: -10px;
	background: var(--color-primary);
	z-index: 2;
	visibility: visible;
	position: fixed;
}
.toggled .menu-menu-1-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: calc(100vh - 77px);
  padding-left: 0;
  list-style-type: none;
}
.toggled .menu-menu-1-container ul li {
	padding: 0.5em;
}
.toggled .menu-menu-1-container ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.25em;	
}
.toggled .menu-menu-1-container ul li a:hover {
  color: #333332;	
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
		gap: 1.5rem;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.excursions-block,
.welcome-blocks,
.guide-block,
.news-block,
.grid-cards, {
	margin-top: 1.5rem;
}
.widgets {
	margin-top: 0.5rem;
}
.sticky {
	display: block;
}
.post {
	margin: 0 0 1.25rem;
}
.updated:not(.published) {
	display: none;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5rem 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.entry-title {
	font-size: clamp(1rem, 0.8929rem + 0.5357vw, 1.375rem);
	margin-top: 1rem;
}
.page-title {
	font-size: 1.7rem;
	margin: 1rem 0;
}
.book-content {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}
.book-content .entry-content {
	margin-top: 0;
}
.to-buy-book {
	font-weight: 700;
	margin-bottom: 0;
}
.category-news-site-main article {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-light-gray);	
}
.single-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
}
.single-content .post-thumbnail {
	width: 100%;
}
.single-content .entry-image {
	flex: 0 0 32%;
	margin-top: 1rem;
}
.single-content .entry-content {
	margin: 0;
	flex-shrink: 2;
}
.pricing {
	padding: 1rem;
	border-radius: 4px;
	background-color: var(--color-primary-light);
}
.pricing_content {
	display: flex;
	gap: 1rem;
	margin-top: 1.2rem;
}
.excursion_type_entry-header {
	margin: 0;
	font-size: clamp(16px, 2vw, 20px);
}

.single-entry-header {
	margin-top: 1rem;
}

/* Home-background  
--------------------------------------------- */
.background-image {
  position: relative;
  background-image: image-set(
    url('https://vsegidy12.ru/wp-content/uploads/2026/06/joshkar-ola-akvarel-risunok.webp') type('image/webp'),
    url('https://vsegidy12.ru/wp-content/uploads/2026/06/joshkar-ola-akvarel-risunok.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center;
  height: 55vh;
}
.background-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fbfbf861;
  backdrop-filter: blur(0px);
  z-index: 1;
}
.background-image > * {
  position: relative;
  z-index: 5;
}
.hero {
	display: flex;
	align-items: center;
}
.hero-content {
	width: 100%;
}
.hero-text {
	color: var(--color-title);
	width: 35%;
}
.hero-text h1 {
	font-size: clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem);
	line-height: 1.25;
	margin: 0;
}
.hero-text p {
	font-size: 20px;
	font-size: clamp(1.0625rem, 0.9891rem + 0.3261vw, 1.25rem);
	line-height: 1.3;
}
.hero-btn {
	margin-top: 1.5rem;
}

.backdrop {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.backdrop-hero {
	margin-top: 0.5rem;
}

/* Header
--------------------------------------------- */
.site-header {
	background-color: var(--color-bg-two);
}
.site-branding {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 10px 0;
}
.site-branding img {
	max-width: 48px;
}
.site-title {
	font-size: clamp(15px, 2vw, 18px);
	margin: 0;
}
.site-tel {
	margin-left: auto;
	display: flex;
    gap: 0.5rem;
}
.site-tel a {
	text-decoration: none;
    color: var(--color-dark);
	font-weight: 500;
}

/* Homepage-Book-block
--------------------------------------------- */
.excursions-block {
	margin-top: 1rem;
}
.excursion-card-block {
    display: flex;
    gap: 1.5rem;
	margin: 0 0 0.5em;
}
.excursion-card-block img {
	transition: .35s ease;
}
.excursion-card-block img:hover {
	box-shadow: var(--my-shadow-hover);
}
a.btn {
	display: inline-block;
	color: white;
	padding: 8px 20px;
	margin-top: 1em;
	border-radius: 6px;
	transition: all 0.2s ease-in-out;
	background-color: var(--color-accent-cta);
}
a.btn:hover,
a.btn:active {
	background-color: var(--color-accent-hover)
}
a.btn-hero {
	background-color: var(--color-accent-cta);
}
a.btn-hero:hover,
a.btn-hero:active {
	background-color: var(--color-accent-cta-hover);
	color: white;	
}
.btn-readmore a {
	padding: 2px 10px;	
}
.excursion-card-block article {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}
.excursion-card-block img {
	transition: .35s ease;
}
.excursion-card-block img:hover {
	transform: scale(1.02);
}
.excursions-archive-site-main article {
	margin-top: 0;
}
.excursions-archive-site-main article:nth-child(n+3) {
	margin-top: 2rem;
	border-top: 1px solid #bcbcbc;
	padding-top: 2rem;
}
.grid-entry-title {
	font-size: clamp(0.875rem, 0.8214rem + 0.2679vw, 1.0625rem);
	position: absolute;
	font-weight: 400;
    bottom: 0;
	right: 0;
	left: 0;
	margin: 0;
	padding: 5px 8px;
	background-color: #11111175;
	backdrop-filter: blur(3px);
}
.grid-entry-title a {
	color: #ffffff;
}

/* Grid-card style
--------------------------------------------- */

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
	align-items: stretch;
}

/* Карточка */
.grid-card-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
	display: flex;
    flex-direction: column;
    height: 100%;
	box-shadow:
    	0 2px 6px rgba(0, 0, 0, 0.04),
    	0 12px 28px rgba(0, 0, 0, 0.06);
	opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* состояние "вошло в viewport" */
.grid-card-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* hover-эффект (чуть “поднимаем” карточку) */
.grid-card-item:hover {
    box-shadow:
		0 4px 8px rgba(0, 0, 0, 0.04),
		0 12px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

/* Заголовок */
.grid-card-item__title {
    margin: 0 0 10px 0;
	font-size: clamp(1rem, 0.9643rem + 0.1786vw, 1.125rem);
	font-weight: 500;
}

/* Текст */
.grid-card-item__text {
    margin: 0;
    line-height: 1.5;
}

/* ≤ 992px — 2 колонки */
@media (max-width: 992px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ≤ 576px — 1 колонка */
@media (max-width: 576px) {
    .grid-cards {
        grid-template-columns: 1fr;
    }
}

/* Section style
--------------------------------------------- */

.section {
	padding: 3rem 0;
}
.section-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.0625rem, 0.8913rem + 0.7609vw, 1.5rem);
	font-weight: 500;
}
.section-subtitle {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1rem;
	font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
	color: var(--color-subtitle);
	max-width: 764px;
}
.section-advantages,
.section-convenience,
#my-footer-area {
	background-color: var(--color-bg-two);
}

/* Homepage-News-block
--------------------------------------------- */

.homepage-news-block {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
}
.homepage-news-block article {
    min-width: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 10px 24px rgba(0, 0, 0, 0.06);
}
.homepage-news-block article img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.newsblock-card-header {
	padding: 1rem;
}
.newsblock-card__title {
	font-size: 17px;
	font-size: clamp(1rem, 0.9755rem + 0.1087vw, 1.0625rem);
}
.newsblock-card__title a {
	color: var(--color-title);
	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 2;
 	 overflow: hidden;  
  	/* Плавное затухание снизу вверх (эффект на вторую строку) */
  	-webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
  	mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}

@media (max-width: 992px) {
    .homepage-news-block {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .homepage-news-block {
        grid-template-columns: 1fr;
    }
}

/* Widget-area
--------------------------------------------- */
.widgets {
	background-color: var(--color-light-one);
}

.widget-area {
	display: flex;
	gap: 1.5em;
	padding-top: 1rem;
}

.widget-area section {
	width: calc(33% - 1em);
}


/* Footer
--------------------------------------------- */
.site-footer {

}

.site-info p {
	margin-bottom: 1em;
	font-size: 13px;
}


/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 0.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* Media queries
--------------------------------------------- */

@media screen and (max-width: 1281px) {
	.hero-text {
		width: 46%
	}
}

@media screen and (max-width: 781px) {
	.excursion-card-block {
		flex-wrap: wrap;
		justify-content: center;
	}
	.excursion-card-block article {
		width: calc(50% - 2rem);
	}
	.hero-text {
		width: 76%;
	}
	.book-content img {
		width: 180px;
	}
}

@media screen and (max-width: 601px) {
	.site-tel {
		display: none;
	}
	.background-image {
		height: calc(68vh - 90px);
	}
	.btn-maribook a {
		padding: 8px 16px;
	}
	.homepage-news-block article {
		width: calc(100%);
	}
	.book-content {
		flex-direction: column;
		gap: 1em;
	}
	.book-content img {
		width: 100%;
	}
	.single-content {
		flex-direction: column;
	}	
	.widget-area {
		flex-direction: column;
	}
	.widget-area section {
		width: 100%;
	}
}

@media screen and (max-width: 481px) {
	.excursion-card-block article {
		width: 100%;
	}
	.hero-text {
		width: 100%;
	}
}
