/* Letters Verification — front-end layout */

.letters-verification {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.letters-verification *,
.letters-verification *::before,
.letters-verification *::after {
	box-sizing: border-box;
}

.vol-header {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 3rem 1.5rem;
	text-align: center;
}

.vol-header__title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.vol-inner {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.vol-search {
	background: #e8e8e8;
	padding: 1.75rem 0 2rem;
}

.vol-search__hint {
	margin: 0 0 0.65rem;
	font-size: 0.875rem;
	color: #444;
	font-weight: 400;
}

.vol-search__row {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	align-items: stretch;
	border: 1px solid #ccc;
	border-radius: 2px;
	overflow: hidden;
	background: #fff;
	max-width: 100%;
}

.vol-search__input {
	flex: 1 1 200px;
	min-width: 0;
	border: none;
	padding: 0.85rem 1rem;
	font-size: 1rem;
	color: #222;
	background: #fff;
}

.vol-search__input:focus {
	outline: none;
	box-shadow: inset 0 0 0 2px rgba(97, 34, 29, 0.25);
}

.vol-search__input::placeholder {
	color: #888;
}

.vol-search__btn {
	flex: 0 0 auto;
	min-width: 7rem;
	padding: 0.85rem 1.5rem;
	border: none;
	background: #61221d;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease;
}

.vol-search__btn:hover {
	background: #4a1a16;
}

.vol-search__btn:focus {
	outline: 2px solid #61221d;
	outline-offset: 2px;
}

.vol-results {
	background: #f0f0f0;
	padding: 1.5rem 0 2rem;
	border-top: 1px solid #ddd;
}

.vol-results__heading {
	margin: 0 0 1rem;
	text-align: center;
	color: #61221d;
	font-size: 1.35rem;
	font-weight: 700;
}

.vol-results__viewer {
	width: 100%;
	min-height: 400px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
	overflow: hidden;
}

.vol-results__viewer img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.vol-results__viewer iframe {
	display: block;
	width: 100%;
	min-height: 500px;
	border: 0;
}

.vol-scam-alert {
	background: #61221d;
	color: #fff;
	padding: 2.5rem 0 3rem;
}

.vol-scam-alert__inner {
	max-width: 1160px;
	margin: 0 auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.vol-scam-alert__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.vol-scam-alert__intro {
	margin: 0 0 1.5rem;
	font-size: 1rem;
	line-height: 1.65;
	color: darkgrey;
}

.vol-scam-alert__section {
	margin: 0 0 1.35rem;
	font-size: 1rem;
	line-height: 1.65;
	color: darkgrey;
}

.vol-scam-alert__section:last-of-type {
	margin-bottom: 1.5rem;
}

.vol-scam-alert__section strong {
	font-weight: 700;
}

.vol-scam-alert__footer {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: darkgrey;
}

.vol-scam-alert__footer + .vol-scam-alert__footer {
	margin-top: 1rem;
}

.vol-scam-alert__footer a {
	color: darkgrey;
	text-decoration: underline;
}

.vol-scam-alert__footer a:hover {
	text-decoration: none;
}

@media (max-width: 576px) {
	.vol-search__row {
		flex-direction: column;
	}

	.vol-search__btn {
		width: 100%;
		min-width: 0;
	}
}
