.main:has(.hotline) {
	padding: 0 !important;
}

.main:has(.hotline) .left_block {
	display: none;
}

.main:has(.hotline) .right_block {
	width: 100% !important;
}

.main:has(.hotline) .maxwidth-theme {
	padding: 0;

	max-width: none;

	margin: 0 !important;
}

.hotline {
	font-family: "Roboto", Arial, sans-serif;
	
	max-width: 1810px;
	margin: 0 auto;
	padding: 16px 0px 0;

	padding-inline: 40px;
	color: #1D1D1D;
}

.hotline__top {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	justify-content: space-between;

	margin-bottom: 72px;
}

.hotline__info {
	flex: 1;

	max-width: 800px;
}

.hotline__heading {
	font-size: 56px;
	font-weight: 600;
	margin: 0 0 24px;
	color: #1D1D1D;
}

.hotline__text {
	font-size: 24px;
	color: #333;

	opacity: 0.8;
}

/* --- Form --- */
.hotline__form-wrap {
	flex: 0 0 380px;
}

.hotline__form {
	background: #fff;
	border-radius: 24px;
	padding: 32px;

	min-width: 563px;
	box-shadow: 0px 10px 40px 0px #8989891A;
}

.hotline__form-title {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 24px;
	color: #1D1D1D;
}
.hotline__form-group {
	margin-bottom: 16px;
}

.hotline__input,
.hotline__textarea {
	width: 100%;
	padding: 10px 16px;
	font-size: 18px;
	font-family: inherit;
	border: none;
	border-radius: 6px;
	background: #EFEFEF;
	color: #1D1D1D;
	outline: none;
	box-sizing: border-box;
	
}

.hotline__input:focus,
.hotline__textarea:focus {
	border-color: #1a1a2e;
}
.hotline__input::placeholder,
.hotline__textarea::placeholder {
	color: #999;
}
.hotline__textarea {
	resize: none;

	min-height: 95px;
}
.hotline__form-actions {
	margin-top: 24px;
	text-align: right;
}
.hotline__submit {
	display: inline-block;
	padding: 12px 16px;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
	font-family: inherit;
	color: #fff;
	background: #042645;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: opacity 0.2s;
}
.hotline__submit:hover {
	opacity: 0.9;
}

/* --- FAQ --- */
.hotline__faq {
	font-family: "Roboto", Arial, sans-serif;

	padding: 0 40px;

	background-color: #F8F8F8;
}

.hotline__faq-heading {
	font-family: "Roboto", Arial, sans-serif;
	font-size: 40px;
	font-weight: 500;
	text-align: center;
	margin: 0 0 40px;
	color: #1D1D1D;

	padding-top: 72px;
}
.hotline__faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;

	max-width: 1200px;
	margin: 0 auto;

	padding-bottom: 72px;
}
.hotline__faq-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}
.hotline__faq-question {
	display: flex;
	flex-direction: column;
	gap: 8px;

	width: 100%;
	padding: 24px;
	font-size: 24px;
	font-weight: 500;
	line-height: 28px;
	font-family: inherit;
	color: #1D1D1D;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.hotline__faq-question-block {
	display: flex;
	justify-content: space-between;
	align-items: center;

	gap: 24px;
}

.hotline__faq-question-text {
	flex: 1;
}
.hotline__faq-date {
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	color: #1D1D1D;
	opacity: 0.5;
	white-space: nowrap;
}
.hotline__faq-arrow {
	flex-shrink: 0;
	transition: transform 0.25s;
}
.hotline__faq-item--open .hotline__faq-arrow {
	transform: rotate(180deg);
}

/* --- FAQ answer --- */
.hotline__faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;

}
.hotline__faq-item--open .hotline__faq-answer {
	max-height: 500px;
}
.hotline__faq-answer-inner {
	display: flex;
	gap: 12px;
	font-size: 20px;
	color: #1D1D1D;

	padding: 8px 24px 24px 24px;

}

.hotline__faq-dash {
	flex-shrink: 0;
	color: #999;
}
.hotline__faq-answer-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hotline__faq-answer-inner p {
	margin: 0;
	color: #444;
}

/* --- Responsive --- */
@media (max-width: 1219px) {
	.hotline__faq,
	.hotline {
		padding-inline: 20px;
	}
	
	.hotline__text {
		font-size: 18px;
		line-height: normal;
	}

	.hotline__text:last-child {
		margin-bottom: 0;
	}

	.hotline__top {
		flex-direction: column;
		margin-bottom: 50px;
	}

	.hotline__faq-heading {
		padding-top: 50px;
	}

	.hotline__faq-question-text {
		font-size: 18px;
		line-height: normal;
	}

	.hotline__faq-answer-inner {
		font-size: 16px;
		line-height: normal;
	}

	.hotline__form-wrap {
		flex: none;
		width: 100%;
	}
	.hotline__heading {
		font-size: 28px;
	}
	.hotline__faq-question {
		padding: 16px;
	}
	.hotline__faq-answer-inner {
		padding: 0 16px 16px;
	}
	.hotline__form {
		min-width: auto;
		padding: 24px 18px;
	}
}

.Reels__Pager {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin-top: 40px;
}
.Reels__PagerPages {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
	justify-content: center;
}
.Reels__PagerLink {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 24px;
	font-weight: 500;
	color: #333;
	text-decoration: none;
	padding: 12px 18px;
	border-radius: 10px;
	transition: background 0.2s, color 0.2s;
}
.Reels__PagerLink--disabled {
	opacity: 0.4;
	pointer-events: none;
}
.Reels__PagerNum {
	font-size: 24px;
	font-weight: 500;
	color: #333;
	text-decoration: none;
	min-width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	transition: background 0.2s, color 0.2s;
	position: relative;
}
.Reels__PagerLink:hover,
.Reels__PagerNum:hover {
	color: #003f7a !important;
}
.Reels__PagerNum--current {
	font-weight: 700;
	color: #003f7a;
}
.Reels__PagerNum--current::after {
	content: "";
	display: block;
	height: 2px;
	background-color: var(--theme-base-color);
	bottom: -1px;
	position: absolute;
	width: 100%;
}
