/* Спецраздел «Сведения об образовательной организации» */

.bs-body {
	background: #fff;
	color: #2f2a25;
	font-family: Comfortaa, sans-serif;
}

.bs-container {
	max-width: 60rem;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* ---------- Шапка ---------- */

.bs-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(47, 42, 37, 0.08);
}

.bs-header__inner {
	max-width: 72rem;
	margin: 0 auto;
	padding: 0.7rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.bs-logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: inherit;
}

.bs-logo__img {
	width: 2.6rem;
	height: auto;
}

.bs-logo__text {
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.25;
}

.bs-nav {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	flex-wrap: wrap;
	margin-left: auto;
}

.bs-nav__link {
	font-size: 0.72rem;
	font-weight: 500;
	color: #2f2a25;
	text-decoration: none;
	white-space: nowrap;
}

.bs-nav__link:hover {
	color: #f08012;
}

.bs-vision {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: inherit;
	font-size: 0.66rem;
	font-weight: 500;
	color: #2f2a25;
	background: rgba(47, 42, 37, 0.06);
	border: none;
	border-radius: 2rem;
	padding: 0.5rem 0.9rem;
	cursor: pointer;
}

.bs-vision:hover {
	background: rgba(240, 128, 18, 0.14);
}

/* ---------- Контент ---------- */

.bs-main {
	padding: 2.5rem 0 4rem;
}

.bs-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	font-size: 0.66rem;
	color: rgba(47, 42, 37, 0.55);
	margin-bottom: 1.4rem;
}

.bs-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.bs-breadcrumbs a:hover {
	color: #f08012;
}

.bs-h1 {
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 1.4rem;
}

.bs-subnav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.bs-subnav__link {
	font-size: 0.7rem;
	font-weight: 500;
	color: #2f2a25;
	text-decoration: none;
	background: rgba(47, 42, 37, 0.06);
	border-radius: 2rem;
	padding: 0.55rem 1rem;
}

.bs-subnav__link:hover {
	background: rgba(240, 128, 18, 0.14);
}

.bs-subnav__link.is-active {
	background: #f08012;
	color: #fff;
}

.bs-content {
	font-size: 0.8rem;
	line-height: 1.65;
}

.bs-content h2 {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 2.2rem 0 0.9rem;
}

.bs-content h2:first-child {
	margin-top: 0;
}

.bs-content h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 1.6rem 0 0.7rem;
}

.bs-content p {
	margin: 0 0 0.9rem;
}

.bs-content ul {
	margin: 0 0 0.9rem;
	padding-left: 1.2rem;
}

.bs-content li {
	margin-bottom: 0.4rem;
}

.bs-content a {
	color: #f08012;
}

.bs-intro {
	font-size: 0.9rem;
	color: rgba(47, 42, 37, 0.75);
	max-width: 46rem;
}

/* Карточки подразделов */

.bs-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
	gap: 1rem;
	margin: 1.5rem 0;
}

.bs-card {
	display: block;
	background: #faf6f1;
	border-radius: 1.2rem;
	padding: 1.4rem;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bs-card:hover {
	box-shadow: 0 10px 30px rgba(47, 42, 37, 0.10);
	transform: translateY(-2px);
}

.bs-card__title {
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #2f2a25;
}

.bs-card__text {
	font-size: 0.7rem;
	color: rgba(47, 42, 37, 0.65);
	line-height: 1.55;
}

/* Таблица реквизитов (dl) */

.bs-facts {
	margin: 0;
}

.bs-facts__row {
	display: grid;
	grid-template-columns: minmax(11rem, 16rem) 1fr;
	gap: 1rem;
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(47, 42, 37, 0.08);
}

.bs-facts__row dt {
	font-weight: 600;
	color: rgba(47, 42, 37, 0.6);
	font-size: 0.72rem;
}

.bs-facts__row dd {
	margin: 0;
}

@media (max-width: 600px) {
	.bs-facts__row {
		grid-template-columns: 1fr;
		gap: 0.2rem;
	}
}

/* Список документов */

.bs-docs {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin: 1.2rem 0;
}

.bs-doc {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: #faf6f1;
	border-radius: 1rem;
	padding: 1rem 1.2rem;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease;
}

.bs-doc > span:last-child {
	line-height: 1.45;
}

.bs-doc:hover {
	box-shadow: 0 8px 24px rgba(47, 42, 37, 0.10);
}

.bs-doc__icon {
	flex: 0 0 auto;
	margin-top: 0.1rem;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 0.6rem;
	background: #f08012;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.bs-doc__title {
	font-size: 0.78rem;
	font-weight: 600;
	color: #2f2a25;
	line-height: 1.4;
}

.bs-doc__meta {
	display: inline-block;
	font-size: 0.64rem;
	color: rgba(47, 42, 37, 0.55);
	line-height: 1.5;
	margin-top: 0.25rem;
}

/* Таблицы цен */

.bs-table-wrap {
	overflow-x: auto;
	margin: 1.2rem 0;
	border-radius: 1rem;
	border: 1px solid rgba(47, 42, 37, 0.08);
}

.bs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.72rem;
	min-width: 34rem;
}

.bs-table th {
	text-align: left;
	font-weight: 700;
	background: #faf6f1;
	padding: 0.8rem 1rem;
}

.bs-table td {
	padding: 0.8rem 1rem;
	border-top: 1px solid rgba(47, 42, 37, 0.08);
	vertical-align: top;
}

.bs-note {
	background: rgba(240, 128, 18, 0.08);
	border-radius: 1rem;
	padding: 1rem 1.2rem;
	font-size: 0.72rem;
	margin: 1.2rem 0;
}

/* ---------- Подвал ---------- */

.bs-footer {
	background: #2f2a25;
	color: rgba(255, 255, 255, 0.85);
	padding: 2.5rem 0 1.5rem;
}

.bs-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 700px) {
	.bs-footer__grid {
		grid-template-columns: 1fr;
	}
}

.bs-logo--footer .bs-logo__text {
	color: #fff;
}

.bs-footer__org {
	font-size: 0.66rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.9rem;
	max-width: 26rem;
}

.bs-footer__label {
	font-size: 0.62rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 0.7rem;
}

.bs-footer__link {
	display: block;
	font-size: 0.74rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	margin-bottom: 0.45rem;
}

a.bs-footer__link:hover {
	color: #f08012;
}

.bs-footer__address {
	color: rgba(255, 255, 255, 0.6);
}

.bs-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.8rem;
	padding-top: 1.2rem;
	font-size: 0.62rem;
	color: rgba(255, 255, 255, 0.5);
}

/* ---------- Секция «Документы» на лендинге ---------- */

.bs-landing {
	background: #fff;
}

.bs-landing .padding-top {
	padding-top: 6rem;
}

.bs-landing-docs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr));
	gap: 0.8rem;
	width: 100%;
	max-width: 71.5rem;
	margin: 2.5rem auto 0;
	text-align: left;
}

@media (max-width: 600px) {
	.bs-landing-docs {
		grid-template-columns: 1fr;
	}
}

.bs-landing-more {
	display: inline-block;
	margin: 1.8rem auto 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: #f08012;
	text-decoration: none;
}

.bs-landing-more:hover {
	text-decoration: underline;
}

/* ---------- Версия для слабовидящих ---------- */

html.bs-vi {
	font-size: 22px !important;
}

html.bs-vi body {
	font-family: Arial, sans-serif;
}

html.bs-vi img {
	filter: grayscale(1);
}

html.bs-vi .bs-content a,
html.bs-vi .bs-nav__link,
html.bs-vi .bs-footer__link {
	text-decoration: underline;
}

html.bs-vi .bs-vision {
	background: #2f2a25;
	color: #fff;
}
