/*
	Theme Name: Story Room Child Theme
	Theme URI:
	Description: Child theme for the Story Room (Ellen Fischat) rebuild. Holds the project's design-system CSS custom properties and component styling.
	Author:
	Template: kadence
	Version: 0.1.0
	Requires at least: 6.0
	Requires PHP: 8.1
	Text Domain: story-child
*/

:root {
	/* Fonts — matched to the original site (Cormorant Garamond + Montserrat), loaded via functions.php */
	--sr-font-heading: "Cormorant Garamond", serif;
	--sr-font-body: "Montserrat", sans-serif;

	/* Colours — pulled from the original site's rendered CSS */
	--sr-color-charcoal: #32373c;
	--sr-color-blush: #de9f9f;
	--sr-color-blush-hover: #f0c2c2;
	--sr-color-cream: #eee0e0;
	--sr-color-offwhite: #f9f9f9;
	--sr-color-white: #ffffff;

	/* Exact typography values pulled from the original theme's modules.css
	   (body{...} and h1-h6{...} rules), not approximated */
	--sr-color-body-text: #696969;
	--sr-color-heading: #3b3b3b;
	--sr-color-h6: #000000;
}

/* ---------- Base typography ---------- */

body,
p,
li,
a,
span,
div {
	font-family: var(--sr-font-body) !important;
}

body {
	font-size: 14px;
	line-height: 1.71em;
	font-weight: 400;
	color: var(--sr-color-body-text);
}

p {
	font-weight: 300;
	margin: 10px 0;
}

h1, h2, h3, h4, h5, h6,
.sr-logo {
	font-family: var(--sr-font-heading) !important;
	font-weight: 400;
	color: var(--sr-color-heading);
	margin: 20px 0;
}

h1 { font-size: 50px; line-height: 1.18em; }
h2 { font-size: 30px; line-height: 1.17em; }
h3 { font-size: 25px; line-height: 1.08em; }
h4 { font-size: 20px; line-height: 1.33em; }
h5 { font-size: 18px; line-height: 1.3em; }
h6 { font-size: 16px; line-height: 1.3em; color: var(--sr-color-h6); }

a {
	color: var(--sr-color-heading);
}

a:hover {
	color: var(--sr-color-blush-hover);
}

.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
	background-color: var(--sr-color-blush);
	border-radius: 0;
	font-family: var(--sr-font-body);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.75rem;
}

.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	background-color: var(--sr-color-blush-hover);
}

/* ---------- Header ---------- */

.sr-header {
	padding: 24px 5%;
	background: var(--sr-color-white);
	position: relative;
	z-index: 10;
}

.sr-header--transparent {
	background: transparent !important;
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 12 !important;
}

.sr-header--transparent .sr-nav__list a {
	color: var(--sr-color-white);
}

.sr-header--transparent .sr-menu-toggle {
	color: var(--sr-color-white);
}

.sr-header:not(.sr-header--transparent) .sr-menu-toggle {
	color: var(--sr-color-heading);
}

.sr-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
}

.sr-logo {
	display: inline-block;
	line-height: 0;
}

.sr-logo img {
	display: block;
	height: 40px;
	width: auto;
}

.sr-nav__list {
	display: flex;
	list-style: none;
	gap: 32px;
	margin: 0;
	padding: 0;
}

.sr-nav__list a {
	font-family: var(--sr-font-body);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	position: relative;
	display: inline-block;
	padding-bottom: 4px;
}

.sr-nav__list a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transform-origin: left;
	transform: scale(0, 1);
	transition: transform 0.5s cubic-bezier(0.47, 0.94, 0.04, 0.98);
}

.sr-nav__list a:hover::after,
.sr-nav__list a[aria-current="page"]::after {
	transform: scale(1, 1);
}

/* ---------- Footer ---------- */

.sr-footer {
	background-color: var(--sr-color-charcoal);
	color: var(--sr-color-white);
	padding: 64px 5% 32px;
}

.sr-footer a {
	color: var(--sr-color-white);
}

.sr-footer a:hover {
	color: var(--sr-color-blush-hover);
}

.sr-footer__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	max-width: 1400px;
	margin: 0 auto;
}

.sr-footer__col {
	min-width: 0;
}

.sr-footer h6 {
	font-family: var(--sr-font-heading) !important;
	color: var(--sr-color-white);
	font-size: 25px;
	font-weight: 400;
	margin-bottom: 16px;
}

.sr-footer p {
	font-size: 0.85rem;
	line-height: 1.6;
	opacity: 0.85;
}

.sr-logo--footer {
	display: block;
	margin-bottom: 16px;
}

.sr-logo--footer img {
	height: 33px;
}

.sr-footer .wpcf7-form-control.wpcf7-text {
	background: transparent !important;
	color: var(--sr-color-white) !important;
	-webkit-appearance: none;
	appearance: none;
}

.sr-footer .wpcf7-form-control.wpcf7-text::placeholder {
	color: var(--sr-color-white);
	opacity: 0.7;
}

.sr-social {
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

.sr-social a {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	text-transform: uppercase;
	text-decoration: none;
}

html, body {
	overflow-x: hidden;
	max-width: 100%;
}

.sr-header,
.sr-footer,
.entry-content,
.site-main {
	max-width: 100%;
	box-sizing: border-box;
}

.sr-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	z-index: 20;
}

.sr-menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

body.sr-nav-is-open .sr-menu-toggle {
	color: var(--sr-color-white);
}

body.sr-nav-is-open .sr-menu-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.sr-nav-is-open .sr-menu-toggle span:nth-child(2) {
	opacity: 0;
}

body.sr-nav-is-open .sr-menu-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 780px) {
	.sr-menu-toggle {
		display: flex;
	}

	.sr-header__inner {
		flex-wrap: nowrap;
	}

	.sr-nav {
		position: fixed;
		inset: 0;
		background: var(--sr-color-charcoal);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
		z-index: 15;
	}

	body.sr-nav-is-open {
		overflow: hidden;
	}

	body.sr-nav-is-open .sr-nav {
		opacity: 1;
		visibility: visible;
	}

	.sr-nav__list {
		display: flex !important;
		flex-direction: column !important;
		align-items: center;
		gap: 28px !important;
	}

	.sr-nav__list a {
		color: var(--sr-color-white);
		font-size: 1rem;
	}

	.sr-footer__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.sr-footer__col,
	.sr-footer p,
	.entry-content p,
	.sr-two-col p,
	.sr-three-col p {
		max-width: 100%;
		word-wrap: break-word;
	}
}

.sr-two-col p,
.sr-three-col p {
	overflow-wrap: break-word;
}

/* ---------- Home page sections ---------- */

.sr-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 5%;
}

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

.sr-eyebrow {
	font-family: var(--sr-font-heading) !important;
	letter-spacing: 0.1em;
	font-size: 16px;
	font-weight: 400;
	color: var(--sr-color-h6);
	margin-bottom: 8px;
}

.sr-eyebrow::before {
	display: inline-block;
	vertical-align: super;
	height: 1px;
	width: 23px;
	background-color: var(--sr-color-blush-hover);
	transform: rotate(-17deg);
	content: "";
	margin-right: 8px;
}

.sr-section {
	padding: 80px 0;
}

.sr-plain-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sr-plain-list li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(50, 55, 60, 0.12);
	font-size: 1rem;
}

.sr-two-col {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	margin-top: 24px;
}

.sr-hero {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.sr-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: sr-hero-fade 18s infinite;
}

.sr-hero__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.sr-hero__slide--1 {
	animation-delay: 0s;
}

.sr-hero__slide--2 {
	animation-delay: 6s;
}

.sr-hero__slide--3 {
	animation-delay: 12s;
}

@keyframes sr-hero-fade {
	0% { opacity: 0; }
	5% { opacity: 1; }
	28% { opacity: 1; }
	36% { opacity: 0; }
	100% { opacity: 0; }
}

.sr-hero__overlay {
	position: relative;
	z-index: 2;
	color: var(--sr-color-white);
	padding: 0 5%;
	max-width: 900px;
	text-align: left;
	opacity: 0;
	animation: sr-hero-text-in 18s infinite;
}

.sr-hero__slide--1 .sr-hero__overlay { animation-delay: 0s; }
.sr-hero__slide--2 .sr-hero__overlay { animation-delay: 6s; }
.sr-hero__slide--3 .sr-hero__overlay { animation-delay: 12s; }

@keyframes sr-hero-text-in {
	0% { opacity: 0; transform: translateY(40px); }
	8% { opacity: 1; transform: translateY(0); }
	28% { opacity: 1; transform: translateY(0); }
	36% { opacity: 0; transform: translateY(0); }
	100% { opacity: 0; }
}

.sr-hero__dots {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}

.sr-hero__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	position: relative;
}

.sr-hero__dot::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 28px;
	height: 28px;
	transform: translate(-50%, -50%) scale(0);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	opacity: 0;
	animation: sr-hero-dot 18s infinite;
}

.sr-hero__dot--1::before {
	animation-delay: 0s;
}

.sr-hero__dot--2::before {
	animation-delay: 6s;
}

.sr-hero__dot--3::before {
	animation-delay: 12s;
}

@keyframes sr-hero-dot {
	0% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
	5% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
	28% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
	36% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
	100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
}

.sr-hero__overlay h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin: 0 0 16px;
	color: var(--sr-color-white);
}

.sr-hero__overlay .sr-eyebrow {
	color: var(--sr-color-blush-hover);
}

.sr-hero__overlay .sr-eyebrow::before {
	background-color: var(--sr-color-blush-hover);
}

.sr-hero__subtitle {
	font-family: var(--sr-font-body);
	font-size: 1rem;
	max-width: 500px;
	opacity: 0.9;
}

.sr-logo-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 32px;
	align-items: center;
	margin-top: 32px;
}

.sr-logo-grid img {
	max-width: 100%;
	height: auto;
	filter: grayscale(100%);
	opacity: 0.7;
}

.sr-section--testimonials {
	background: var(--sr-color-offwhite);
}

.sr-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.sr-testimonial {
	background: var(--sr-color-white);
	padding: 32px;
	margin: 0;
	text-align: center;
}

.sr-testimonial img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 16px;
}

.sr-testimonial p {
	font-family: var(--sr-font-heading) !important;
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 16px;
}

.sr-testimonial cite {
	font-style: normal;
	font-family: var(--sr-font-body);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sr-testimonial cite span {
	display: block;
	opacity: 0.6;
	font-size: 0.75rem;
	margin-top: 4px;
}

.sr-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	margin-top: 32px;
	text-align: center;
}

.sr-stat__num {
	display: block;
	font-family: var(--sr-font-heading) !important;
	font-size: 110px;
	font-weight: 400;
	line-height: 1em;
	color: #e1e1e1;
	padding: 1rem;
}

.sr-stat__label {
	font-family: var(--sr-font-body);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

.sr-team-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sr-team-strip__item {
	position: relative;
}

.sr-team-strip__item img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
	filter: grayscale(60%);
}

.sr-team-strip__item p {
	position: absolute;
	bottom: 16px;
	left: 16px;
	color: var(--sr-color-white);
	font-family: var(--sr-font-heading);
	font-style: italic;
	font-size: 1.1rem;
	margin: 0;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.sr-section--cta {
	background: var(--sr-color-blush);
}

.sr-section--cta h2 {
	color: var(--sr-color-white);
	max-width: 600px;
	margin: 0 auto 24px;
}

.sr-button {
	display: inline-block;
	background: var(--sr-color-charcoal);
	color: var(--sr-color-white);
	text-decoration: none;
	padding: 14px 32px;
	font-family: var(--sr-font-body);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
}

.sr-button:hover {
	background: var(--sr-color-charcoal);
	opacity: 0.85;
	color: var(--sr-color-white);
}

@media (max-width: 780px) {
	.sr-two-col,
	.sr-logo-grid,
	.sr-testimonial-grid,
	.sr-stats-grid,
	.sr-team-strip {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.sr-logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

/* ---------- Bio / three-col / collage / ethos / icon row / team mosaic ---------- */

.sr-two-col p,
.sr-three-col p {
	font-size: 0.95rem;
	line-height: 1.7;
}

.sr-three-col {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-top: 24px;
}

.sr-collage {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 4px;
}

.sr-collage img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
}

.sr-collage__large {
	grid-row: span 1;
}

.sr-ethos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--sr-color-offwhite);
}

.sr-ethos__image {
	min-height: 420px;
	background-size: cover;
	background-position: center;
}

.sr-ethos__text {
	padding: 80px 6%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sr-ethos__text h2 {
	font-size: 2rem;
	margin: 0 0 16px;
}

.sr-icon-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	text-align: left;
}

.sr-icon-item__num {
	width: auto;
	height: 90px;
	max-width: 100%;
	object-fit: contain;
	margin-bottom: 16px;
	opacity: 0.5;
}

.sr-icon-item h3 {
	font-size: 1.25rem;
	margin: 0 0 8px;
}

.sr-icon-item p {
	font-size: 0.9rem;
	opacity: 0.8;
}

.sr-team-mosaic {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sr-team-mosaic__photo {
	position: relative;
}

.sr-team-mosaic__photo img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}

.sr-team-mosaic__caption {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(50, 55, 60, 0.75);
	color: var(--sr-color-white);
	font-family: var(--sr-font-heading) !important;
	font-style: italic;
	font-size: 1.1rem;
	margin: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.sr-team-mosaic__photo:hover .sr-team-mosaic__caption {
	opacity: 1;
}

.sr-team-mosaic__caption span {
	display: block;
	font-family: var(--sr-font-body);
	font-style: normal;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.9;
	margin-top: 8px;
	padding: 0 16px;
}

.sr-team-mosaic__text {
	background: var(--sr-color-cream);
	padding: 40px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sr-team-mosaic__text h3 {
	font-size: 1.3rem;
	margin: 0 0 12px;
}

.sr-button--outline {
	background: transparent;
	border: 1px solid var(--sr-color-charcoal);
	color: var(--sr-color-charcoal);
	margin-top: 12px;
}

.sr-button--outline:hover {
	background: var(--sr-color-charcoal);
	color: var(--sr-color-white);
}

@media (max-width: 780px) {
	.sr-three-col,
	.sr-collage,
	.sr-ethos,
	.sr-icon-row,
	.sr-team-mosaic {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.sr-ethos__image {
		min-height: 280px;
	}
}

/* ---------- Inner pages (Services / Team / Contact) ---------- */

.sr-page-hero {
	min-height: 60vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0 5%;
}

.sr-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.sr-page-hero__overlay {
	position: relative;
	z-index: 1;
	max-width: 900px;
	color: var(--sr-color-white);
	text-align: left;
}

.sr-page-hero__overlay h1 {
	color: var(--sr-color-white);
	font-size: clamp(1.75rem, 4vw, 3rem);
}

.sr-page-hero__overlay p {
	font-size: 1rem;
	opacity: 0.9;
}

.sr-pullquote h1 {
	max-width: 900px;
}

.sr-portfolio-row {
	display: grid;
	gap: 4px;
	margin-top: 24px;
}

.sr-portfolio-row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sr-portfolio-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sr-portfolio-row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.sr-portfolio-row img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

.sr-portfolio-text {
	display: grid;
	gap: 40px;
	margin-top: 24px;
}

.sr-portfolio-text--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sr-portfolio-text--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sr-portfolio-text--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.sr-portfolio-text p {
	font-size: 0.9rem;
}

.sr-bio-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	margin-top: 32px;
}

.sr-bio-grid h2 {
	font-size: 1.5rem;
	margin: 4px 0 12px;
}

.sr-team-mosaic--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sr-section--cta {
	background: var(--sr-color-blush-hover);
	padding: 60px 0;
}

.sr-cta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}

.sr-cta-row h2 {
	color: var(--sr-color-white);
	margin: 0;
}

.sr-button--outline-white {
	display: inline-block;
	background: transparent;
	border: 1px solid var(--sr-color-white);
	color: var(--sr-color-white) !important;
	text-decoration: none;
	padding: 14px 32px;
	font-family: var(--sr-font-body);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
}

.sr-button--outline-white:hover {
	background: var(--sr-color-white);
	color: var(--sr-color-blush-hover) !important;
}

.sr-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 60px;
}

.sr-contact-info p {
	font-size: 1.1rem;
	margin: 0 0 8px;
}

.sr-social--dark a {
	color: var(--sr-color-heading);
	border-color: rgba(50, 55, 60, 0.3);
}

.sr-social--dark {
	margin-top: 32px;
}

.sr-contact-form input[type="text"],
.sr-contact-form input[type="email"],
.sr-contact-form textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid rgba(50, 55, 60, 0.25);
	padding: 12px 0;
	margin-bottom: 20px;
	font-family: var(--sr-font-body);
	background: transparent;
}

.sr-section--talk {
	background: var(--sr-color-offwhite);
}

.sr-talk-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.sr-talk-grid h2 {
	font-size: 1.1rem;
	margin: 0 0 8px;
}

.sr-talk-grid p {
	font-size: 0.85rem;
	margin: 0 0 4px;
}

@media (max-width: 780px) {
	.sr-portfolio-row--2,
	.sr-portfolio-row--3,
	.sr-portfolio-row--4,
	.sr-portfolio-text--2,
	.sr-portfolio-text--3,
	.sr-portfolio-text--4,
	.sr-bio-grid,
	.sr-team-mosaic--4,
	.sr-contact-grid,
	.sr-talk-grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.sr-cta-row {
		flex-direction: column;
		align-items: flex-start;
	}
}
