/*
Theme Name: Rlyagoda LLC
Version: 6.0
Theme URI: https://cyberoptik.net/
Description: Customizable responsive Wordpress theme created by CyberOptik
Author: CyberOptik
Author URI: https://cyberoptik.net/
Template: optik-theme
*/





/******************************************************************************
 * * *  IMPORTS & VARIABLES  * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/

@import url("../optik-theme/style.css");



/* Add font imports here */

/* Normal */
@font-face {
	font-family: 'Patrick Hand';
	font-weight: 400;
	src: url('fonts/Patrick_Hand/PatrickHand-Regular.ttf');
}

/***	Literata	***/
/* Normal */
@font-face {
	font-family: 'Literata';
	font-weight: 400;
	src: url('fonts/Literata/Literata_18pt-Regular.ttf');
}
/* Italic */
@font-face {
	font-family: 'Literata';
	font-style: italic;
	src: url('fonts/Literata/Literata_18pt-Italic.ttf');
}
/* Bold */
@font-face {
	font-family: 'Literata';
	font-style: italic;
	src: url('fonts/Literata/Literata_18pt-Bold.ttf');
}
/******************************************************************************
 * * *  STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  UNIVERSAL STYLES  ***/

html {
	font-size: 16px;
}

body {
	line-height: 1.6em;
	background-size:cover;
	font-family: var(--wp--custom--font--1);
	color: var(--wp--custom--dark--2);
	background: 
    url('/wp-content/uploads/bh_spine.png') repeat-y left center,
    url('/wp-content/uploads/bh_background.png') no-repeat center center fixed;
    background-size: 100px 100%, cover; /* border strip height, main bg full cover */
    background-repeat: repeat-y, no-repeat;
    background-position: left center, center center;
	box-sizing: border-box;
	padding-left: 100px;
}


#site .site-inner { 
	min-height: 100vh;
	display: flex;
	flex-direction: column;
 }



/***  BACK TO TOP BUTTON  ***/

.btt-button .fa {
	border-radius: var(--wp--custom--radius--full);
	background-color: var(--wp--custom--primary--main);
	font-weight: 300;
	color: white;
}

.btt-button:hover .fa {
	background-color: var(--wp--custom--primary--light);
	color: white;
}





/******************************************************************************
 * * *  CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  TEXT & LINKS  ***/

a {
	color: var(--wp--custom--primary--main);
}

a:hover {
	color: var(--wp--custom--primary--light);
}



/***  HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-family: var(--wp--custom--font--2);
	color: var(--wp--custom--primary--main);
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2.25em;
}

h3 {
	font-size: 1.75em;
}

h4 {
	font-size: 1.25em;
}

h5 {
	font-size: 1em;
}

h6 {
	font-size: 0.85em;
}



/***  BORDERS & DIVIDERS  ***/

hr, .divider {
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	border-top: 1px solid #e2e2e2;
	margin: 2.5em auto;
	padding: 0;
}



/***  BUTTONS  ***/

.button, 
.wp-block-button__link, 
.button-outline, 
.is-style-outline .wp-block-button__link {
	padding: 0.75em 2.25em;
	border-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xl);
	background-color: var(--wp--custom--primary--main);
	color: white;
}

.button:hover, 
.wp-block-button__link:hover, 
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--primary--light);
	background-color: var(--wp--custom--primary--light);
	color: white;
}

.button i, 
.wp-block-button__link i, 
.button:hover i, 
.wp-block-button__link:hover i {
	color: inherit !important;
}

/* Outlined Button */

.button-outline, 
.is-style-outline .wp-block-button__link {
	background: none;
	color: var(--wp--custom--primary--main);
}

.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--secondary--main);
	background: none;
	color: var(--wp--custom--secondary--main);
}

.button-outline i, 
.is-style-outline .wp-block-button__link i {
	color:  var(--wp--custom--primary--main);
}

.button-outline:hover i,
.is-style-outline .wp-block-button__link:hover i {
	color: var(--wp--custom--secondary--main);
}



/***  ICONS  ***/

.fa {font-weight: 300;}

/* Icon Colors */

.fa, .fas, .far, .fal, .fab {
	color: var(--wp--custom--primary--main);
}

a .fa, a .fas, a .far, a .fal, a .fab {
	color: var(--wp--custom--primary--main);
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {
	color: var(--wp--custom--secondary--main);
}

/* Icon Backgrounds */

.fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a .fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a:hover .fa-bg {
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

/* Icon Borders */

.fa-br {
	border-color: var(--wp--custom--primary--main);
}

a .fa-br {
	border-color: var(--wp--custom--primary--main);
}

a:hover .fa-br {
	border-color: var(--wp--custom--secondary--main);
}



/***  LISTS  ***/

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before {
	color: var(--wp--custom--primary--main);
}



/***  FORMS  ***/

/* Inputs */

input[type="text"], input[type="email"], input[type="number"], 
input[type="password"], input[type="search"], input[type="tel"], 
input[type="url"], input[type="date"], input[type="datetime-local"], 
input[type="month"], input[type="time"], input[type="week"], 
textarea, select, .filter-reset {
	border-radius: var(--wp--custom--radius--xs);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {
	border-color: var(--wp--custom--primary--main);
}

/* Buttons */

input[type="submit"], input[type="reset"], input[type="button"] {
	border-color: var(--wp--custom--primary--main);
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xs);
	color: white;
}

input[type="Submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	border-color: var(--wp--custom--primary--light);
	background-color: var(--wp--custom--primary--light);
	color: white;
}

input[type="Submit"]:active, input[type="reset"]:active, input[type="button"]:active {
	border-color:  var(--wp--custom--primary--dark);
	background-color:  var(--wp--custom--primary--dark);
	color: white;
}

/* Ninja Forms */

.nf-form-fields-required {display: none;}





/******************************************************************************
 * * *  HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  SCROLL BAR  ***/

.scroll-bar {
	background-color: white;
}

.scroll-logo {
	max-height: 50px;
}



/***  TOP BAR  ***/

.top-bar {
	background-color: var(--wp--custom--light--2);
}



/***  HEADER  ***/

.header-logo {
	max-height: 70px;
}
.header-masthead {
    width: 480px;
}

/* Menu Button */

.header .menu-button .fa, 
.header .menu-button:hover .fa {
	color: var(--wp--custom--dark--1);
}

.header .menu-button.active .fa {
	background-color: var(--wp--custom--primary--main);
	color: white;
}



/***  NAVBAR  ***/

.navbar {
	background-color:transparent;
	margin-top: 20px;
	margin-bottom: 20px;
}

@media screen and (max-width: 819px) {
	.navbar {
		max-width: 600px;
	}
	
	.navbar > .container {
		padding-left: var(--wp--custom--spacer--sm);
		padding-right: var(--wp--custom--spacer--sm);
	}
	
	.nav-menu > li > a { margin: 4px; }
}

/***  NAV MENUS  ***/

.nav-menu > li > a {
  border: 8px solid transparent;
  border-image: url('/wp-content/uploads/sketchy.png') 30 stretch;
  padding: 10px 20px;
  font-family: var(--wp--custom--font--2);
  color: var(--wp--custom--dark--1);
  font-size: 1.3em;
}

.single-service .nav-menu > li.services-link > a, 
.single-service .nav-menu > li.services-link > span, 
.single-product .nav-menu > li.products-link > a, 
.single-product .nav-menu > li.products-link > span, 
.single-member .nav-menu > li.members-link > a, 
.single-member .nav-menu > li.members-link > span, 
.single-post .nav-menu > li.posts-link > a, 
.single-post .nav-menu > li.posts-link > span, 
.category .nav-menu > li.posts-link > a, 
.category .nav-menu > li.posts-link > span, 
.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-ancestor > span, 
.nav-menu > li.current-page-ancestor > a, 
.nav-menu > li.current-page-ancestor > span, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li:hover > a {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

/* Nav Button */

.nav-menu > li.nav-button > a > span {
	padding: 0.75em 1.5em;
	margin-top: -0.75em;
	margin-bottom: -0.75em;
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xl);
	color: white;
}

.nav-menu > li.nav-button:hover > a > span {
	background-color: var(--wp--custom--primary--light);
}



/***  DROPDOWN MENUS  ***/

.nav-menu li ul li:first-child {
	padding-top: 8px;
}

.nav-menu li ul li:last-child {
	padding-bottom: 8px;
}

.nav-menu li ul li > a, 
.nav-menu li ul li > span {
	color: var(--wp--custom--dark--3);
}

.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li:hover > a {
	color: var(--wp--custom--primary--main);
}

/* Nested Dropdowns */

.nav-menu li ul li ul {
	top: -8px;
}



/***  HIDDEN NAV  ***/

.hidden-menu li a {
	color: var(--wp--custom--dark--3);
}

.hidden-menu li.current-menu-item > a {
	color: var(--wp--custom--primary--main);
}

.hidden-nav::-webkit-scrollbar {
	width: 10px;
	background-color: var(--wp--custom--light--1, #E9E9E9);
}

.hidden-nav::-webkit-scrollbar-thumb {
	border: 0;
	background-color: var(--wp--custom--dark--3, #898989);
}





/******************************************************************************
 * * *  BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  BANNER  ***/

.banner {
	background-color: var(--wp--custom--dark--1);
}

.banner-inner {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner-viewheight .banner-inner {
	padding-top: calc(var(--wp--custom--spacer--lg) + 140px);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner a {
	color: var(--wp--custom--primary--light);
}

.banner a:hover {
	color: white;
}



/***  HEADLINE BAR  ***/

.headline-bar {
}



/***  ENTRY NAVBAR  ***/

.entry-menu > li > a {
	color: var(--wp--custom--dark--3);
}

.entry-menu > li.current-menu-item > a, 
.entry-menu > li:hover > a {
	color: var(--wp--custom--primary--main);
}



/***  MAIN  ***/

.main-boxed, 
.main-sidebar {
	padding-top: var(--wp--custom--spacer--md);
	padding-bottom: var(--wp--custom--spacer--md);
}

.page-id-6 .main-boxed,
.page-id-6 .main-sidebar {
	padding-top: var(--wp--custom--spacer--xl);
	padding-bottom: var(--wp--custom--spacer--xl);
}
.spaced-xs, 
.spaced-xs-top {
	padding-top: var(--wp--custom--spacer--xs);
}

.spaced-xs, 
.spaced-xs-btm {
	padding-bottom: var(--wp--custom--spacer--xs);
}

.spaced-sm, 
.spaced-sm-top {
	padding-top: var(--wp--custom--spacer--sm);
}

.spaced-sm, 
.spaced-sm-btm {
	padding-bottom: var(--wp--custom--spacer--sm);
}

.spaced, 
.spaced-top, 
.spaced-md, 
.spaced-md-top {
	padding-top: var(--wp--custom--spacer--md);
}

.spaced, 
.spaced-btm, 
.spaced-md, 
.spaced-md-btm {
	padding-bottom: var(--wp--custom--spacer--md);
}

.spaced-lg, 
.spaced-lg-top {
	padding-top: var(--wp--custom--spacer--lg);
}

.spaced-lg, 
.spaced-lg-btm {
	padding-bottom: var(--wp--custom--spacer--lg);
}

.spaced-xl, 
.spaced-xl-top {
	padding-top: var(--wp--custom--spacer--xl);
}

.spaced-xl, 
.spaced-xl-btm {
	padding-bottom: var(--wp--custom--spacer--xl);
}



/***  ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: var(--wp--custom--radius--md);
	background-color: var(--wp--custom--primary--dark);
	overflow: hidden;
	color: white;
}

.entry-cols .entry-link:hover {transform: translateY(-3px);}

.entry-cols .entry-icon-wrap:first-child {padding: 30px 30px 0;}

.entry-cols .entry-icon svg {
	width: 60px;
	fill: var(--wp--custom--primary--main);
}

.entry-cols .entry-text-wrap {padding: 30px;}

.includes-link-text .entry:not(.col-full) .entry-text-wrap {padding-bottom: 80px;}

.entry-cols .entry:not(.col-full) .entry-link-text-wrap {
	left: 30px;
	bottom: 30px;
}

.entry-cols .entry-link .entry-link-text {color: white;}

.entry-cols .entry-link .entry-title {color: white;}

.entry-cols .entry-link:hover .entry-link-text {color: var(--wp--custom--light--2);}

/* Archive Pagination */

.archive-pagination a {
	border-radius: var(--wp--custom--radius--xl);
	border-color: var(--wp--custom--light--1);
	color: var(--wp--custom--primary--main);
}

.archive-pagination a:hover {
	border-color: var(--wp--custom--primary--light);
	color: var(--wp--custom--primary--light);
}

.archive-pagination a .fa, 
.archive-pagination a:hover .fa {
	color: inherit !important;
	transition: all 0ms ease-in-out;
}



/***  SINGLE  ***/





/******************************************************************************
 * * *  FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  CTA BAR  ***/

.cta-bar {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

.cta-bar h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6 {color: white;} 




/***  FOOTER  ***/

.footer-wrap { margin-top: auto; }

.footer {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
	background-color: var(--wp--custom--light--3);
	font-size: 0.9em;
}

.footer a {
	color: var(--wp--custom--dark--3);
}

.footer a:hover {
	text-decoration: none;
	color: var(--wp--custom--primary--main);
}



/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
	background-color: var(--wp--custom--light--2);
	font-size: 0.9em;
}

/* Menus */

.bottom-bar .menu a {
	color: var(--wp--custom--dark--3);
}

.bottom-bar .menu a:hover {
	text-decoration: none;
	color: var(--wp--custom--primary--main);
}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/* Add custom theme styles here */
/* Add the animation to the camel image */

figure.camel img {
  display: inline-block;
  animation: jump 2s ease-in-out infinite;
}

/* Keyframe animation for jumping */
@keyframes jump {
    0%, 100% {
        transform: translateY(0) ; /* Starts at normal position */
    }
    50% {
        transform: translateY(-10px) ; /* Moves up */
    }
}

/** Logo Centered**/
.header .cols {
    display: flex;
    justify-content: center;
}
/** Hide Footer **/
section#footer {
   display: none;
}

/** About Author Width **/
.page-id-17843 article.section.content.entry-content.-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/** Purchase Page **/

.page-id-17844 .main-boxed, .main-sidebar {
	padding-top: var(--wp--custom--spacer--lg);
    padding-bottom: var(--wp--custom--spacer--lg);
}
/** Media Queries

/* Tablets (Portrait & Landscape) */
@media screen and (min-width: 601px) and (max-width: 1023px) {
body {
    background: url(/wp-content/uploads/bh_spine.png) repeat-y left center, url(/wp-content/uploads/bh_background.png) no-repeat center center fixed;
    background-size: 50px 20%, cover;
	background-attachment: scroll, fixed;
	 min-height: 100vh;
    /* overflow-x: hidden; */
	padding-left: 50px;
}
	.nav-menu > li > a{
		padding:8px;
	}
}

/* Mobile */

@media screen and (max-width: 600px){
	body {
    background: url(/wp-content/uploads/bh_spine.png) repeat-y left center, url(/wp-content/uploads/bh_background.png) no-repeat center center fixed;
    background-size: 25px 30%, cover;
	background-attachment: scroll, fixed;
	 min-height: 100vh;
    /* overflow-x: hidden; */
	padding-left: 25px;
}
}

h1.headline {
    text-align: center;
}

/** Buy Now **/
.buy-now-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-family: sans-serif;
  flex-wrap: wrap;
  max-width: 100%;
}

.price-tag {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  font-family:var(--wp--custom--font--1);
}

.buy-now-btn {
  background-color: var(--wp--custom--primary--main);
  color: white;
  padding: 0.75em 2.25em;
  font-family:var(--wp--custom--font--1);
  font-size: 16px;
  border: none;
  border-radius: var(--wp--custom--radius--xl);
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.buy-now-btn:hover {
  background-color: var(--wp--custom--primary--light);
}

.buy-now-dropdown {
  font-family:var(--wp--custom--font--1);
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  min-width: 220px;
  z-index: 1000;
  border-radius: var(--wp--custom--radius--sm);
  overflow: hidden;
  box-sizing: border-box;
}

.buy-now-dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.buy-now-dropdown a:hover {
  background-color: #f2f2f2;
}

.special-offer {
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 10px;
}

/* Responsive layout */
@media (max-width: 480px) {
  .buy-now-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

 .price-tag {
    font-size: 16px;
  }

  .buy-now-btn {
    font-size: 15px;
    padding: 10px 16px;
  }

  .buy-now-dropdown a {
    font-size: 13px;
    padding: 10px 14px;
  }
}

/* Custom Clearfix */
.c-clearfix:after {
	content: "";
  clear: both;
  display: table;
}


 @media screen and (max-width:600px){

	.wp-block-media-text__media { margin-bottom: 1em !important; }

	 .wp-block-media-text__media img{
		 width:auto;
		 max-width: 100%;
	 }
 
	 .wp-block-media-text>.wp-block-media-text__content{padding:0;}
 }


/* Color Borders */

.border-black,
.border-primary,
.border-media-primary .wp-block-media-text__media { 
	border: 6px solid; 
	border-radius: 24px;
}

.border-black img,
.border-primary img,
.border-rainbow img,
.border-media-primary .wp-block-media-text__media img { 
	border-radius: 18px; 
	width: 100%;
}

.border-black { border-color: black; }

.border-primary,
.border-media-primary .wp-block-media-text__media { border-color: var(--wp--custom--primary--main); }

.border-rainbow {
	position: relative;
	padding: 6px;
	overflow: hidden;
	border-radius: 24px;
}

.border-rainbow > * { position: relative; }

.border-rainbow:before {
	box-sizing: border-box;
}

.border-rainbow::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 300%;
	height: 300%;
	background: repeating-conic-gradient(
		#f06d27, 
		#ffed4e,
		#67c4af, 
		#03a4cd,
		#5a4789, 
		#cc5b58
	);
	animation: border-spin 3s infinite linear;
}

@keyframes border-spin {
	0% { transform: rotate(0) }
	100% { transform: rotate(360deg) }
}

/* Download Entries */

.download-cols .download:not(.col-full) .download-link:hover .download-link-text-wrap{ transform: translateX(-50%) scale(1.05); }

.download .download-text-wrap { text-align: center; }

.download-cols .download:not(.col-full) .download-link-text-wrap {
	left: 50%;
	bottom: 50px;
	transform: translateX(-50%);
	transition: all 300ms ease-in-out;
}

.download-cols .download:not(.col-full)  .download-link-text {
	background-color: white;
	color: var(--wp--custom--primary--main);
	padding: 0.75em 2.25em;
	border-radius: var(--wp--custom--radius--xl);
	font-weight: 700;
}

.includes-link-text .download:not(.col-full) .download-text-wrap { padding-bottom: 100px; }

.download-cols .download { 
	font-size: 0.9em; 
	padding: 15px 6px;
}



.download-cols .download .download-thumb { width: 100%; }

.download-cols .download-text-wrap { padding: 30px 16px; }


@media screen and (min-width: 901px) {
	
	.download-cols .download.col-fourth { width: calc(25% - 8px); }
	
	.download-cols .download.col-fourth:nth-child(4n+2) { margin-right: auto; }
	
/* 	.download-cols .download-thumb-wrap .col-half:first-child { border-right: 2px solid var(--wp--custom--primary--main); }

	.download-cols .download-thumb-wrap .col-half:last-child { border-left: 2px solid var(--wp--custom--primary--main); }	 */
}

/* @media screen and (max-width: 900px) {
	.download-cols .download-thumb-wrap .col-half:first-child { border-bottom: 3px solid var(--wp--custom--secondary--main); }

	.download-cols .download-thumb-wrap .col-half:last-child { border-top: 3px solid var(--wp--custom--secondary--main); }	
} */

 /*BLOCK COLUMNS*/
 @media screen and (max-width: 900px) {
	 .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { flex-basis:100% !important; }
	 
	 .tablet-reverse-order{flex-direction: column-reverse;}
 }


 /* Author Media Box */
.autor-media-box { grid-template-columns: 30% auto; }

@media screen and (max-width: 1024px) {
	.autor-media-box { grid-template-columns: 40% auto; }
}

@media screen and (max-width: 900px) {
	.autor-media-box { grid-template-columns: 100% !important; }

	.autor-media-box.is-stacked-on-mobile>.wp-block-media-text__media { 
		grid-column: 1;
		grid-row: 1;
		margin-bottom: 1em;
		max-width: 270px;
	 }

	.autor-media-box.is-stacked-on-mobile>.wp-block-media-text__content {
		grid-column: 1;
		grid-row: 2;
		padding: 0;
	}
}

/* Gutena Tabs */

.gutena-tabs-block>.gutena-tabs-tab>.gutena-tab-title { 
	margin: 0;
	transition: all 300ms ease-in-out; 
}

/* Image Block */

section#main .wp-block-image a img { transition: all 300ms ease-in-out; }

section#main .wp-block-image a:hover img { transform: scale(1.05); }


/* Special Offer CTA */
.special-offer-cta .wp-block-button__link { 
	padding: 0.2em 1em; 
	font-size: 0.9em;
}
