/*
Theme Name: lowvol 25
Theme URI: 
Author: We Are Volume
Author URI: 
Description: low volume (less code, less bloat, little complication)
Version: 1.0.11
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lowvol
*/

/* Fonts (Chivo) */
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 100;
	src: url('fonts/Chivo-Thin.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 200;
	src: url('fonts/Chivo-ExtraLight.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 300;
	src: url('fonts/Chivo-Light.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/Chivo-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 500;
	src: url('fonts/Chivo-Medium.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 600;
	src: url('fonts/Chivo-SemiBold.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/Chivo-Bold.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 800;
	src: url('fonts/Chivo-ExtraBold.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: normal;
	font-weight: 900;
	src: url('fonts/Chivo-Black.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 100;
	src: url('fonts/Chivo-ThinItalic.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 200;
	src: url('fonts/Chivo-ExtraLightItalic.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 300;
	src: url('fonts/Chivo-LightItalic.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/Chivo-Italic.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 500;
	src: url('fonts/Chivo-MediumItalic.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 600;
	src: url('fonts/Chivo-SemiBoldItalic.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 700;
	src: url('fonts/Chivo-BoldItalic.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 800;
	src: url('fonts/Chivo-ExtraBoldItalic.ttf') format('truetype');
}
@font-face {
	font-family: 'Chivo';
	font-style: italic;
	font-weight: 900;
	src: url('fonts/Chivo-BlackItalic.ttf') format('truetype');
}

html {
	box-sizing: border-box;
}

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

.is-layout-flex {
	display: flex;
	justify-content: center;

	@media screen and (max-width: 1200px) {
		flex-direction: column;
	}
}

.is-layout-flex.is-not-stacked-on-mobile {
	@media screen and (max-width: 1200px) {
		flex-direction: row;
	}
}

.is-layout-flex.is-layout-stack {
	flex-direction: column;
}

.wp-block-column.is-vertically-aligned-stretch .is-layout-stack {
	height: 100%;

	p:first-of-type {
		margin-top: auto;
	}
}

.is-layout-grid {
	display: grid;
}

img, 
picture, 
video, 
canvas, 
svg {
	display: block;
}

.wp-block-columns,
.wp-block-group {
	max-width: 1600px;
	padding: 0 40px;
	margin-left: auto;
	margin-right: auto;

	@media screen and (max-width: 1200px) {
		padding: 0 20px;
	}
}

.wp-block-columns .wp-block-group,
.wp-block-group .wp-block-columns {
	padding: 0;
}

.wp-block-group.is-layout-row {
	display: flex;
	gap: 20px;
}

.wp-block-columns.is-layout-flex:has(.wp-block-column:nth-child(2)) > .wp-block-column {
	flex-basis: 50%;

	@media screen and (min-width: 1200px) {
		&:first-child {
			padding-right: 0;
		}
		&:last-child {
			padding-left: 0;
		}
	}
}

.wp-block-columns.is-layout-flex.keep-padding:has(.wp-block-column:nth-child(2)) > .wp-block-column {

	@media screen and (min-width: 1200px) {
		&:first-child {
			padding-right: 40px;
		}
		&:last-child {
			padding-left: 40px;
		}
	}
}

.wp-block-columns.is-layout-flex:has(.wp-block-column:nth-child(3)) > .wp-block-column {
	flex-basis: 33.333%;

	@media screen and (min-width: 1200px) {
		&:first-child {
			padding-right: 40px;
		}
		&:last-child {
			padding-left: 40px;
		}
	}
}

.wp-block-columns.is-layout-flex:has(.wp-block-column:nth-child(4)) > .wp-block-column {
	flex-basis: 25%;

	@media screen and (min-width: 1200px) {
		&:first-child {
			padding-right: 40px;
		}
		&:last-child {
			padding-left: 40px;
		}
	}
}

.wp-block-columns.is-layout-flex:has(.wp-block-column:nth-child(5)) > .wp-block-column {
	flex-basis: 20%;

	@media screen and (min-width: 1200px) {
		&:first-child {
			padding-right: 40px;
		}
		&:last-child {
			padding-left: 40px;
		}
	}
}

.wp-block-columns.is-layout-flex:has(.wp-block-column:nth-child(6)) > .wp-block-column {
	flex-basis: 16.666%;

	@media screen and (min-width: 1200px) {
		&:first-child {
			padding-right: 40px;
		}
		&:last-child {
			padding-left: 40px;
		}
	}

}

.wp-block-column.is-vertically-aligned-center {
	align-self: center;
}

.wp-block-column.is-vertically-aligned-top {
	align-self: flex-start;
}

.wp-block-column.is-vertically-aligned-bottom {
	align-self: flex-end;
}

.wp-block-column.is-vertically-aligned-stretch {
	align-self: stretch;
}

.wp-block-columns.is-layout-flex {
	gap: 30px;

	@media screen and (max-width: 1200px) {
		flex-direction: column;
		gap: 16px;
		padding: 0;

		&.column-reverse-mb {
			flex-direction: column-reverse;
		}
	}

	.wp-block-column {
		padding: 40px;

		@media screen and (max-width: 1200px) {
			padding: 20px;
			flex-basis: unset!important;
		}

		&:has(.wp-block-column) {
			@media screen and (max-width: 1200px) {
				padding: 0;
			}
		}
	}
}

.wp-block-column.has-background,
.wp-block-group.has-background,
.wp-block-columns.has-background {
	border-radius: 30px;

	@media screen and (max-width: 1200px) {
		border-radius: 15px;
	}
}

.wp-block-cover {
	position: relative;
	display: flex;
	align-items: center;

	&.is-layout-constrained {
		align-items: center;
		justify-content: center;
	}

	&.is-position-center-left {
		justify-content: flex-start;
	}
	&.is-position-center-center {
		justify-content: center;
	}
	&.is-position-center-right {
		justify-content: flex-end;
	}
	&.is-position-top-left {
		justify-content: flex-start;
		align-items: flex-start;
	}
	&.is-position-top-center {
		justify-content: center;
		align-items: flex-start;
	}
	&.is-position-top-right {
		justify-content: flex-end;
		align-items: flex-start;
	}
	&.is-position-bottom-left {
		justify-content: flex-start;
		align-items: flex-end;
	}
	&.is-position-bottom-center {
		justify-content: center;
		align-items: flex-end;
	}
	&.is-position-bottom-right {
		justify-content: flex-end;
		align-items: flex-end;
	}

	video.wp-block-cover__video-background,
	span.wp-block-cover__background {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1!important;
		background-repeat: no-repeat;
		object-fit: cover;

		&.has-background-dim {
			opacity: 0.5;

			&.has-background-dim-10 {
				opacity: 0.1;
			}
			&.has-background-dim-20 {
				opacity: 0.2;
			}
			&.has-background-dim-30 {
				opacity: 0.3;
			}
			&.has-background-dim-40 {
				opacity: 0.4;
			}
			&.has-background-dim-50 {
				opacity: 0.5;
			}
			&.has-background-dim-60 {
				opacity: 0.6;
			}
			&.has-background-dim-70 {
				opacity: 0.7;
			}
			&.has-background-dim-80 {
				opacity: 0.8;
			}
			&.has-background-dim-90 {
				opacity: 0.9;
			}
			&.has-background-dim-100 {
				opacity: 1;
			}
		}
	}

	.wp-block-cover__image-background {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-repeat: no-repeat;
		background-size: cover;
		object-fit: cover;

		&.is-repeated {
			background-repeat: repeat;
		}

		&.has-parallax {
			background-attachment: fixed;
		}
		
	}
}

.wp-block-cover__inner-container {
	/* flex: 1; */
}

/* figure.aligncenter img {
	margin: 0 auto;
} */

.wp-block-image + * {
	margin-top: 20px;
}
.wp-block-image + ul.wp-block-list {
	margin-top: 20px;
}
figure {
	img {
		max-width: 100%;
		height: auto;
	}

	&.aligncenter img {
		margin-left: auto;
		margin-right: auto;
	}
	&.alignleft img {
		margin-right: auto;
	}
	&.alignright img {
		margin-left: auto;
	}

	figcaption.wp-element-caption {
		margin-top: 20px;
		font-size: 1.2rem;
	}
}

ul.wp-block-social-links {
	list-style: none;
	margin: 0;
}

main ul,
ul.wp-block-list {
	list-style: disc;
}

main ol,
ol.wp-block-list {
	list-style: auto;
}

main ol,
main ul,
ul.wp-block-list,
ol.wp-block-list {
	margin: 0 1.1em 1.1em;
}

input,
button,
textarea,
select {
	font: inherit;
}

html,
body {
	font-size: 62.5%;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

ol,
ul{
	list-style:none
}

* {
	margin: 0;
}

* {
	padding: 0;
}

iframe {
	max-width: 100%;
	border: none;
	max-height: 80vh;
}

img,
picture,
video,
canvas,
svg {
	max-width: 100%;
	height: auto;
}

video {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.has-text-align-center {
	text-align: center;
}

.has-text-align-right {
	text-align: right;
}

body {
	-webkit-font-smoothing: antialiased;
}



/* Brand Colors */

:root {
	--hsc-purple: #9c009b;
	--hsc-purple-light: #aa66af;
	--hsc-purple-dark: #590a5b;
	--hsc-red: #ff0000;
	--hsc-red-light: #f96e6e;
	--hsc-red-dark: #a00404;
	--hsc-light-blue: #78cdd1;
	--hsc-dark-blue: #00517d;
	--hsc-darker-blue: #012433;	
	--hsc-yellow: #efaf0f;
	--hsc-yellow-light: #efc66a;
	--hsc-yellow-dark: #b7830f;
	--hsc-green: #1d7c33;
	--hsc-green-light: #48aa5b;
	--hsc-green-dark: #11441a;
	--hsc-ecru: #f0f0dc;
	--hsc-warm-black: #1e1e1e;

	--primary-color: var(--hsc-purple);
	--secondary-color: var(--hsc-red);

}

.has-purple-background-color {
	background-color: var(--hsc-purple);
}
.has-light-purple-background-color {
	background-color: var(--hsc-purple-light);
}
.has-dark-purple-background-color {
	background-color: var(--hsc-purple-dark);
}
.has-light-red-background-color {
	background-color: var(--hsc-red-light);
}
.has-dark-red-background-color {
	background-color: var(--hsc-red-dark);
}
.has-red-background-color {
	background-color: var(--hsc-red);
}
.has-darker-blue-background-color {
	background-color: var(--hsc-darker-blue);
}
.has-light-blue-background-color {
	background-color: var(--hsc-light-blue);
}
.has-dark-blue-background-color {
	background-color: var(--hsc-dark-blue);
}
.has-light-yellow-background-color {
	background-color: var(--hsc-yellow-light);
}
.has-yellow-background-color {
	background-color: var(--hsc-yellow);
}
.has-dark-yellow-background-color {
	background-color: var(--hsc-yellow-dark);
}
.has-green-background-color {
	background-color: var(--hsc-green);
}
.has-light-green-background-color {
	background-color: var(--hsc-green-light);
}
.has-dark-green-background-color {
	background-color: var(--hsc-green-dark);
}
.has-ecru-background-color {
	background-color: var(--hsc-ecru);
}
.has-warm-black-background-color {
	background-color: var(--hsc-warm-black);
}
.has-white-background-color {
	background-color: white;
}
.has-black-background-color {
	background-color: black;
}

.has-purple-color {
	color: var(--hsc-purple);
}
.has-light-purple-color {
	color: var(--hsc-purple-light);
}
.has-dark-purple-color {
	color: var(--hsc-purple-dark);
}
.has-red-color {
	color: var(--hsc-red);
}
.has-light-red-color {
	color: var(--hsc-red-light);
}
.has-dark-red-color {
	color: var(--hsc-red-dark);
}
.has-light-blue-color {
	color: var(--hsc-light-blue);
}		
.has-dark-blue-color {
	color: var(--hsc-dark-blue);
}
.has-darker-blue-color {
	color: var(--hsc-darker-blue);
}
.has-yellow-color {
	color: var(--hsc-yellow);
}
.has-light-yellow-color {
	color: var(--hsc-yellow-light);
}
.has-dark-yellow-color {
	color: var(--hsc-yellow-dark);
}
.has-green-color {
	color: var(--hsc-green);
}
.has-light-green-color {
	color: var(--hsc-green-light);
}
.has-dark-green-color {
	color: var(--hsc-green-dark);
}
.has-ecru-color {
	color: var(--hsc-ecru);
}
.has-warm-black-color {
	color: var(--hsc-warm-black);
}
.has-white-color {
	color: white;
}
.has-black-color {
	color: black;
}


.border-1 {
	border: 1px solid;
}

.border-2 {
	border: 2px solid;
}

.border-3 {
	border: 3px solid;
}

.border-4 {
	border: 4px solid;
}

.border-5 {
	border: 5px solid;
}

.border-radius-5 {
	border-radius: 5px;
}
.border-radius-10 {
	border-radius: 10px;
}
.border-radius-15 {
	border-radius: 15px;
}
.border-radius-20 {
	border-radius: 20px;
}
.border-radius-25 {
	border-radius: 25px;
}
.border-radius-30 {
	border-radius: 30px;
}

.column-count-2 {
	
	column-count: 2;
	column-gap: 40px;

	@media screen and (max-width: 1200px) {
		column-count: 1;
	}
}

.reference {
	font-size: 12px;
}


.py-1 {
	padding-top: 4px!important;
	padding-bottom: 4px!important;
}
.py-2 {
	padding-top: 8px!important;
	padding-bottom: 8px!important;
}
.py-3 {
	padding-top: 12px!important;
	padding-bottom: 12px!important;
}
.py-4 {
	padding-top: 16px!important;
	padding-bottom: 16px!important;
}
.py-5 {
	padding-top: 24px!important;
	padding-bottom: 24px!important;
}
.py-6 {
	padding-top: 32px!important;
	padding-bottom: 32px!important;
}
.px-1 {
	padding-left: 4px!important;
	padding-right: 4px!important;
}
.px-2 {
	padding-left: 8px!important;
	padding-right: 8px!important;
}
.px-3 {
	padding-left: 12px!important;
	padding-right: 12px!important;
}
.px-4 {
	padding-left: 16px!important;
	padding-right: 16px!important;
}
.px-5 {
	padding-left: 24px!important;
	padding-right: 24px!important;
}
.px-6 {
	padding-left: 32px!important;
	padding-right: 32px!important;
}
.mt-1 {
	margin-top: 4px!important;
}
.mt-2 {
	margin-top: 8px!important;
}
.mt-3 {
	margin-top: 12px!important;
}
.mt-4 {
	margin-top: 16px!important;
}
.mt-5 {
	margin-top: 24px!important;
}
.mt-6 {
	margin-top: 32px!important;
}
.mb-1 {
	margin-bottom: 4px!important;
}
.mb-2 {
	margin-bottom: 8px!important;
}
.mb-3 {
	margin-bottom: 12px!important;
}
.mb-4 {
	margin-bottom: 16px!important;
}
.mb-5 {
	margin-bottom: 24px!important;
}
.mb-6 {
	margin-bottom: 32px!important;
}

/* Global Styles */
body {
	font-family: 'Chivo', sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
	color: var(--hsc-warm-black);
}

p {
	margin-bottom: 0.5em;
}

h1 {
	font-size: 3.2rem;
	font-weight: 900;

	@media screen and (max-width: 1200px) {
		font-size: 2.8rem;
		
	}
}
h2 {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 0.5em;

	@media screen and (max-width: 1200px) {
		font-size: 2.4rem;
	}
}
*+h2 {
	margin-top: 1em;
}
h3 {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 0.5em;

	@media screen and (max-width: 1200px) {
		font-size: 2rem;
	}
}
h4 {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0.5em;

	@media screen and (max-width: 1200px) {
		font-size: 1.8rem;
	}
}

h1, h2, h3, h4, h5, h6 {

	&.has-background {
		padding: 0.5em 1em;
	}
}

hr {
	margin-top: 1em;
	margin-bottom: 1em;
}

input:focus, input:focus-within {
	outline: none;
}

.container {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 40px;

	@media screen and (max-width: 1200px) {
		padding: 0 20px;
		
	}
}

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

section {
	margin-top: 80px;
	margin-bottom: 80px;

	@media screen and (max-width: 1200px) {
		margin-bottom: 40px;
		margin-top: 40px;
	}
}

section:first-child {
	margin-top: 0;
}

/* Base styling for the details element */
details {
  width: 100%;
  /* max-width: 480px; */
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f1f1f1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

details.has-background {
	background-color: transparent;
}

/* Style for the summary (closed header) */
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
	gap: 4px;
  padding: 16px 20px;
  font-weight: 500;
	color: #333;
  background-color: #f1f1f1;
  cursor: pointer;
  position: relative;
  outline: none;
}

/* Remove default disclosure triangle */
summary::-webkit-details-marker {
  display: none;
}

/* Custom plus/minus icon */
summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 2.4rem;
  font-weight: 300;
}

details {
	&.has-black-background-color summary {
		background-color: black;
		color: white;
	}
	&.has-white-background-color summary{
		background-color: white;
		color: black;
	}
	&.has-purple-background-color summary {
		background-color: var(--hsc-purple);
		color: white;
	}
	&.has-light-purple-background-color summary {
		background-color: var(--hsc-purple-light);
		color: white;
	}
	&.has-dark-purple-background-color summary {
		background-color: var(--hsc-purple-dark);
		color: white;
	}
	&.has-red-background-color summary {
		background-color: var(--hsc-red);
		color: white;
	}
	&.has-light-red-background-color summary {
		background-color: var(--hsc-red-light);
		color: black;
	}
	&.has-dark-red-background-color summary {
		background-color: var(--hsc-red-dark);
		color: white;
	}
	&.has-light-blue-background-color summary {
		background-color: var(--hsc-light-blue);
		color: black;
	}
	&.has-dark-blue-background-color summary {
		background-color: var(--hsc-dark-blue);
		color: white;
	}
	&.has-darker-blue-background-color summary {
		background-color: var(--hsc-darker-blue);
		color: white;
	}
	&.has-yellow-background-color summary {
		background-color: var(--hsc-yellow);
		color: black;
	}
	&.has-light-yellow-background-color summary {
		background-color: var(--hsc-yellow-light);
		color: black;
	}
	&.has-dark-yellow-background-color summary {
		background-color: var(--hsc-yellow-dark);
		color: white;
	}
	&.has-green-background-color summary {
		background-color: var(--hsc-green);
		color: white;
	}
	&.has-light-green-background-color summary {
		background-color: var(--hsc-green-light);
		color: black;
	}
	&.has-dark-green-background-color summary {
		background-color: var(--hsc-green-dark);
		color: white;
	}
	&.has-ecru-background-color summary {
		background-color: var(--hsc-ecru);
		color: var(--hsc-warm-black);
	}
	&.has-warm-black-background-color summary {
		background-color: var(--hsc-warm-black);
		color: var(--hsc-ecru);
	}
}

/* Change to minus sign when open */
details[open] summary::after {
  content: '−';
}

/* Content styling */
details > div {
  padding: 16px 20px;
  background-color: white;
	color: black;
  border-top: 1px solid #e0e0e0;
}

/* Animation for smooth open/close transition */
details > div {
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
#yes-btn,
#no-btn,
#start-quiz,
#restart-btn,
input[type='button'],
input[type='submit'],
.button {
	height: 60px;
	min-width: 190px;
	padding: 21.5px 26px;
	font-size: 1.4rem;
	line-height: 1.2;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	border: 2px solid;
	cursor: pointer;

	&:hover {
		filter: brightness(0.9);
	}

	&.wpcf7-submit,
	&.primary {
		color: white;
		background-color: var(--primary-color);
		border-color: var(--primary-color);
	}
	&.secondary {
		color: white;
		background-color: var(--secondary-color);
		border-color: var(--secondary-color);
	}
	&.primary-alt {
		color: var(--primary-color);
		background-color: transparent;
		border-color: var(--primary-color);
	}
	&.secondary-alt {
		color: var(--secondary-color);
		background-color: transparent;
		border-color: var(--secondary-color);
	}

	&.small {
		height: 47px;
		min-width: 140px;
		padding: 15px 25px;
		font-size: 1.4rem;
	}
}

.wp-block-buttons>.wp-block-button {
	display: inline-block;
	margin: 0;
}

.wp-block-button .wp-block-button__link {
	height: 60px;
	min-width: 190px;
	padding: 21.5px 26px;
	font-size: 1.4rem;
	line-height: 1.2;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	border: 2px solid;
	color: white;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	cursor: pointer;

	&:hover {
		filter: brightness(0.9);
	}

	&.has-black-background-color {
		background-color: black;
		color: white;
		border-color: black;
	}
	&.has-white-background-color {
		background-color: white;
		color: black;
		border-color: white;
	}
	&.has-purple-background-color {
		background-color: var(--hsc-purple);
		color: white;
		border-color: var(--hsc-purple);
	}
	&.has-light-purple-background-color {
		background-color: var(--hsc-purple-light);
		color: white;
		border-color: var(--hsc-purple-light);
	}
	&.has-dark-purple-background-color {
		background-color: var(--hsc-purple-dark);
		color: white;
		border-color: var(--hsc-purple-dark);
	}
	&.has-red-background-color {
		background-color: var(--hsc-red);
		color: white;
		border-color: var(--hsc-red);
	}
	&.has-light-red-background-color {
		background-color: var(--hsc-red-light);
		color: black;
		border-color: var(--hsc-red-light);
	}
	&.has-dark-red-background-color {
		background-color: var(--hsc-red-dark);
		color: white;
		border-color: var(--hsc-red-dark);
	}
	&.has-light-blue-background-color {
		background-color: var(--hsc-light-blue);
		color: black;
		border-color: var(--hsc-light-blue);
	}
	&.has-dark-blue-background-color {
		background-color: var(--hsc-dark-blue);
		color: white;
		border-color: var(--hsc-dark-blue);
	}
	&.has-darker-blue-background-color {
		background-color: var(--hsc-darker-blue);
		color: white;
		border-color: var(--hsc-darker-blue);
	}
	&.has-yellow-background-color {
		background-color: var(--hsc-yellow);
		color: black;
		border-color: var(--hsc-yellow);
	}
	&.has-light-yellow-background-color {
		background-color: var(--hsc-yellow-light);
		color: black;
		border-color: var(--hsc-yellow-light);
	}
	&.has-dark-yellow-background-color {
		background-color: var(--hsc-yellow-dark);
		color: white;
		border-color: var(--hsc-yellow-dark);
	}
	&.has-green-background-color {
		background-color: var(--hsc-green);
		color: white;
		border-color: var(--hsc-green);
	}
	&.has-light-green-background-color {
		background-color: var(--hsc-green-light);
		color: black;
		border-color: var(--hsc-green-light);
	}
	&.has-dark-green-background-color {
		background-color: var(--hsc-green-dark);
		color: white;
		border-color: var(--hsc-green-dark);
	}
	&.has-ecru-background-color {
		background-color: var(--hsc-ecru);
		color: var(--hsc-warm-black);
		border-color: var(--hsc-ecru);
	}
	&.has-warm-black-background-color {
		background-color: var(--hsc-warm-black);
		color: var(--hsc-ecru);
		border-color: var(--hsc-warm-black);
	}
}
.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.sticky-block {
	position: sticky;
	top: 110px;
}


/* Header */
header#global_header {
	position: sticky;
	top: 0;
	background-color: white;
	border-bottom: 1px solid lightgray;
	z-index: 1;

	div.header_wrapper {
		display: flex;
		gap: 40px;
		padding: 20px 0;

		@media screen and (max-width: 1200px) {
			justify-content: space-between;
		}

		.custom-logo-link {
			flex: 0 0 190px;
			.custom-logo {
				width: 190px;
			}
		}

		nav.menu-global-nav-container {
			@media screen and (max-width: 1200px) {
				position: fixed;
				top: 94px;
				right: 0;
				width: 100%;
				/* height: calc(100vh - 94px); */
				max-height: calc(100vh - 94px); /* Ensure it doesn't overflow the viewport */
				overflow-y: auto;
				padding: 40px 20px;
				background-color: var(--hsc-ecru);
				transition: transform 0.3s;
				transform: translateX(100%);
			}
		}

		ul#menu-global-nav {
			display: flex;
			gap: 30px;
			height: 100%;

			@media screen and (max-width: 1200px) {
				flex-direction: column;
				gap: 10px;
			}

			li.menu-item {
				display: flex;
				align-items: center;

				@media screen and (max-width: 1200px) {
					display: block;
					padding: 5px 0;
				}

				a {
					color: var(--hsc-warm-black);
					text-decoration: none;
					font-size: 1.4rem;
					font-weight: 400;
					padding: 10px;

					@media screen and (max-width: 1200px) {
						font-size: 1.6rem;
					}
				}
			}

			li.menu-item-has-children {
				position: relative;

				@media screen and (min-width: 1200px) {

					&:hover > ul.sub-menu {
						display: block;
					}
				}

				&.open > ul.sub-menu {
					/* For mobile, when the parent is open */
					display: block;
				}
				
				@media screen and (max-width: 1220px) {
					/* Add a caret or arrow for the dropdown on mobile */
					> a::after {
						content: ' ▼'; /* Add a down arrow */
						font-size: 1.2rem;
						margin-left: 5px;
					}

					&.open > a::after {
						content: ' ▲'; /* Change to an up arrow when open */
					}
				}

				ul.sub-menu {
					display: none;
					position: absolute;
					top: 100%;
					left: 0;
					width: max-content;
					max-width: 250px;
					background-color: var(--hsc-warm-black);
					padding: 10px;
					border-radius: 5px;

					@media screen and (max-width: 1200px) {
						position: static;
						/* display: block; */
						background-color: inherit;
					}

					li.menu-item a {
						color: var(--hsc-ecru);
						font-size: 1.4rem;

						@media screen and (max-width: 1200px) {
							color: var(--hsc-warm-black);
						}
					}
				}
			}
		}

		.header_buttons {
			align-self: center;
			margin-left: auto;

			@media screen and (max-width: 1200px) {
				display: none;
			}
		}

		#menu_button {
			display: none;

			appearance: none;
			border: none;
			background-color: transparent;
			cursor: pointer;

			span {
				display: block;
				width: 30px;
				height: 2px;
				background-color: var(--hsc-purple);
				margin: 6px 0;
				transition: 0.3s;
			}

			&.active span:nth-child(1) {
				transform: rotate(-45deg) translate(-5px, 6px);
			}
			&.active span:nth-child(2) {
				opacity: 0;
			}
			&.active span:nth-child(3) {
				transform: rotate(45deg) translate(-5px, -6px);
			}

			@media (max-width: 1200px) {
				display: block;
				min-width: unset;

				&.active {
					~ nav.menu-global-nav-container {
						transform: translateX(0);
					}
				}
			}
		}
	}
}


.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1000; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-wrapper {
	display: grid;
	place-items: center;
	height: 100%;
	width: 100%;
}

.modal-content {
	/* background-color: #fefefe; */
	background-color: black;
	/* margin: 15% auto; */
	padding: 40px 20px 20px;
	/* border: 1px solid #888; */
	width: fit-content;
	position: relative;
}

.modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	right: 20px;
	top: 0px;
}

.modal-close:hover,
.modal-close:focus {
	color: white;
	text-decoration: none;
	cursor: pointer;
}


/* Footer */
footer {
	background-color: white;
	.container {
		padding-bottom: 45px;

		.footer-wrapper {
			display: flex;
			gap: 40px;
			padding: 80px 0;

			@media screen and (max-width: 1200px) {
				flex-direction: column;
				gap: 30px;
				padding: 30px 0;
				align-items: center;
				text-align: center;
			}

			.footer-logo {
				width: 100px;
				flex: 0 0 100px;
			}

			.footer-contact-info {
				margin-left: auto;
				@media screen and (max-width: 1200px) {
					margin-left: 0;
				}
			}
			.main-nav {
				margin-left: 47px;

				@media screen and (max-width: 1200px) {
					margin-left: 0;
				}
			}

			ul#menu-footer-menu,
			ul#menu-global-nav-1 {
				display: flex;
				gap: 20px;

				@media screen and (max-width: 1500px) {
					flex-direction: column;
					gap: 10px;

					ul.sub-menu {
						display: none;
					}
					
				}
			}

			ul#menu-footer-social {
				li {
					padding: 2px 0px;
				}
			}

			.main-nav,
			.footer-contact-info,
			.footer-nav {
				font-size: 1.4rem;
				line-height: 2;
				/* letter-spacing: calc(1.2rem * 0.15); */

				a {
					color: inherit;
					text-decoration: none;
					/* text-transform: uppercase; */
				}
			}
			.footer-donate {
				font-size: 1.4rem;
				line-height: 2;

				.button {
					/* margin-top: 20px; */
				}
			}
			.footer-disclaimer {
				font-size: 1.2rem;
				text-align: left;
				@media screen and (min-width: 1200px) {
					max-width: 50%;
					margin-left: auto;
				}
			}
		}
		.footer-signup {
			margin-left: auto;
		}
		.footer-copyright {
			font-size: 1.4rem;
			line-height: 2;
			/* letter-spacing: calc(1.2rem * 0.15); */

			text-align: center;

			a {
				color: inherit;
			}

			@media screen and (max-width: 1200px) {
				text-align: center;
			}
		}
	}
}

.footer-signup {
	border: 1px solid var(--hsc-warm-black);
	border-radius: 50px;
	padding: 6px 5px 6px 20px;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	height: fit-content;
	width: 100%;
	max-width: 407px;
	background-color: white;

	@media screen and (max-width: 1200px) {
		margin-left: 0;
	}


	.signup-wrapper {
		display: flex;
		gap: 10px;
		width: 100%;

		input {
			border: none;
			appearance: none;
			background-color: transparent;
			font-size: 1.6rem;
			font-weight: 400;
			color: var(--hsc-warm-black);
			flex: 1;

			@media screen and (max-width: 1200px) {
				width: 50%;
			}
		}
	}
}

.footer-signup-section {
	background-color: var(--hsc-purple);
	color: white;
	text-align: center;
	padding: 120px 0;
	.footer-signup {
		margin: 24px auto 0;
		border-color: transparent;
	}
}



/* Page Header */
header.page-header {
	background: var(--hsc-purple);
	padding: 60px 0;;
	text-align: center;
	color: white;

	.page-header-wrapper {
		max-width: 1000px;
		margin: 0 auto;

		.page-header-eyebrow {
			font-size: 1.2rem;
			margin-bottom: 30px;
			text-transform: uppercase;
			letter-spacing: calc(1.2rem * 0.15);
		}
		h1 {
			color: white;
			margin-bottom: 21px;
		}

		.page-header-copy {
			max-width: 600px;
			margin: 0 auto;
			text-wrap: balance;
		}
	}
}

body:not(.home) .entry-content {
	padding: 40px 0;
}

body:not(.home) .derm-page-content {
	padding: 40px 0 0;
}

/* Home */
body.home {
	h1 {
		/* font-size: 11rem; */
		font-size: clamp(5rem, 7.63vw, 11rem);
		font-weight: 900;
		line-height: 1;
		color: white;
		max-width: 1400px;
		margin-bottom: 20px;
	}
	div#home_hero {

		/* min-height: calc(100vh - 93px); */
		aspect-ratio: 16 / 9;

		@media screen and (min-width: 1200px) {
			/* aspect-ratio: 1553 / 748; */
			aspect-ratio: 16 / 9;
			min-height: unset;

			.wp-block-button .wp-block-button__link {
				position: absolute;
				top: 38vw;
				transform: translateX(-50%);
			}
		}

		@media screen and (max-width: 600px) {
			.wp-block-cover__inner-container .wp-block-group {
				margin-bottom: 0;
				transform: translateY(20px); /* Adjust to vertically center the content in the cover block */
			}
		}
		

		.wp-block-button .wp-block-button__link {
		  border-color: var(--hsc-ecru);
			border-width: 1px;
		}
	}

	div#home_columns {
    transform: translateY(-74px);

		@media screen and (max-width: 1200px) {
			transform: translateY(40px);
		}
	}

}

h2+h4 {
	margin-bottom: 24px;
}

*+.wp-block-buttons {
	margin-top: 24px;
}


/* Articles (Blog) page */
body.category,
body.blog {
	.entries.container {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
			gap: 30px;
			margin-top: 40px;
			margin-bottom: 40px;


			article {
				/* background-color: var(--hsc-darker-blue); */
				border-radius: 10px;
				padding: 20px;
				/* color: white; */

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

				header {
					.post-thumbnail {
						margin-bottom: 20px;
						width: 100%;
						aspect-ratio: 16 / 9;

						img {
							width: 100%;
							height: 100%;
							object-fit: cover;
						}
					}
					h2 {
						margin-bottom: 10px;
						margin-top: 10px;
						font-size: 2.6rem;
						line-height: 1.2;
					}
				}

				&.has-dark-purple-background {
					background-color: var(--hsc-purple-dark);
					color: white;
				}
				&.has-light-purple-background{
					background-color: var(--hsc-purple-light);
					color: var(--hsc-warm-black);
				}
				&.has-red-background {
					background-color: var(--hsc-red);
					color: white;
				}
				&.has-light-red-background {
					background-color: var(--hsc-red-light);
					color: var(--hsc-warm-black);
				}
				&.has-dark-red-background {
					background-color: var(--hsc-red-dark);
					color: white;
				}
				&.has-light-blue-background {
					background-color: var(--hsc-light-blue);
					color: var(--hsc-warm-black);
				}
				&.has-dark-blue-background {
					background-color: var(--hsc-dark-blue);
					color: white;
				}
				&.has-darker-blue-background {
					background-color: var(--hsc-darker-blue);
					color: white;
				}
				&.has-yellow-background {
					background-color: var(--hsc-yellow);
					color: var(--hsc-warm-black);
				}
				&.has-light-yellow-background {
					background-color: var(--hsc-yellow-light);
					color: var(--hsc-warm-black);
				}
				&.has-dark-yellow-background {
					background-color: var(--hsc-yellow-dark);
					color: white;
				}
				&.has-green-background {
					background-color: var(--hsc-green);
					color: white;
				}
				&.has-light-green-background {
					background-color: var(--hsc-green-light);
					color: var(--hsc-warm-black);
				}
				&.has-dark-green-background {
					background-color: var(--hsc-green-dark);
					color: white;
				}
				&.has-ecru-background {
					background-color: var(--hsc-ecru);
					color: var(--hsc-warm-black);
				}
				&.has-warm-black-background {
					background-color: var(--hsc-warm-black);
					color: var(--hsc-ecru);
				}
				/* Add a hover effect */
				&:hover {
					box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
					transition: box-shadow 0.3s ease-in-out;
				}
			}
	}
}

/* Single Post */
.single-post {
	header.entry-header {
		max-width: 1000px;
		margin: 0 auto 30px;
		text-align: center;
	}
	.post-content {
		max-width: 800px;
		margin: 0 auto;
	}

	footer.entry-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
		gap: 20px;
		padding: 10px 0;
	}
}

.single-recipe {

	main .container {
		max-width: 900px;
	}

	.recipe-header {
		display: flex;
		justify-content: space-between;
		gap: 20px;
		padding: 30px;
		background: var(--hsc-purple-light);
		border-radius: 10px;
		margin-bottom: 30px;

		@media screen and (max-width: 900px) {
			flex-direction: column-reverse;
			align-items: center;
		}

		.recipe-image {
			width: 250px;
			flex: 0 0 250px;
			aspect-ratio: 1;
			padding: 3px;
			background: white;
			border-radius: 3px;
			box-shadow: 2px 14px 26px #00000040;

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

	.recipe-info {
		display: flex;
		flex-direction: column;
		color: white;
	
		h1.recipe-title {
			font-size: 3.6rem;
			line-height: 1.2;
			margin-bottom: 20px;
		}

		.recipe-description {
			margin-bottom: 20px;
		}
		.recipe-stats {
			display: flex;
			gap: 20px;
			margin-top: auto;

			@media screen and (max-width: 900px) {
				flex-direction: column;
				gap: 10px;
			}
		}
	}

	.recipe-footer {
		margin-top: 40px;
		text-align: right;

		@media screen and (max-width: 900px) {
			text-align: center;
			margin-top: 20px;
			
		}
	}

	/* print styles */
	@media print {
		#global_header,
		footer {
			display: none;
		}
	}
}






/**
 * Dermatologist Finder Styles
 * Add this to your theme's style.css or create a separate CSS file
 */

/* Container */
.derm-finder-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	color: var(--hsc-warm-black);
}

.derm-finder-content {
	background-color: var(--hsc-ecru);
	padding: 30px;
	border-radius: 4px;
}

.derm-finder-title {
	text-align: center;
	font-size: 28px;
	margin-bottom: 30px;
	font-weight: bold;
}

/* Type Toggle (Adults/Children) */
.derm-type-toggle {
	display: flex;
	margin-bottom: 25px;
	border-radius: 6px;
	overflow: hidden;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.type-button {
	flex: 1;
	text-align: center;
	background-color: var(--hsc-purple-light);
	color: white;
	padding: 15px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s;
}

.type-button.active {
	background-color: var(--hsc-purple-dark);
}

.type-button:hover {
	background-color: var(--hsc-purple);
}

/* Alphabetical Navigation */
/* Update to Alpha Nav for ALL button */
.alpha-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
	border-bottom: 2px solid #000;
	padding-bottom: 5px;
}

.alpha-nav a {
	display: inline-block;
	padding: 5px 8px;
	text-decoration: none;
	color: #777;
	font-weight: normal;
	margin: 0 2px;
}

.alpha-nav a:first-child {
	/* Style for ALL button */
	font-weight: bold;
	color: #333;
	margin-right: 10px;
	position: relative;
}

.alpha-nav a:first-child:after {
	/* Add separator after ALL button */
	content: "|";
	position: absolute;
	right: -8px;
	color: #999;
}

.alpha-nav a.has-content {
	color: #000;
	font-weight: bold;
}

.alpha-nav a.active {
	border-bottom: 3px solid #000;
	font-weight: bold;
}

/* Country Navigation */
.country-nav {
	text-align: center;
	margin-bottom: 30px;
	font-size: 14px;
}

.country-nav a {
	text-decoration: none;
	color: var(--hsc-warm-black);
	padding: 0 5px;
}

.country-nav a.active {
	font-weight: bold;
	text-decoration: underline;
}

/* State/Country Headers */
.state-header, .country-header {
	font-size: 22px;
	text-align: center;
	margin: 30px 0;
	position: relative;
}

.state-header:before, .state-header:after,
.country-header:before, .country-header:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 35%;
	height: 1px;
	background-color: var(--hsc-warm-black);
}

.state-header:before, .country-header:before {
	left: 0;
}

.state-header:after, .country-header:after {
	right: 0;
}

/* Dermatologist Listings */
.dermatologists-group {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.dermatologist-card {
	background: white;
	padding: 15px;
	line-height: 1.4;
}

.derm-name {
	font-size: 16px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 10px;
}

.derm-details {
	font-size: 14px;
}

.derm-details p {
	margin: 5px 0;
}

.derm-found {
	margin-top: 10px;
	font-weight: bold;
	color: var(--hsc-green);
}






/* page template to load children */
.child-pages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(min(350px , 100%),1fr));
	gap: 24px;
	margin: 30px auto;
}

	.child-pages-grid .child-page {
		background-color: var(--hsc-light-blue);
		padding: 24px;
	}

		.child-pages-grid .child-page img {
			object-fit: cover;
			height: 300px;
			width: 100%;
		}

		.child-pages-grid .child-page h2 {
			margin-bottom: 3px;
		}
		
		.child-pages-grid .child-page .read-more {
			font-weight: bold;
			margin-top: 18px;
		}

#bio .container {
	max-width: 640px;
}

#bio .bio-img {
	margin-bottom: 24px;
}

#bio figcaption {
	color: var(--hsc-red);
}

.bio-title-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 12px;
}



/* misc block styling... */

.constrained {
	max-width: 750px;
}

.wp-block-group.is-layout-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(175px, auto)); /* Adjusts column width */
	grid-auto-rows: minmax(175px, auto); /* Adjusts row height */
	gap: 24px;
	margin: 24px auto;
	padding: 24px 0;
}

	.wp-block-group.is-layout-grid figure {
		display: grid;
		place-content: center;
	}
	
	
/* forms styling  */
@media (max-width: 1200px) {
	#contact-us-container {
		padding-bottom: 40px;
	}
}


.wp-block-contact-form-7-contact-form-selector {
	margin: 24px auto;
	max-width: 480px
}

	.wp-block-contact-form-7-contact-form-selector p {
		margin-bottom: 1.8rem;
	}
	
		.wp-block-contact-form-7-contact-form-selector span {
			display: block;
			margin-top: 6px;
		}

		.wp-block-contact-form-7-contact-form-selector input,
		.wp-block-contact-form-7-contact-form-selector textarea {
			padding: 9px;
			width: 100%;
		}


/* contact form styling */
ul.wp-block-social-links {
	justify-content: flex-start;
	gap: 12px;

	@media (max-width: 1200px) {
		flex-direction: row;
		justify-content: flex-start;
	}
}


/* No Results */
.no-results {
	text-align: center;
	padding: 40px 0;
	font-style: italic;
	/* color: #666; */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.dermatologists-group {
			grid-template-columns: 1fr;
	}
	
	.alpha-nav a {
			padding: 3px 5px;
			font-size: 14px;
	}
	
	.state-header:before, .state-header:after,
	.country-header:before, .country-header:after {
			width: 25%;
	}
}


/* Research Page */

.research {
	align-content: stretch;

	.research-items {
		flex: 1;
		width: 100%;
	}

	.subject-filter-select {
		margin-bottom: 20px;
		@media screen and (min-width: 1200px) {
			display: none;
			
		}
	}

	.subject-filter-list {
		position: sticky;
		top: 100px;
		list-style: none;

		@media screen and (max-width: 1200px) {
			display: none;
		}

		li {
			padding: 4px 0;

			a {
				text-decoration: none;
				color: var(--hsc-warm-black);
				font-weight: 500;
			}
		}
		
	}
}


.social-icons {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;

	@media screen and (max-width: 1200px) {
		flex-wrap: wrap;

		img {
			width: 50px;
			height: 50px;
		}
	}
}



body.archive.post-type-archive.post-type-archive-clinical-trial {
	.container {
		&>.wrapper {
			display: grid;
			gap: 20px;
			grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
			max-width: 1200px;
			margin: 0 auto;
			padding: 20px;

			@media screen and (max-width: 1200px) {
				padding: 20px 0;
			}
		}
		nav.navigation.pagination {
			text-align: center;
			margin-top: 20px;
		}
	}
}


/* misc class fixes */
.section  + .section {
	padding-top: 40px;
}

/* partners and publicity beg */
.logos-container .wp-block-column > .wp-block-group,
#surveys-studies-container {
	padding: 40px;

	.logos {
		align-items: center;
		gap: 25px;
		padding: 3px;
	}

	.logos.logos-row {
		padding: 10px;
	}
}

@media screen and (max-width: 1200px) {
	.logos-container + .logos-container {
		margin-top: 30px;
	}

	.logos-container .wp-block-column > .wp-block-group,
	#surveys-studies-container {
		padding: 24px 18px;
	}

	#surveys-studies-container {
		margin-right: 20px;
		margin-left: 20px;
	}
}

/* partners and publicity end */


/* individual tweaks mobile beg */
@media screen and (max-width: 1200px) {
	#hurley-stages-container h2 {
		margin-top: 30px;
	}

	.wp-block-columns .wp-block-group.padding-sides-mobile {
		padding-right: 20px;
		padding-left: 20px;
	}
}


/* individual tweaks mobile end */