/* press.css — styles for /press/* pages (rate cards, form, switcher)
   Restored 2026-04-29 after removal in PageSpeed R2 (2026-04-11) */

/* === Switcher (tab navigation) === */
.switcher {
	text-align: center;
	padding: 16px;
	background: #F6F6F9;
}
.switcher .btn-group {
	display: inline-flex;
	flex-flow: row wrap;
	gap: 8px;
	justify-content: center;
}
.switcher .btn-group .main-btn {
	display: inline-block !important;
	padding: 12px 24px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	border: 1px solid #e4e4e4;
	background: #fff;
	color: #000;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.switcher .btn-group .main-btn.active {
	background: #fff;
	color: #000;
}
.switcher .btn-group .main-btn:not(.active) {
	background: #000;
	color: #fff;
}
.switcher .btn-group .main-btn:hover {
	opacity: 0.85;
}

/* === Rate section (tariff cards) === */
.rate {
	padding: 0 0 48px;
	border-top: 1px solid #EFEFF3;
}
.rate .about-block {
	padding-top: 32px;
}
.rate-title {
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	padding-bottom: 24px;
}
.rate-row {
	display: flex;
	flex-flow: row nowrap;
	gap: 16px;
}
.rate-col {
	flex: 1;
	border: 1px solid #EFEFF3;
	border-radius: 4px;
	transition: border-color .2s;
	cursor: pointer;
}
.rate-col:hover {
	border-color: #e4e4e4;
}
.rate-col.active {
	border-color: #000;
}
.rate-wrap {
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.rate-time {
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	padding-bottom: 8px;
}
.rate-price {
	display: block;
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
	padding-bottom: 24px;
}
.rate-col ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex-grow: 1;
}
.rate-col ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 20px;
	padding-bottom: 12px;
	color: #555;
}
.rate-col ul li svg {
	flex-shrink: 0;
	margin-top: 4px;
}
.rate-col .main-btn {
	display: block !important;
	text-align: center;
	padding: 14px 24px;
	background: #000;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s;
	margin-top: auto;
}
.rate-col .main-btn:hover {
	background: #1f1f1f;
}
.rate-col.active .main-btn {
	background: #555;
}

/* === Data section (form + info) === */
.data {
	padding: 48px 0;
	border-top: 1px solid #EFEFF3;
}
.data-info {
	padding-top: 48px;
}
.data-info p {
	font-size: 14px;
	line-height: 22px;
	color: #7B7B81;
	padding-bottom: 16px;
}
.data-info p a {
	color: #000;
	text-decoration: underline;
}
.data-info p a:hover {
	text-decoration: none;
}
.data-title {
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	padding-bottom: 24px;
}
.data-title a {
	color: #000;
	text-decoration: underline;
}
.data-title a:hover {
	text-decoration: none;
}

/* === Donate form === */
.donate-form {
	max-width: 100%;
}
.donate-subtitle {
	display: block;
	font-size: 20px;
	line-height: 32px;
	font-weight: 600;
	padding-bottom: 24px;
}
.donate-form__row {
	display: flex;
	flex-flow: row nowrap;
	gap: 16px;
	margin-bottom: 16px;
}
.donate-form__col {
	flex: 1;
}
.input-block {
	margin-bottom: 16px;
}
.input-block__wrap {
	width: 100%;
}
.input-block input,
.input-block textarea {
	display: block;
	width: 100%;
	padding: 14px 16px;
	font-size: 16px;
	line-height: 24px;
	border: 1px solid #EFEFF3;
	border-radius: 4px;
	background: #F6F6F9;
	font-family: inherit;
	color: #000;
	outline: none;
	transition: border-color .2s;
	box-sizing: border-box;
}
.input-block input:focus,
.input-block textarea:focus {
	border-color: #000;
}
.input-block textarea {
	min-height: 120px;
	resize: vertical;
}
.donate-form .main-btn {
	display: inline-block !important;
	padding: 14px 48px;
	background: #000;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	margin-top: 8px;
	text-decoration: none;
}
.donate-form .main-btn:hover {
	background: #1f1f1f;
}

/* === Error/success messages === */
.error-message {
	padding: 16px;
	margin-bottom: 24px;
	background: #FFF3CD;
	border: 1px solid #EFEFF3;
	border-radius: 4px;
}
.error-message p {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
}
.error-message ul {
	margin: 0;
	padding-left: 20px;
}
.error-message ul li {
	font-size: 14px;
	line-height: 22px;
	color: #c00;
	padding-bottom: 4px;
}

/* === Mobile responsive === */
@media only screen and (max-width: 768px) {
	.switcher .btn-group {
		flex-direction: column;
		width: 100%;
	}
	.switcher .btn-group .main-btn {
		width: 100%;
		box-sizing: border-box;
	}
	.rate-row {
		flex-direction: column;
	}
	.rate-price {
		font-size: 24px;
		line-height: 32px;
	}
	.rate-wrap {
		padding: 24px 16px;
	}
	.donate-form__row {
		flex-direction: column;
		gap: 0;
	}
	.data {
		padding: 24px 0;
	}
	.data-info {
		padding-top: 24px;
	}
	.data-title {
		font-size: 16px;
		line-height: 24px;
	}
}
