.mro-offer-form {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.mro-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.mro-stepper {
	margin: 0 0 32px;
}

.mro-stepper__list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, auto));
	gap: 16px;
	margin: 0;
	padding: 0;
}

.mro-stepper__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 14px 12px;
	color: #373234;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.2s ease;
}

/* Separator between stepper items using a pseudo-element */
.mro-stepper__item:not(:nth-child(4n))::after {
	content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    pointer-events: none;
    border-left: 1px solid #00000063;
    height: 60px;
}

.field-required::after {
	content: '*';
	color: red;
	margin-left: 5px;
}

@media (max-width: 768px) {
	.mro-stepper__list {
		display: block;
	}
	
	.mro-stepper__item:not(:nth-child(4n))::after {
		display: none;
	}
}


.mro-stepper__bullet {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50px;
	color: #e4032c;
	background: #fff;
	font-weight: 700;
}

.mro-stepper__label {
	font-size: 0.85rem;
	line-height: 1.3;
}

.mro-stepper__item.is-active .mro-stepper__bullet {
	background: #e4032c2c;
	color: #e4032c;
}


.mro-stepper__item.is-complete .mro-stepper__bullet {
	background: rgba(255, 255, 255, 0.85);
	color: #166534;
}

.mro-stepper__item.is-complete::after {
	background: #16a34aa8;
}

.mro-form-step {
	display: none;
	flex-direction: column;
	gap: 15px;
}

.mro-form-step.is-active {
	display: flex;
}

.mro-offer-form label {
	display: flex;
	flex-direction: column;
	font-weight: 600;
	gap: 4px;
}

.mro-offer-form input,
.mro-offer-form select,
.mro-offer-form textarea {
	padding: 8px 10px;
	border: 1px solid #d0d7de;
	border-radius: 6px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
}

.mro-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mro-step-intro {
	font-style: italic;
	margin-bottom: 12px;
	margin-top: 0;
}

.mro-field-help {
	font-size: 14px;
	color: #666;
	font-weight: 400;
}

.mro-form-navigation {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}


.mro-nav-button,
.mro-submit-button {
	background-color: var(--color-1);
	color: #fff;
	border: none;
	padding: 12px 18px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.mro-nav-button[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

.mro-nav-button--prev {
	background-color: #8792a2;
}

.mro-nav-button:hover,
.mro-submit-button:hover {
	background-color: var(--color-2);
}

.mro-nav-button--prev:hover {
	background-color: #6a7484;
}

.mro-notice {
	border-radius: 6px;
	padding: 16px 20px;
	margin-bottom: 20px;
}

.mro-notice--success {
	background-color: #e6f4ea;
	color: #135227;
}

.mro-notice--error {
	background-color: #fbe9e7;
	color: #a94442;
}

.mro-notice--error ul {
	margin: 0;
	padding-left: 18px;
}

.mro-offers-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mro-offer-card {
	border: 1px solid #d0d7de;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

.mro-offer-card__media img {
	display: block;
	width: 100%;
	height: auto;
}

.mro-offer-card__content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mro-offer-card__title {
	margin: 0;
	font-size: 1.25rem;
}

.mro-offer-card__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.95rem;
}

.mro-offer-card__excerpt {
	font-size: 0.95rem;
	color: #374151;
}

.mro-offer-card__pending {
	margin: 0;
	font-style: italic;
	color: #a94442;
}

.mro-offers-empty {
	text-align: center;
	font-style: italic;
	color: #6b7280;
}

.offer-detail {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mro-slider {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mro-slider__control {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mro-slider__viewport {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.mro-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(0.98);
	transition: opacity 0.4s ease, transform 0.4s ease;
	width: 100%;
	height: 100%;
	background: #0f172a;
	display: flex;
}

.mro-slider__slide a {
	display: flex;
	width: 100%;
	height: 100%;
}

.mro-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.mro-slider__control:nth-of-type(1):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(1),
.mro-slider__control:nth-of-type(2):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(2),
.mro-slider__control:nth-of-type(3):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(3),
.mro-slider__control:nth-of-type(4):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(4),
.mro-slider__control:nth-of-type(5):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(5),
.mro-slider__control:nth-of-type(6):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(6),
.mro-slider__control:nth-of-type(7):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(7),
.mro-slider__control:nth-of-type(8):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(8),
.mro-slider__control:nth-of-type(9):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(9),
.mro-slider__control:nth-of-type(10):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(10),
.mro-slider__control:nth-of-type(11):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(11),
.mro-slider__control:nth-of-type(12):checked ~ .mro-slider__viewport .mro-slider__slide:nth-of-type(12) {
	opacity: 1;
	transform: scale(1);
}

.mro-slider__nav {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.mro-slider__dot {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: #cbd5f5;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.mro-slider__dot:hover,
.mro-slider__dot:focus {
	transform: scale(1.2);
	background: #1d4ed8;
}

.mro-slider__control:nth-of-type(1):checked ~ .mro-slider__nav label:nth-of-type(1),
.mro-slider__control:nth-of-type(2):checked ~ .mro-slider__nav label:nth-of-type(2),
.mro-slider__control:nth-of-type(3):checked ~ .mro-slider__nav label:nth-of-type(3),
.mro-slider__control:nth-of-type(4):checked ~ .mro-slider__nav label:nth-of-type(4),
.mro-slider__control:nth-of-type(5):checked ~ .mro-slider__nav label:nth-of-type(5),
.mro-slider__control:nth-of-type(6):checked ~ .mro-slider__nav label:nth-of-type(6),
.mro-slider__control:nth-of-type(7):checked ~ .mro-slider__nav label:nth-of-type(7),
.mro-slider__control:nth-of-type(8):checked ~ .mro-slider__nav label:nth-of-type(8),
.mro-slider__control:nth-of-type(9):checked ~ .mro-slider__nav label:nth-of-type(9),
.mro-slider__control:nth-of-type(10):checked ~ .mro-slider__nav label:nth-of-type(10),
.mro-slider__control:nth-of-type(11):checked ~ .mro-slider__nav label:nth-of-type(11),
.mro-slider__control:nth-of-type(12):checked ~ .mro-slider__nav label:nth-of-type(12) {
	background: #1d4ed8;
	transform: scale(1.2);
}


#mro_structure_photos {
	padding: 15px;
}


@media (max-width: 600px) {
	.mro-form-navigation {
		flex-direction: column;
	}

	.mro-nav-button,
	.mro-submit-button {
		width: 100%;
	}

	.mro-offer-detail__section {
		padding: 18px;
	}
}
