/**
 * Style Kynova — Page d'accueil
 * Conventions : parties du haut vers le bas, MQ en fin de fichier.
 * @package SugarSweets
 */

:root {
	--coral: #ea4850;
	--coral2: #db402e;
	--peach: #eda47b;
	--darkGrey: #5a4c4b;
	--brown: #56433c;
	--charcoal: #1a1a1a;
	--grey: #5a5a5a;
	--cream: #fafaf5;
	--white: #fff;

	--font-serif: "Playfair Display", Georgia, serif;
	--font-sans: "Montserrat", system-ui, sans-serif;
	--font-script: "Licorice", cursive;

	--wrap: 1200px;
	--wrap-narrow: 1000px;
	--pad: 1.5rem;
	--pad-md: 3rem;
	--space: 5rem;
	--space-md: 8rem;
	--transition: all 0.3s ease-in-out;
	--transition-slow: all 0.7s ease-in-out;
}

/* Utilitaires */
.rounded-blob { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }

.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
			line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
			line-clamp: 3; 
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@keyframes fade-in-up {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; }
.animate-bounce { animation: bounce 2s ease-in-out infinite; }

/******************************************************/
/******************* LAYOUT GÉNÉRIQUE *****************/
/******************************************************/

#front-page.front-page { width: 100%; }

.wrap {
	max-width: var(--wrap);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--pad);
	padding-right: var(--pad);
}

.section-wrap {
	max-width: var(--wrap);
	margin-left: auto;
	margin-right: auto;
}

section:not(.inside-page section) {
	padding: var(--space) var(--pad);
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}
.section-eyebrow {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.875rem;
	margin-bottom: 1rem;
	font-family: var(--font-sans);
	font-weight: 600;
}
.section-title {
	position: relative;
	display: inline-block;
	font-family: var(--font-script);
	font-size: 4rem;
	line-height: 4rem;
}
.section-title::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 6rem;
	height: 4px;
	background: rgba(238, 108, 94, 0.3);
}

.link {
	color: #fff;
	background: var(--coral);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;

}
.link:hover { background: var(--charcoal); color: #fff; }
.link svg { width: 1rem; height: 1rem; }

.btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.875rem;
	font-family: var(--font-sans);
	font-weight: 600;
	transition: all 0.3s;
	text-decoration: none;
}
.btn-primary {
	background: var(--coral);
	border: 2px solid var(--coral);
	color: var(--white);
	box-shadow: 0 4px 14px rgba(238, 108, 94, 0.39);
}
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.btn-outline {
	border: 2px solid var(--white);
	color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-dark {
	background: var(--darkGrey);
	color: var(--white);
	box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.btn-dark:hover { background: var(--peach); color: var(--charcoal); }
.btn-white {
	background: var(--white);
	color: var(--coral);
	box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}
.btn-white:hover { background: var(--charcoal); color: var(--white); transform: translateY(-4px); }

/******************************************************/
/******************** SECTION HERO ********************/
/******************************************************/

.hero {
	position: relative;
	min-height: 100vh;
	min-height: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hero .hero-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate3d(0, 0, 0) scale(1.08);
	transform-origin: center top;
	will-change: transform;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}
.hero-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(238, 108, 94, 0.2);
	mix-blend-mode: overlay;
}
.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 56rem;
	margin: 4rem auto;
}
.hero-content .btn { margin-bottom: 0; }
.hero-eyebrow {
	display: block;
	color: var(--peach);
	letter-spacing: 0.5em;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-sans);
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
	animation: fade-in-up 0.6s ease-out forwards;
}
.hero-title {
	display: flex;
	flex-direction: column;
	font-family: var(--font-script);
	font-size: 3rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 2rem;
	line-height: 1.2;
	animation: fade-in-up 0.6s ease-out forwards;
	animation-delay: 0.2s;
	opacity: 0;
	animation-fill-mode: forwards;
}
.hero-subtitle {
	color: var(--white);
	font-size: 1.125rem;
	margin-bottom: 2.5rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
	animation: fade-in-up 0.6s ease-out forwards;
	animation-delay: 0.4s;
	opacity: 0;
	animation-fill-mode: forwards;
}
.hero-content .btn {
	animation: fade-in-up 0.6s ease-out forwards;
	animation-delay: 0.6s;
	opacity: 0;
	animation-fill-mode: forwards;
	margin-bottom: 12px;
}

/******************************************************/
/******************* SECTION DATES ********************/
/******************************************************/

.dates {
	background: var(--cream);
	color: var(--charcoal);
}
#dates .section-eyebrow { color: var(--coral); }
#dates .section-title { color: var(--charcoal);}

.dates-list {
	display: grid;
	gap: 1.5rem;
	max-width: var(--wrap-narrow);
	margin: 0 auto;
}
.dates-card {
	background: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 2px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s;
}
.dates-card:hover {
	border-color: var(--coral);
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.dates-main {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 1rem;
}
.dates-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 2rem;
	padding-right: 2rem;
	border-right: 1px solid #f3f4f6;
	min-width: 80px;
}
.dates-day {
	font-size: 1.875rem;
	font-family: var(--font-serif);
	font-weight: 700;
	color: var(--charcoal);
	transition: color 0.3s;
}
.dates-card:hover .dates-day { color: var(--coral); }
.dates-month {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--grey);
}
.dates-body { text-align: left; }
.dates-venue {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 0.25rem;
}
.dates-city {
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	color: var(--grey);
}
.dates-city svg {
	margin-right: 0.5rem;
	color: var(--coral);
	width: 1rem;
	height: 1rem;
}
.dates-cta {
	font-size: 0.75rem;
	padding: 0.5rem 1.5rem;
	border: 2px solid var(--coral);
	color: var(--coral);
	text-decoration: none;
	transition: all 0.3s;
}
.dates-cta:hover { background: var(--coral); color: var(--white); }
.dates-sold {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #9ca3af;
	font-style: italic;
}
.dates-footer { text-align: center; margin-top: 3rem; }

/******************************************************/
/******************** SECTION VIDÉOS ******************/
/******************************************************/

.videos {
	background: var(--cream);
	padding-top: 0;
}
.video-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1rem;
	max-width: var(--wrap);
	margin: 0 auto;
}
.video-item-large {
	grid-row: span 2;
	position: relative;
}
.video-wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 */
	background: var(--charcoal);
	border-radius: 0.5rem;
	overflow: visible;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.15),
		0 12px 28px rgba(0, 0, 0, 0.12),
		0 24px 48px rgba(0, 0, 0, 0.08);
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.video-item-large .video-wrapper {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding-bottom: 0;
}

/* Sur mobile : empiler les 3 vidéos (voir MEDIA QUERIES en fin de fichier) */

/******************************************************/
/******************** SECTION BIO *********************/
/******************************************************/

.bio {
	background: var(--brown);
	color: var(--white);
	overflow: hidden;
}
.bio-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}
.bio-media {
	position: relative;
	order: 2;
}
.bio-decor {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(1.25);
	opacity: 0.3;
	pointer-events: none;
}
.bio-decor::before,
.bio-decor::after {
	content: '';
	position: absolute;
	transform: translateY(-50%);
	border-radius: 50%;
	mix-blend-mode: overlay;
	filter: blur(48px);
}
.bio-decor::before {
	top: 50%;
	left: 0;
	width: 16rem;
	height: 24rem;
	background: var(--peach);
	animation: pulse 2s ease-in-out infinite;
}
.bio-decor::after {
	top: 75%;
	right: 2.5rem;
	width: 12rem;
	height: 24rem;
	background: var(--darkGrey);
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.2; }
}
.bio-frame {
	position: absolute;
	top: 1rem;
	left: -1rem;
	width: 100%;
	height: 100%;
	border: 2px solid rgba(238, 108, 94, 0.3);
	z-index: 0;
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.bio-image {
	position: relative;
	z-index: 10;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	filter: grayscale(0.5) contrast(1.25);
	transition: filter 0.7s;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.bio-image:hover { filter: grayscale(0); }
.bio-content { order: 1; }

.bio-eyebrow {
	color: var(--peach);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.875rem;
	margin-bottom: 1rem;
	display: block;
	font-weight: 700;
}
.bio-title {
	color: var(--white);
	margin-bottom: 2rem;
}
.bio-title em { color: var(--coral); font-style: italic; }
.bio-text {
	color: rgba(209, 213, 219, 1);
	line-height: 1.625;
	margin-bottom: 1.5rem;
	font-weight: 300;
	font-size: 1.125rem;
}
.bio-text:last-of-type { margin-bottom: 2rem; }

/******************************************************/
/******************* SECTION NEWS *********************/
/******************************************************/

.news {
	color: var(--charcoal);
}
.news:not(.inside-page .news) {
	background: var(--cream);
}
.news .section-eyebrow { color: var(--coral); }
.news .section-title { color: var(--charcoal);}

.news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
.news-card { cursor: pointer; }
.news-image {
	position: relative;
	overflow: hidden;
	margin-bottom: 1.5rem;
	aspect-ratio: 4/3;
	border-radius: 2px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
}
.news-card:hover .news-image img { transform: scale(1.1); }
.news-date {
	color: var(--darkGrey);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
	display: block;
	font-weight: 700;
}
.news-title {
	font-size: 1.25rem;
	font-family: var(--font-serif);
	height: calc(1.375em * 2);
	color: var(--charcoal);
	margin-bottom: 0.75rem;
	line-height: 1.375;
	transition: var(--transition);
}
.news-card:hover .news-title { color: var(--coral); }
.news-excerpt {
	color: var(--grey);
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

/******************************************************/
/****************** SECTION GALLERY *******************/
/******************************************************/

.gallery {
	background: var(--brown);
	color: var(--white);
	padding-bottom: 0;
}
.gallery-title-block {
	margin-bottom: 2rem;
}
.gallery-eyebrow {
	color: var(--peach);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
	display: block;
	font-weight: 700;
}
.gallery-link {
	color: var(--white);
	font-size: 0.875rem;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding-bottom: 2px;
	text-decoration: none;
	transition: color 0.3s;
}
.gallery-link:hover { color: var(--coral); }

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 0.5rem;
	height: 600px;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	min-height: 0;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: var(--transition);
}
.gallery-item-large {
	grid-column: span 2;
	grid-row: span 2;
}
.gallery-item-large img { filter: grayscale(1); }
.gallery-item-large:hover img {
	filter: grayscale(0);
}
.gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(238, 108, 94, 0.2);
	opacity: 0;
	transition: opacity 0.3s;
	mix-blend-mode: overlay;
}
.gallery-item-large:hover .gallery-overlay { opacity: 1; }
.gallery-item-sepia img { filter: sepia(0.25); }
.gallery-item-contrast img { filter: contrast(1.25); }
.gallery-footer { margin-top: 2rem; text-align: center; }

/******************************************************/
/******************** SECTION CTA *********************/
/******************************************************/
section.cta {
	margin: 36px 0;
}

.cta {
	padding: 6rem var(--pad);
	background: var(--coral);
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	pointer-events: none;
	background-size: auto;
}
.cta-inner {
	position: relative;
	z-index: 10;
	max-width: 48rem;
	margin: 0 auto;
	padding: 1rem 0;
}
.cta-title {
	font-family: var(--font-serif);
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
}
.cta-text {
	font-size: 1.125rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
}

/******************************************************/
/******************** SINGLE POST *********************/
/******************************************************/

.single-content-area {
	padding: var(--space) var(--pad);
}
.single-main {
	max-width: var(--wrap-narrow);
	margin-left: auto;
	margin-right: auto;
}
.single-article {
	background: transparent;
	border: none;
	padding: 0;
}
.single-article-inner {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.single-featured-image {
	width: 100%;
	border-radius: 0.5rem;
	overflow: hidden;
	background: var(--cream);
}
.single-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}
.single-header {
	margin-bottom: 0;
}
.single-title {
	font-family: var(--font-serif);
	font-size: 2.25rem;
	line-height: 1.25;
	color: var(--charcoal);
	margin: 0 0 1rem;
	font-weight: 400;
}
.single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	color: var(--grey);
}
.single-date {
	font-weight: 500;
}
.single-author::before {
	content: '·';
	margin-right: 0.5rem;
	opacity: 0.7;
}
.single-content,
.page-content {
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--charcoal);
}
.single-content p,
.page-content p {
	margin: 0 0 1.25rem;
}
.single-content p:last-child,
.page-content p:last-child { margin-bottom: 0; }
.single-content a:not(.bttn),
.page-content a:not(.bttn) {
	color: var(--coral);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}
.single-content a:not(.bttn):hover,
.page-content a:not(.bttn):hover {
	color: var(--charcoal);
}
.single-content h2,
.single-content h3,
.page-content h2,
.page-content h3 {
	font-family: var(--font-serif);
	margin: 2rem 0 1.2rem;
	font-size: 1.5rem;
	font-weight: 400;
}
.single-content h2,
.page-content h2 { font-size: 2.25rem; }
.single-content ul,
.single-content ol,
.page-content ul,
.page-content ol {
	margin: 1rem 0 1.5rem;
	padding-left: 1.5rem;
}
.single-content li,
.page-content li { margin-bottom: 0.5rem; }
.single-content blockquote,
.page-content blockquote {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
	border-left: 4px solid var(--coral);
	font-style: italic;
	color: var(--grey);
}
.single-content .page-links,
.page-content .page-links {
	margin-top: 2rem;
	font-family: var(--font-sans);
	font-size: 0.875rem;
}
.single-content .page-links a,
.page-content .page-links a {
	display: inline-block;
	margin-right: 0.5rem;
	padding: 0.25rem 0.5rem;
	background: var(--cream);
	border-radius: 0.25rem;
}
.single-content .page-links a:hover,
.page-content .page-links a:hover {
	background: var(--coral);
	color: var(--white);
}

/******************************************************/
/******************** INNER PAGE **********************/
/******************************************************/

.page-content-area {
	padding: var(--space) var(--pad);
}
.inside-page {
	max-width: var(--wrap);
	margin: 0 auto 60px;
}
.page-header {
	margin-bottom: 0;
}
.page-title {
	font-family: var(--font-serif);
	font-size: 2.25rem;
	line-height: 1.25;
	color: var(--charcoal);
	margin: 0;
	font-weight: 400;
}
.page-footer {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0,0,0,0.08);
	font-family: var(--font-sans);
	font-size: 0.875rem;
}
.page-footer .edit-link a {
	color: var(--coral);
	text-decoration: none;
}
.page-footer .edit-link a:hover {
	color: var(--charcoal);
}

.text-bg-rose {
	max-width: 980px;
    margin: 0 auto;
	background: var(--coral);
	padding: 1.5rem 1.5rem;
	border-radius: 0.5rem;
}

.text-bg-rose h2 {
	margin-top: 0;
	text-align: center;
	font-weight: 700;
	color: #fff;
}

.text-bg-rose p {
	color: #fff;
}

.text-bg-rose a.link {
	display: block;
	width: fit-content;
	margin: 0 auto;
	color: var(--coral);
	border: 2px solid #fff;
	background: #fff;
}

.text-bg-rose a.link:hover {
	color: #fff;
	background: var(--coral);
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
}

.contact-form form .fields {
	display: flex;
    gap: 30px;
}

.contact-form form .field {
    margin-bottom: 12px;
}

.contact-form form .fields .field {
    flex: 1;
}

.contact-form form .field label {
    display: inline-block;
    margin-bottom: 6px;
}

.contact-form form .submit {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 12px 0 0;
    width: fit-content;
}

.equalizer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 60px;
	background: var(--cream);
}
  
.equalizer span {
	width: 6px;
	height: 20px;
	border-radius: 20px;
	background: linear-gradient(to top, var(--coral2), var(--coral));
	animation: equalizer 2s ease-in-out infinite;
}
  
.equalizer span:nth-child(1) { animation-delay: 0s; }
.equalizer span:nth-child(2) { animation-delay: 0.3s; }
.equalizer span:nth-child(3) { animation-delay: 0.6s; }
.equalizer span:nth-child(4) { animation-delay: 0.9s; }
.equalizer span:nth-child(5) { animation-delay: 0.6s; }
.equalizer span:nth-child(6) { animation-delay: 0.3s; }
.equalizer span:nth-child(7) { animation-delay: 0s; }
  
@keyframes equalizer {
	0%, 100% {
	  height: 12px;
	  opacity: 0.6;
	}
	50% {
	  height: 50px;
	  opacity: 1;
	}
}

.envira-gallery-wrap .envira-gallery-public.envira-gallery-css-animations .envira-gallery-item img {
	border-radius: 0.5rem;
	overflow: hidden;
}
  

/******************************************************/
/******************* MEDIA QUERIES ********************/
/* Du plus grand vers le plus petit (1200px → 768px)   */
/******************************************************/

@media (max-width: 1200px) {
	.header-bottom .site-navigation-wrapper {
		order: 2;
	}
}

@media (max-width: 768px) {
	.header-bottom .btn {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
	}

	.hero-content {
		margin: 2rem auto;
	}
	.gallery-link-desktop { display: none; }
	.gallery-footer { display: block; }

	.video-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.video-item-large {
		grid-row: span 1;
		position: static;
	}
	.video-item-large .video-wrapper {
		position: relative;
		height: 0;
		padding-bottom: 56.25%;
	}
}

@media (min-width: 768px) {

	.hero-eyebrow { font-size: 1rem; }
	.hero-title { font-size: 4.5rem; }
	.hero-subtitle { font-size: 1.25rem; }
	.hero-content .btn { display: inline-block; margin-right: 0.5rem; }

	#dates .section-title { font-size: 3.75rem; }
	.dates-card { flex-direction: row; padding: 2rem; }
	.dates-main { margin-bottom: 0; width: auto; }

	.bio-grid { grid-template-columns: 1fr 1fr; }
	.bio-media { order: 1; }
	.bio-content { order: 2; }

	.news .section-title { font-size: 3.75rem; }
	.news-grid { grid-template-columns: repeat(3, 1fr); }

	.gallery-head { flex-direction: row; }
	.gallery-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
	.gallery-footer { display: none; }

	.cta-title { font-size: 3rem; }
	.cta-text { font-size: 1.25rem; }

	.single-title { font-size: 2.75rem; }
	.single-article-inner { gap: 2.5rem; }

	.page-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
	.hero-title { font-size: 5rem; }
}

@media screen and (max-width: 550px) {
	.header-bottom .tg-container {
		justify-content: center;
		gap: 0 36px;
	}
}

@media screen and (max-width: 500px) {
	.hero-content {
		margin: 0rem auto;
	}

	.hero-title {
		display: block;
	}

    .contact-form form .fields {
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width: 450px) {
	.header-bottom .tg-container {
		gap: 0 24px;
	}
}