/*
Theme Name: Loop1 Child
Template: twentytwentyfive
Description: Custom child theme for Loop1 demo front page
Version: 1.0.0
Text Domain: loop1-child

Styles for:
- Custom CSS variables (colors, typography)
- Header layout (.loop1-header)
- Hero section (.loop1-hero)
- Search strip (.loop1-search)
- Navigation and button styles
*/

/* ========================================
   CSS Variables
   ======================================== */
:root {
	--loop1-orange: #F07A21;
	--loop1-black: #0f0f10;
	--loop1-dark: #151517;
	--loop1-text: #111;
	--loop1-radius: 12px;
	--loop1-text-light: #d9d9d9;
	--loop1-white: #ffffff;
	--loop1-hero-height: 580px;
}

/* ========================================
   Typography
   ======================================== */
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-weight: 700;
}

h1 {
	font-weight: 700;
}

h2, h3 {
	font-weight: 600;
}

/* ========================================
   Header Styles
   ======================================== */
.loop1-header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: var(--loop1-white);
	border-bottom: 1px solid #e8e8e8;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	min-height: 92px;
}

.loop1-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
	min-height: 92px;
}

.loop1-header-logo {
	width: 50px;
	height: 50px;
	background: var(--loop1-black);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--loop1-white);
	font-size: 28px;
	font-weight: 700;
	flex-shrink: 0;
}

.loop1-header-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	justify-content: center;
}

.loop1-header-nav > li {
	position: relative;
}

.loop1-header-nav a {
	text-decoration: none;
	color: var(--loop1-text);
	font-weight: 500;
	font-size: 15px;
	transition: color 0.3s ease;
	display: block;
	padding: 8px 0;
}

.loop1-header-nav a:hover {
	color: var(--loop1-orange);
}

/* Dropdown menu styles */
.loop1-header-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--loop1-white);
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	min-width: 220px;
	padding: 12px 0;
	margin-top: 8px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	z-index: 1000;
}

.loop1-header-nav li:hover > .sub-menu,
.loop1-header-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.loop1-header-nav .sub-menu li {
	margin: 0;
}

.loop1-header-nav .sub-menu a {
	padding: 12px 24px;
	color: var(--loop1-text);
	font-size: 14px;
	transition: background 0.2s ease, color 0.2s ease;
}

.loop1-header-nav .sub-menu a:hover {
	background: #f8f8f8;
	color: var(--loop1-orange);
}

.loop1-header-contact {
	background: var(--loop1-orange);
	color: var(--loop1-white);
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.03em;
	transition: background 0.3s ease;
	flex-shrink: 0;
}

.loop1-header-contact:hover {
	background: #d96512;
}

/* ========================================
   Hero Section
   ======================================== */
.loop1-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 580px;
	margin-bottom: 90px;
	max-width: 100%;
}

.loop1-hero__left {
	background: #111;
	padding: 72px 64px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.loop1-hero__right {
	background-size: cover;
	background-position: center;
	min-height: 580px;
	object-fit: cover;
}

.loop1-hero__title {
	font-size: 5rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.92;
	margin: 0 0 1.8rem 0;
	letter-spacing: 0.01em;
	max-width: 500px;
}

.loop1-hero__title-line1 {
	color: var(--loop1-orange);
	display: block;
	margin-bottom: 0.05em;
}

.loop1-hero__title-line2 {
	color: var(--loop1-white);
	display: block;
}

.loop1-hero__text {
	color: #b8b8b8;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	font-weight: 400;
	max-width: 460px;
}

.loop1-hero__cta {
	display: inline-block;
	padding: 14px 28px;
	background: var(--loop1-white);
	color: var(--loop1-black);
	text-decoration: none;
	font-weight: 700;
	border-radius: 10px;
	transition: all 0.3s ease;
	align-self: flex-start;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.05em;
}

.loop1-hero__cta:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Legacy support */
.loop1-hero-title {
	font-size: 5.5rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.9;
	margin: 0 0 2rem 0;
	letter-spacing: 0.01em;
	max-width: 520px;
}

.loop1-hero-title-accent {
	color: var(--loop1-orange);
	display: block;
	font-size: 5.5rem;
	margin-bottom: 0.05em;
}

.loop1-hero-title-white {
	color: var(--loop1-white);
	display: block;
	font-size: 5.5rem;
}

.loop1-hero-text {
	color: #b8b8b8;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	font-weight: 400;
	max-width: 460px;
}

.loop1-hero-button {
	display: inline-block;
	padding: 14px 28px;
	background: var(--loop1-white);
	color: var(--loop1-black);
	text-decoration: none;
	font-weight: 700;
	border-radius: 10px;
	transition: all 0.3s ease;
	align-self: flex-start;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.05em;
}

.loop1-hero-button:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Legacy class names for backwards compatibility */
.loop1-hero-content {
	background: var(--loop1-black);
	padding: 72px 64px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.loop1-hero-image {
	background-size: cover;
	background-position: center;
	min-height: 100%;
}

/* ========================================
   Search Strip
   ======================================== */
.loop1-search {
	position: relative;
	margin-top: -65px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	padding: 0 32px;
	z-index: 100;
}

.loop1-searchbar {
	background: #0d0d0e;
	padding: 14px;
	border-radius: 10px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	display: grid;
	grid-template-columns: 2fr 1fr 1fr auto;
	gap: 12px;
	align-items: stretch;
}

.loop1-searchbar__field,
.loop1-searchbar__select {
	height: 58px;
	border-radius: 10px;
	background: var(--loop1-white);
	padding: 0 20px;
	border: none;
	font-size: 15px;
	font-family: 'Inter', sans-serif;
	color: var(--loop1-text);
	width: 100%;
}

.loop1-searchbar__field {
	min-width: 0;
}

.loop1-searchbar__select {
	min-width: 160px;
}

.loop1-searchbar__field::placeholder {
	color: #888;
}

.loop1-searchbar__field:focus,
.loop1-searchbar__select:focus {
	outline: 2px solid var(--loop1-orange);
	outline-offset: -2px;
}

.loop1-searchbar__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 48px;
	cursor: pointer;
}

.loop1-searchbar__button {
	height: 58px;
	min-width: 220px;
	background: var(--loop1-orange);
	color: var(--loop1-white);
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.loop1-searchbar__button:hover {
	background: #d96512;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(240, 122, 33, 0.4);
}

/* Legacy class names for backwards compatibility */
.loop1-search-form {
	background: #0d0d0e;
	padding: 18px;
	border-radius: 10px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
}

.loop1-search-field {
	flex: 1;
	min-width: 200px;
}

.loop1-search-label {
	display: block;
	color: var(--loop1-text-light);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.loop1-search-input,
.loop1-search-select {
	width: 100%;
	height: 58px;
	padding: 0 18px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	background: var(--loop1-white);
	color: var(--loop1-text);
}

.loop1-search-button {
	height: 58px;
	min-width: 220px;
	padding: 0 28px;
	background: var(--loop1-orange);
	color: var(--loop1-white);
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.loop1-search-button:hover {
	background: #d66a1a;
	transform: translateY(-1px);
}

/* ========================================
   Hero Scroll Hint
   ======================================== */
.loop1-hero__scroll-hint {
	position: absolute;
	bottom: 32px;
	left: 72px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 10;
}

.loop1-hero__scroll-text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

/* ========================================
   Section Base Styles
   ======================================== */
body.home .loop1-section {
	padding: 64px 0;
}

body.home .loop1-section-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
}

body.home .loop1-section__heading {
	font-size: 2.25rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--loop1-black);
	margin-bottom: 40px;
	text-align: center;
	letter-spacing: 0.02em;
}

/* ========================================
   Category Tiles Section
   ======================================== */
body.home .loop1-categories {
	background: #f8f8f8;
	padding: 56px 0;
}

body.home .loop1-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

body.home .loop1-tile {
	background: var(--loop1-white);
	padding: 28px 28px;
	border-radius: 10px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
	border: 1px solid #e8e8e8;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

body.home .loop1-tile::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--loop1-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

body.home .loop1-tile:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border-color: var(--loop1-orange);
}

body.home .loop1-tile:hover::before {
	transform: scaleX(1);
}

body.home .loop1-tile__title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--loop1-black);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

body.home .loop1-tile__icon {
	font-size: 1.5rem;
	color: var(--loop1-orange);
	font-weight: 300;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

body.home .loop1-tile:hover .loop1-tile__icon {
	transform: translateX(6px);
}

/* ========================================
   Editorial Section (Image + Text Split)
   ======================================== */
body.home .loop1-editorial {
	background: var(--loop1-white);
	padding: 64px 0;
}

body.home .loop1-editorial__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

body.home .loop1-editorial__image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

body.home .loop1-editorial__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	min-height: 400px;
}

body.home .loop1-editorial__eyebrow {
	display: block;
	color: var(--loop1-orange);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

body.home .loop1-editorial__heading {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--loop1-black);
	margin: 0 0 24px 0;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.1;
}

body.home .loop1-editorial__description {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 32px;
}

body.home .loop1-editorial__button {
	display: inline-block;
	padding: 14px 32px;
	background: var(--loop1-orange);
	color: var(--loop1-white);
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.05em;
	border-radius: 10px;
	transition: all 0.3s ease;
}

body.home .loop1-editorial__button:hover {
	background: #d96512;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(240, 122, 33, 0.4);
}

/* ========================================
   Vacancy Cards Section
   ======================================== */
body.home .loop1-vacancies {
	background: #f8f8f8;
	padding: 64px 0;
}

body.home .loop1-vacancy-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 24px;
}

body.home .loop1-card {
	background: var(--loop1-white);
	padding: 32px;
	border-radius: 12px;
	border: 1px solid #e8e8e8;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

body.home .loop1-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
	border-color: var(--loop1-orange);
}

body.home .loop1-card__title {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--loop1-black);
	margin: 0 0 8px 0;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

body.home .loop1-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 0.9375rem;
	color: #666;
	margin-bottom: 8px;
}

body.home .loop1-card__location,
body.home .loop1-card__type,
body.home .loop1-card__level {
	font-weight: 500;
}

body.home .loop1-card__separator {
	color: #ccc;
	font-weight: 300;
}

body.home .loop1-card__link {
	color: var(--loop1-orange);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9375rem;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: auto;
	transition: gap 0.3s ease;
}

body.home .loop1-card:hover .loop1-card__link {
	gap: 8px;
}

/* ========================================
   CTA Banner
   ======================================== */
body.home .loop1-cta-band {
	background: linear-gradient(135deg, var(--loop1-black) 0%, var(--loop1-dark) 100%);
	padding: 72px 0;
	text-align: center;
}

body.home .loop1-cta-band__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 32px;
}

body.home .loop1-cta-band__title {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--loop1-white);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 18px 0;
	line-height: 1.1;
}

body.home .loop1-cta-band__text {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

body.home .loop1-cta-band__button {
	display: inline-block;
	padding: 15px 44px;
	background: var(--loop1-orange);
	color: var(--loop1-white);
	text-decoration: none;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.05em;
	border-radius: 10px;
	transition: all 0.3s ease;
}

body.home .loop1-cta-band__button:hover {
	background: #d96512;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(240, 122, 33, 0.5);
}

/* ========================================
   Testimonials Section
   ======================================== */
body.home .loop1-testimonials {
	background: var(--loop1-white);
	padding: 80px 0;
}

body.home .loop1-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 32px;
}

body.home .loop1-testimonial-card {
	background: var(--loop1-white);
	padding: 40px 32px;
	border-radius: 12px;
	border: 1px solid #e8e8e8;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: all 0.3s ease;
	position: relative;
}

body.home .loop1-testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--loop1-orange);
	border-radius: 12px 12px 0 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

body.home .loop1-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
	border-color: var(--loop1-orange);
}

body.home .loop1-testimonial-card:hover::before {
	transform: scaleX(1);
}

body.home .loop1-testimonial-card__header {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

body.home .loop1-testimonial-card__name {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--loop1-black);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

body.home .loop1-testimonial-card__role {
	font-size: 0.9375rem;
	color: var(--loop1-orange);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

body.home .loop1-testimonial-card__quote {
	font-size: 1rem;
	line-height: 1.7;
	color: #444;
	margin: 0;
	flex: 1;
	font-style: italic;
}

body.home .loop1-testimonial-card__cta {
	color: var(--loop1-orange);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9375rem;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	align-self: flex-start;
	transition: gap 0.3s ease;
	text-transform: none;
}

body.home .loop1-testimonial-card:hover .loop1-testimonial-card__cta {
	gap: 8px;
}

/* ========================================
   Footer Styles
   ======================================== */
.loop1-footer {
	background: var(--loop1-black);
	color: rgba(255, 255, 255, 0.8);
}

.loop1-footer__main {
	padding: 56px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.loop1-footer__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 64px;
}

.loop1-footer__col--wide {
	grid-column: span 1;
}

.loop1-footer__heading {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--loop1-white);
	margin: 0 0 18px 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.loop1-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.loop1-footer__link {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color 0.3s ease;
}

.loop1-footer__link:hover {
	color: var(--loop1-orange);
}

.loop1-footer__contact-item {
	margin: 0 0 14px 0;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.loop1-footer__contact-item strong {
	color: var(--loop1-white);
	font-weight: 600;
}

.loop1-footer__description {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.loop1-footer__bottom {
	padding: 22px 0;
	background: rgba(0, 0, 0, 0.3);
}

.loop1-footer__copyright {
	margin: 0;
	text-align: center;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 1200px) {
	.loop1-searchbar {
		grid-template-columns: 2fr 1fr 1fr auto;
	}

	body.home .loop1-tiles {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 18px;
	}

	body.home .loop1-editorial__content {
		gap: 48px;
	}

	body.home .loop1-vacancy-cards {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 20px;
	}

	body.home .loop1-testimonial-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 28px;
	}

	.loop1-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
	}
}

@media (max-width: 900px) {
	.loop1-header-inner {
		flex-direction: column;
		gap: 1.5rem;
		min-height: auto;
		padding: 1.5rem;
	}

	.loop1-header-nav {
		flex-direction: column;
		gap: 1rem;
		width: 100%;
	}

	.loop1-header-nav > li {
		width: 100%;
		text-align: center;
	}

	.loop1-header-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		margin-top: 8px;
		padding: 8px 0;
		background: #f8f8f8;
	}

	.loop1-hero {
		grid-template-columns: 1fr;
		margin-bottom: 70px;
	}

	.loop1-hero__left,
	.loop1-hero-content {
		padding: 52px 36px;
	}

	.loop1-hero__right {
		min-height: 380px;
	}

	.loop1-hero__title,
	.loop1-hero-title,
	.loop1-hero-title-accent,
	.loop1-hero-title-white {
		font-size: 3.25rem;
	}

	.loop1-hero__scroll-hint {
		left: 36px;
		bottom: 22px;
	}

	.loop1-search {
		margin-top: -45px;
		padding: 0 1.5rem;
	}

	.loop1-searchbar,
	.loop1-search-form {
		grid-template-columns: 1fr;
		padding: 18px;
		gap: 12px;
	}

	.loop1-searchbar__field,
	.loop1-searchbar__select,
	.loop1-searchbar__button,
	.loop1-search-input,
	.loop1-search-select,
	.loop1-search-button {
		width: 100%;
		min-width: 100%;
	}

	body.home .loop1-section {
		padding: 52px 0;
	}

	body.home .loop1-section__heading {
		font-size: 1.875rem;
		margin-bottom: 32px;
	}

	body.home .loop1-tiles {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	body.home .loop1-editorial__content {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	body.home .loop1-editorial__heading {
		font-size: 1.875rem;
	}

	body.home .loop1-vacancy-cards {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	body.home .loop1-testimonial-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	body.home .loop1-cta-band {
		padding: 60px 0;
	}

	body.home .loop1-cta-band__title {
		font-size: 2.125rem;
	}

	body.home .loop1-cta-band__text {
		font-size: 1rem;
	}

	.loop1-footer__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.loop1-footer__col--wide {
		grid-column: span 1;
	}
}

@media (max-width: 600px) {
	.loop1-header-inner {
		padding: 1rem;
	}

	.loop1-hero__title,
	.loop1-hero-title,
	.loop1-hero-title-accent,
	.loop1-hero-title-white {
		font-size: 2.5rem;
	}

	.loop1-hero__left,
	.loop1-hero-content {
		padding: 36px 24px;
	}

	.loop1-hero__right {
		min-height: 300px;
	}

	.loop1-hero__scroll-hint {
		left: 24px;
		bottom: 18px;
	}

	.loop1-search {
		padding: 0 1rem;
	}

	body.home .loop1-section {
		padding: 44px 0;
	}

	body.home .loop1-section-inner {
		padding: 0 20px;
	}

	body.home .loop1-section__heading {
		font-size: 1.625rem;
		margin-bottom: 24px;
	}

	body.home .loop1-tile {
		padding: 24px 20px;
		min-height: 70px;
	}

	body.home .loop1-tile__title {
		font-size: 1rem;
	}

	body.home .loop1-editorial__image img {
		min-height: 260px;
	}

	body.home .loop1-editorial__heading {
		font-size: 1.625rem;
	}

	body.home .loop1-card {
		padding: 22px;
	}

	body.home .loop1-card__title {
		font-size: 1.0625rem;
	}

	body.home .loop1-testimonial-card {
		padding: 32px 24px;
	}

	body.home .loop1-testimonial-card__name {
		font-size: 1.125rem;
	}

	body.home .loop1-cta-band {
		padding: 52px 0;
	}

	body.home .loop1-cta-band__title {
		font-size: 1.75rem;
	}

	body.home .loop1-cta-band__button {
		padding: 13px 32px;
		font-size: 13px;
	}

	.loop1-footer__main {
		padding: 44px 0;
	}

	.loop1-footer__inner {
		padding: 0 20px;
	}

	.loop1-footer__heading {
		font-size: 0.9375rem;
	}
}
