/* ==========================================================================
   Rayo · Desarrollo Web (rediseño creativo)
   ========================================================================== */

.rw-sp {
	--ink: #0a1326;
	--ink-2: #07112a;
	--paper: #f3eee7;
	--paper-2: #fffaf2;
	--acid: #ff7a1a;
	--acid-2: #ffb400;
	--muted: #6f6b64;
	--line: rgba(17, 17, 24, 0.12);
	--lineL: rgba(255, 255, 255, 0.14);
	background: var(--paper);
	color: var(--ink);
	font-family: "Nunito Sans", sans-serif;
	overflow-x: hidden;
}

.rw-sp *,
.rw-sp *::before,
.rw-sp *::after {
	box-sizing: border-box;
}

.rw-sp-container {
	width: min(1200px, calc(100% - 44px));
	margin: 0 auto;
}

.rw-sp h1,
.rw-sp h2,
.rw-sp h3 {
	font-family: "Montserrat", sans-serif;
	letter-spacing: -0.04em;
	margin: 0;
	color: var(--ink);
}

/* Garantiza visibilidad sobre fondos oscuros (gana al CSS del tema padre) */
#rw-sp .rw-sp-hero__title,
#rw-sp .rw-sp-hero h1,
#rw-sp .rw-sp-truth__col--good h2,
#rw-sp .rw-sp-process h2,
#rw-sp .rw-sp-process h3,
#rw-sp .rw-sp-cta__inner h2,
#rw-sp .rw-sp-step h3 {
	color: #ffffff;
}

/* Botones */
.rw-sp-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 26px;
	border-radius: 999px;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rw-sp-btn--primary {
	background: linear-gradient(135deg, var(--acid), var(--acid-2));
	color: #fff;
	box-shadow: 0 14px 32px rgba(255, 122, 26, 0.32);
}

/* Fuerza el texto blanco de los CTA (gana al CSS del tema padre) */
#rw-sp a.rw-sp-btn--primary,
#rw-sp a.rw-sp-btn--primary span,
#rw-sp a.rw-sp-btn--ghost,
#rw-sp a.rw-sp-btn--ghost span,
#rw-sp a.rw-sp-btn--dark,
#rw-sp a.rw-sp-btn--dark span {
	color: #ffffff;
}

#rw-sp a.rw-sp-btn--light,
#rw-sp a.rw-sp-btn--light span {
	color: var(--ink);
}

.rw-sp-btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(255, 122, 26, 0.42);
}

.rw-sp-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

.rw-sp-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
}

.rw-sp-btn--dark {
	background: var(--ink);
	color: #fff;
}

.rw-sp-btn--dark:hover {
	transform: translateY(-3px);
	box-shadow: 8px 8px 0 var(--acid);
}

.rw-sp-btn--light {
	background: #fff;
	color: var(--ink);
}

.rw-sp-btn--light:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Encabezados de sección */
.rw-sp-section {
	padding: 110px 0;
}

.rw-sp-head {
	max-width: 720px;
	margin-bottom: 56px;
}

.rw-sp-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.rw-sp-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--acid);
	margin-bottom: 18px;
}

.rw-sp-kicker--light {
	color: var(--acid-2);
}

.rw-sp-head h2 {
	font-size: clamp(34px, 4.6vw, 60px);
	line-height: 0.98;
}

.rw-sp-head p {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.6;
}

.rw-sp-head .rw-sp-btn {
	margin-top: 26px;
}

.rw-sp-accent {
	color: var(--acid);
}

/* ============================ HERO ============================ */
.rw-sp-hero {
	position: relative;
	padding: 190px 0 120px;
	background: radial-gradient(120% 120% at 75% -10%, #2a1a12 0%, var(--ink) 42%, #0f1828 100%);
	color: #fff;
	overflow: hidden;
}

.rw-sp-hero__mesh {
	position: absolute;
	inset: -20% -10% auto -10%;
	height: 80%;
	background:
		radial-gradient(40% 50% at 20% 30%, rgba(255, 122, 26, 0.35), transparent 60%),
		radial-gradient(35% 45% at 75% 20%, rgba(80, 130, 255, 0.35), transparent 60%),
		radial-gradient(30% 40% at 60% 70%, rgba(255, 180, 0, 0.25), transparent 60%);
	filter: blur(30px);
	opacity: 0.9;
	animation: rwDwFloat 14s ease-in-out infinite alternate;
}

@keyframes rwDwFloat {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to { transform: translate3d(0, -24px, 0) scale(1.05); }
}

.rw-sp-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: radial-gradient(80% 80% at 50% 30%, black, transparent 80%);
	opacity: 0.5;
}

.rw-sp-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.rw-sp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
	padding: 8px 16px;
	border: 1px solid var(--lineL);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	margin-bottom: 26px;
}

.rw-sp-eyebrow i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--acid);
	box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.25);
}

.rw-sp-hero__title {
	font-size: clamp(40px, 6vw, 82px);
	line-height: 0.96;
	margin: 0 0 22px;
}

.rw-sp-hero__lead {
	max-width: 560px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 19px;
	line-height: 1.6;
	margin: 0 0 34px;
}

.rw-sp-hero__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 46px;
}

.rw-sp-hero__stats {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.rw-sp-hero__stats strong {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	line-height: 1;
}

.rw-sp-hero__stats span {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

/* Browser mock */
.rw-sp-hero__visual {
	position: relative;
}

.rw-sp-browser {
	border-radius: 20px;
	overflow: hidden;
	background: #0e1933;
	border: 1px solid var(--lineL);
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
	transition: transform 0.25s ease;
}

.rw-sp-browser__bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid var(--lineL);
}

.rw-sp-browser__bar span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #44507a;
}

.rw-sp-browser__bar span:nth-child(1) { background: #ff5f57; }
.rw-sp-browser__bar span:nth-child(2) { background: #febc2e; }
.rw-sp-browser__bar span:nth-child(3) { background: #28c840; }

.rw-sp-browser__url {
	margin-left: 12px;
	flex: 1;
	height: 26px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	display: flex;
	align-items: center;
	padding: 0 12px;
}

.rw-sp-browser__view {
	padding: 22px;
	display: grid;
	gap: 14px;
}

.rw-sp-skel {
	border-radius: 10px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
	background-size: 200% 100%;
	animation: rwDwShimmer 1.8s linear infinite;
}

@keyframes rwDwShimmer {
	to { background-position: -200% 0; }
}

.rw-sp-skel--hero { height: 120px; border-radius: 14px; background-image: linear-gradient(120deg, rgba(255,122,26,.5), rgba(80,130,255,.4)); }
.rw-sp-skel--line { height: 14px; }
.rw-sp-skel--line.w80 { width: 80%; }
.rw-sp-skel--line.w60 { width: 60%; }
.rw-sp-skel-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; }
.rw-sp-skel--card { height: 80px; }

.rw-sp-chip {
	position: absolute;
	padding: 12px 16px;
	border-radius: 14px;
	background: rgba(255, 250, 242, 0.95);
	color: var(--ink);
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
	animation: rwDwBob 4s ease-in-out infinite;
}

.rw-sp-chip b { color: var(--acid); margin-right: 6px; }
.rw-sp-chip--1 { top: 8%; left: -7%; }
.rw-sp-chip--2 { bottom: 16%; left: -4%; animation-delay: 0.8s; }
.rw-sp-chip--3 { top: 24%; right: -6%; animation-delay: 1.6s; }

@keyframes rwDwBob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* ============================ MARQUEE ============================ */
.rw-sp-marquee {
	background: var(--ink);
	color: #fff;
	padding: 22px 0;
	overflow: hidden;
	border-top: 1px solid var(--lineL);
	border-bottom: 1px solid var(--lineL);
}

.rw-sp-marquee__track {
	display: flex;
	align-items: center;
	gap: 26px;
	white-space: nowrap;
	width: max-content;
	animation: rwDwScroll 28s linear infinite;
	font-family: "Montserrat", sans-serif;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.rw-sp-marquee__track i { color: var(--acid); font-style: normal; font-size: 12px; }

@keyframes rwDwScroll {
	to { transform: translateX(-50%); }
}

/* ============================ CAPACIDADES ============================ */
.rw-sp-cap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.rw-sp-cap {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 26px;
	background: var(--paper-2);
	border: 1px solid var(--line);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	will-change: transform;
}

.rw-sp-cap:hover {
	border-color: rgba(255, 122, 26, 0.5);
	box-shadow: 0 22px 50px rgba(17, 17, 24, 0.1);
}

.rw-sp-cap__num {
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	background: var(--ink);
	border-radius: 10px;
	padding: 6px 10px;
	margin-bottom: 18px;
}

.rw-sp-cap h3 {
	font-size: 26px;
	margin-bottom: 10px;
}

.rw-sp-cap p {
	color: var(--muted);
	line-height: 1.55;
	margin: 0;
}

.rw-sp-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.rw-sp-tags li {
	font-size: 12px;
	font-weight: 800;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 122, 26, 0.12);
	color: #b9560f;
}

/* Tarjetas con foto uniformes */
.rw-sp-cap__media {
	position: relative;
	height: 180px;
	overflow: hidden;
	flex: 0 0 auto;
}
.rw-sp-cap__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.rw-sp-cap:hover .rw-sp-cap__media img { transform: scale(1.06); }

.rw-sp-cap__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 28px 30px 32px;
}
.rw-sp-cap__body .rw-sp-cap__num { align-self: flex-start; }

/* ============================ SHOWCASE (banda con foto) ============================ */
.rw-sp-showcase {
	position: relative;
	padding: 120px 0;
	color: #fff;
	overflow: hidden;
}

.rw-sp-showcase__media { position: absolute; inset: 0; z-index: 0; }
.rw-sp-showcase__img { width: 100%; height: 100%; object-fit: cover; }
.rw-sp-showcase__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(7, 17, 42, 0.94) 0%, rgba(7, 17, 42, 0.82) 42%, rgba(7, 17, 42, 0.4) 100%);
}

.rw-sp-showcase__inner { position: relative; z-index: 2; max-width: 600px; }
#rw-sp .rw-sp-showcase__inner h2 { color: #fff; font-size: clamp(32px, 4.4vw, 56px); line-height: 1; margin-bottom: 16px; }
.rw-sp-showcase__inner p { color: rgba(255, 255, 255, 0.82); font-size: 18px; line-height: 1.6; margin: 0 0 28px; }

/* ============================ PROCESO ============================ */
.rw-sp-process {
	background: var(--ink);
	color: #fff;
}

.rw-sp-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	position: relative;
}

.rw-sp-step {
	position: relative;
	padding: 30px 26px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--lineL);
}

.rw-sp-step__dot {
	position: absolute;
	top: 30px;
	right: 26px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--acid);
	box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.2);
}

.rw-sp-step b {
	font-family: "Montserrat", sans-serif;
	font-size: 50px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.16);
	letter-spacing: -0.05em;
	line-height: 1;
}

.rw-sp-step h3 {
	font-size: 22px;
	margin: 12px 0 8px;
}

.rw-sp-step p {
	color: rgba(255, 255, 255, 0.66);
	line-height: 1.5;
	margin: 0;
	font-size: 15px;
}

/* ============================ MÉTRICAS ============================ */
.rw-sp-metrics__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.rw-sp-metrics__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.rw-sp-metric {
	padding: 34px 26px;
	border-radius: 22px;
	background: var(--paper-2);
	border: 1px solid var(--line);
	text-align: center;
}

.rw-sp-metric strong {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -0.05em;
	background: linear-gradient(135deg, var(--acid), var(--acid-2));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}

.rw-sp-metric span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-weight: 700;
	font-size: 14px;
}

/* ============================ STACK ============================ */
.rw-sp-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto;
}

.rw-sp-stack span {
	padding: 13px 20px;
	border-radius: 999px;
	background: var(--paper-2);
	border: 1px solid var(--line);
	font-weight: 800;
	font-size: 14px;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rw-sp-stack span:hover {
	transform: translateY(-3px);
	border-color: var(--acid);
	box-shadow: 0 10px 20px rgba(255, 122, 26, 0.16);
}

/* ============================ FAQ ============================ */
.rw-sp-faq__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 40px;
	align-items: start;
}

.rw-sp-faq__list {
	display: grid;
	gap: 12px;
}

.rw-sp-faq__list details {
	padding: 22px 24px;
	border-radius: 18px;
	background: var(--paper-2);
	border: 1px solid var(--line);
	transition: border-color 0.2s ease;
}

.rw-sp-faq__list details:hover { border-color: rgba(255, 122, 26, 0.4); }

.rw-sp-faq__list summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 17px;
}

.rw-sp-faq__list summary::-webkit-details-marker { display: none; }
.rw-sp-faq__list summary::after { content: "+"; color: var(--acid); font-size: 22px; line-height: 1; }
.rw-sp-faq__list details[open] summary::after { content: "\2212"; }
.rw-sp-faq__list p { margin: 14px 0 0; color: var(--muted); line-height: 1.6; }

/* ============================ CTA ============================ */
.rw-sp-cta {
	padding: 0 0 110px;
}

.rw-sp-cta__inner {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 80px 40px;
	border-radius: 36px;
	color: #fff;
	background:
		radial-gradient(120% 140% at 50% -20%, #12224a, var(--ink) 60%);
	border: 1px solid var(--lineL);
}

.rw-sp-cta__inner::before {
	content: "";
	position: absolute;
	inset: -40% 30% auto 30%;
	height: 70%;
	background: radial-gradient(50% 60% at 50% 30%, rgba(255, 122, 26, 0.5), transparent 70%);
	filter: blur(40px);
}

.rw-sp-cta__inner h2 {
	position: relative;
	font-size: clamp(32px, 5vw, 58px);
	margin-bottom: 16px;
}

.rw-sp-cta__inner p {
	position: relative;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	max-width: 540px;
	margin: 0 auto 30px;
}

.rw-sp-cta__inner .rw-sp-btn { position: relative; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
	.rw-sp-hero__inner,
	.rw-sp-metrics__grid,
	.rw-sp-faq__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.rw-sp-hero { padding: 150px 0 90px; }
	.rw-sp-hero__visual { margin-top: 20px; }
	.rw-sp-cap-grid { grid-template-columns: repeat(2, 1fr); }
	.rw-sp-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.rw-sp-section { padding: 76px 0; }
	.rw-sp-cap-grid { grid-template-columns: 1fr; }
	.rw-sp-steps { grid-template-columns: 1fr; }
	.rw-sp-metrics__cards { grid-template-columns: 1fr; }
	.rw-sp-hero__stats { gap: 26px; }
}

/* ============================ PYME · Hero fotos ============================ */
.rw-sp-hero__photos {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.82fr;
	grid-template-rows: auto auto;
	gap: 14px;
	max-width: 420px;
	margin-left: auto;
}

.rw-sp-hero__photo {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.rw-sp-hero__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rw-sp-hero__photo--main {
	grid-row: 1 / span 2;
	min-height: 340px;
}

.rw-sp-hero__photo--sm1,
.rw-sp-hero__photo--sm2 {
	min-height: 160px;
}

/* ============================ PYME · Problema / solución ============================ */
.rw-sp-truth__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.rw-sp-truth__col {
	padding: 36px 32px;
	border-radius: 20px;
	border: 1px solid var(--line);
	background: #fff;
}

.rw-sp-truth__col--bad {
	background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}

.rw-sp-truth__col--good {
	background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.1);
}

.rw-sp-truth__col h2 {
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.08;
	margin-bottom: 20px;
}

.rw-sp-truth__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rw-sp-truth__col li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.55;
	color: var(--muted);
}

.rw-sp-truth__col--good li {
	color: rgba(255, 255, 255, 0.78);
}

.rw-sp-truth__col li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--acid);
}

/* ============================ PYME · Sectores ============================ */
.rw-sp-sectors {
	background: var(--ink);
	color: #fff;
}

.rw-sp-sectors .rw-sp-head h2 {
	color: #fff;
}

.rw-sp-sectors__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.rw-sp-sector {
	padding: 28px 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.rw-sp-sector:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 122, 26, 0.45);
}

.rw-sp-sector h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #fff;
}

.rw-sp-sector p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991px) {
	.rw-sp-hero__photos {
		max-width: 100%;
		margin-inline: auto;
	}
	.rw-sp-truth__grid {
		grid-template-columns: 1fr;
	}
	.rw-sp-sectors__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.rw-sp-hero__photos {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.rw-sp-hero__photo--main {
		grid-row: auto;
		min-height: 220px;
	}
	.rw-sp-sectors__grid {
		grid-template-columns: 1fr;
	}
}
