/* ------------------------------------------------------------------------
   ZUS Revnice - base styles
   Colors/typography are a first pass off the designer mockups; refine hex
   values and font choice once the designer confirms a final brand kit.
------------------------------------------------------------------------- */

:root {
	--zus-color-text: #1a1a1a;
	--zus-color-bg: #ffffff;
	--zus-color-border: #e2e2e2;
	--zus-color-footer-bg: #0d0d0d;
	--zus-color-red: #e8121a;
	--zus-color-link: #1a4fd6;
	--zus-obor-hudebni: #1E3FE0;
	--zus-obor-dramaticky: #17B34A;
	--zus-obor-tanecni: #E619C9;
	--zus-obor-vytvarny: #E0C200;
	--zus-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--zus-container-width: 900px;
}

* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	min-height: 100%;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	font-family: var(--zus-font-sans);
	color: var(--zus-color-text);
	background: var(--zus-color-bg);
	line-height: 1.55;
}

.zus-main {
	flex: 1 0 auto;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

/* Inline text links inside actual page/post content should read as links
   (distinct color + underline), unlike nav/card/utility links which are
   styled as their own components elsewhere in this file. Scoped to text
   contexts (p/li/h*) rather than every descendant <a>, so block-level
   components (cards, tiles, buttons) built from <a> aren't caught too. */
.zus-page-content p a,
.zus-page-content li a,
.zus-single-aktualita__content p a,
.zus-single-aktualita__content li a,
.zus-teacher-bio p a,
.zus-teacher-bio li a {
	color: var(--zus-color-link);
	text-decoration: underline;
}

.zus-page-content p a:hover,
.zus-page-content li a:hover,
.zus-single-aktualita__content p a:hover,
.zus-single-aktualita__content li a:hover,
.zus-teacher-bio p a:hover,
.zus-teacher-bio li a:hover {
	text-decoration: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.zus-container {
	max-width: var(--zus-container-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------------- Aktualita bar ---------------- */

.zus-aktualita-bar[hidden] {
	display: none;
}

.zus-aktualita-bar {
	background: var(--zus-color-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 24px;
	touch-action: pan-y;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.zus-aktualita-bar__text {
	margin: 0;
	font-size: 0.95rem;
	flex: 1 1 auto;
	min-width: 0;
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.zus-aktualita-bar__text::-webkit-scrollbar {
	display: none;
}

.zus-aktualita-bar__close {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
	flex-shrink: 0;
}

/* ---------------- Header / nav ---------------- */

.zus-header {
	background: var(--zus-color-bg);
	border-bottom: 3px solid var(--zus-color-link);
	position: relative;
	z-index: 20;
}

.zus-header__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 8px;
	gap: 32px;
}

@font-face {
	font-family: 'BCSklonar';
	src: url('../fonts/bcsklonar-medium.otf') format('opentype');
	font-display: swap;
}

.zus-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.zus-logo__mark {
	display: block;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}

.zus-logo__text {
	font-family: 'BCSklonar', var(--zus-font-sans);
	font-size: 1rem;
	color: var(--zus-color-text);
	white-space: nowrap;
}

.zus-nav {
	flex: 1;
}

.zus-nav-mobile-extra {
	display: none;
}

.zus-nav .primary-menu {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.zus-nav .primary-menu > .menu-item > a {
	display: inline-block;
	padding: 8px 0;
	text-decoration: none;
	font-weight: 600;
	color: var(--zus-color-text);
	border: none;
	background: none;
	cursor: pointer;
}

.zus-utility-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px 16px;
	font-size: 0.9rem;
}

.zus-utility-links a {
	text-decoration: none;
}

.zus-search-toggle {
	background: none;
	border: none;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	color: var(--zus-color-text);
}

/* Dropdown panel */

.zus-dropdown-panel {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	padding: 40px 24px;
	z-index: 15;
}

.menu-item-has-children.is-open > .zus-dropdown-panel {
	display: block;
}

.zus-dropdown-panel .sub-menu {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	width: fit-content;
	max-width: 1400px;
}

.zus-dropdown-panel .sub-menu a {
	text-decoration: none;
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--zus-color-text);
}

/* Mobile nav toggle (hamburger) */

.zus-mobile-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
}

.zus-mobile-nav-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--zus-color-text);
}

/* ---------------- Obor accent bar ---------------- */

.zus-obor-accent-bar {
	height: 6px;
	width: 100%;
	background: var(--zus-color-text);
}

/* ---------------- Hero carousel ---------------- */

.zus-hero-carousel {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	background: #111;
	touch-action: pan-y;
}

.zus-hero-carousel__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.zus-hero-carousel__slide {
	position: absolute;
	inset: 0;
}

.zus-hero-carousel__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zus-hero-carousel__dots {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 5;
}

.zus-hero-carousel__dot {
	width: 32px;
	height: 4px;
	border-radius: 2px;
	border: none;
	background: rgba(255, 255, 255, 0.4);
	padding: 0;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.zus-hero-carousel__dot-fill {
	position: absolute;
	inset: 0;
	background: #fff;
	transform: scaleX(0);
	transform-origin: left;
}

.zus-hero-carousel__dot.is-active .zus-hero-carousel__dot-fill {
	animation: zus-hero-progress var(--zus-hero-autoplay, 6000ms) linear forwards;
}

.zus-hero-carousel:hover .zus-hero-carousel__dot.is-active .zus-hero-carousel__dot-fill,
.zus-hero-carousel:focus-within .zus-hero-carousel__dot.is-active .zus-hero-carousel__dot-fill {
	animation-play-state: paused;
}

@keyframes zus-hero-progress {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

.zus-hero-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	transition: background 0.15s ease;
}

.zus-hero-carousel__arrow:hover {
	background: rgba(0, 0, 0, 0.55);
}

.zus-hero-carousel__arrow--prev {
	left: 16px;
}

.zus-hero-carousel__arrow--next {
	right: 16px;
}

/* ---------------- Page content ---------------- */

.zus-page-content {
	padding: 56px 24px;
}

.zus-page-title,
.zus-obor-page__title {
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	margin: 0 0 32px;
}

.zus-obor-page--title-only {
	padding-bottom: 0;
}

/* ---------------- Instrument/specialization group links ---------------- */

.zus-instrument-group {
	margin: 32px 0;
}

.zus-instrument-group__location {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0 0 12px;
}

.zus-instrument-group__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zus-instrument-group__list li {
	padding: 4px 0;
}

.zus-instrument-group__list a {
	text-decoration: none;
	font-weight: 600;
}

/* ---------------- Teacher bio blocks ---------------- */

.zus-teacher-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 40px;
}

.zus-teacher-bio__photo {
	margin-bottom: 16px;
	max-width: 320px;
}

.zus-teacher-bio__photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.zus-teacher-bio__name {
	margin: 0 0 4px;
	font-size: 1.3rem;
}

.zus-teacher-bio__vzdelani {
	margin: 0 0 12px;
	color: #555;
}

.zus-teacher-bio__label {
	font-weight: 700;
	margin: 16px 0 4px;
}

.zus-teacher-bio__rok {
	margin-top: 16px;
	font-size: 0.9rem;
	color: #555;
}

.zus-search-results {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zus-search-results li {
	padding: 10px 0;
	border-bottom: 1px solid var(--zus-color-border);
	font-weight: 600;
}

/* ---------------- Search overlay ---------------- */

.zus-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 10, 10, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.zus-search-overlay[hidden] {
	display: none;
}

.zus-search-overlay__form {
	width: min(600px, 90vw);
}

.zus-search-overlay__input {
	width: 100%;
	font-size: 1.5rem;
	padding: 16px 20px;
	border: none;
	border-radius: 4px;
}

.zus-search-overlay__close {
	position: absolute;
	top: 24px;
	right: 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

/* ---------------- Aktuality (news archive) ---------------- */

.zus-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.zus-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--zus-color-border);
	border-radius: 4px;
	text-decoration: none;
	color: inherit;
}

.zus-pagination .page-numbers.current {
	background: var(--zus-color-text);
	color: #fff;
	border-color: var(--zus-color-text);
}

.zus-single-aktualita__thumb img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 24px;
}

.zus-single-aktualita__content {
	max-width: 700px;
	margin: 0 auto;
}

.zus-single-aktualita__date {
	margin: 0 0 8px;
	font-size: 0.9rem;
	color: #666;
}

.zus-single-aktualita .zus-pill-button {
	margin-top: 24px;
}

/* ---------------- Homepage sections (obory, aktuality teaser, events) ---------------- */

.zus-home-intro {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.zus-stat-line {
	margin: 24px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--zus-color-border);
	font-size: 1.05rem;
}

.zus-stat-line strong {
	color: var(--zus-color-link);
	font-size: 1.2rem;
}

/* ---------------- Obor links (homepage) ---------------- */

.zus-obor-links {
	border-top: 1px solid var(--zus-color-border);
}

.zus-obor-links__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 4px;
	border-bottom: 1px solid var(--zus-color-border);
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
}

.zus-obor-links__item:hover {
	background: #fafafa;
}

.zus-obor-links__name {
	font-size: 1.6rem;
	font-weight: 800;
}

.zus-obor-links__item--muted .zus-obor-links__name {
	color: #999;
}

.zus-obor-links__arrow {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--zus-color-text);
	border-bottom: 2px solid var(--zus-color-text);
	transform: rotate(-45deg);
	opacity: 0.7;
}

.zus-obor-links__item--muted .zus-obor-links__arrow {
	border-color: #999;
}

/* ---------------- Pill buttons ---------------- */

.zus-pill-button {
	display: inline-block;
	background: var(--zus-color-text);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	padding: 12px 22px;
	border-radius: 999px;
	transition: background 0.15s ease, transform 0.15s ease;
}

.zus-pill-button:hover {
	background: #333;
	transform: translateY(-1px);
}

.zus-pill-button--small {
	padding: 8px 16px;
	font-size: 0.82rem;
}

.zus-pill-button--outline {
	background: transparent;
	color: var(--zus-color-text);
	border: 1px solid var(--zus-color-border);
	margin-left: 8px;
}

.zus-pill-button--outline:hover {
	background: #f5f5f5;
}

/* ---------------- Simple list (aktuality / events teaser) ---------------- */

.zus-simple-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	border-top: 1px solid var(--zus-color-border);
}

.zus-simple-list__item {
	border-bottom: 1px solid var(--zus-color-border);
}

.zus-page-content .zus-simple-list__item a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	padding: 20px 4px;
	text-decoration: none;
	color: inherit;
}

.zus-simple-list__item:has(a):hover {
	background: #fafafa;
}

.zus-simple-list__item:not(:has(a)) {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 16px;
	padding: 16px 4px;
}

.zus-simple-list__date {
	flex: 0 0 auto;
	font-size: 0.82rem;
	color: #777;
	min-width: 130px;
}

.zus-simple-list__title {
	font-weight: 700;
	font-size: 1.02rem;
}

.zus-simple-list__place {
	flex: 1 1 auto;
	text-align: right;
	font-size: 0.85rem;
	color: #777;
}

/* ---------------- Contacts (homepage) ---------------- */

.zus-home-contacts {
	padding: 0;
	max-width: 700px;
}

.zus-home-contacts p {
	margin: 0 0 14px;
}

.zus-home-contacts h2 {
	font-size: 1.1rem;
	margin: 24px 0 10px;
}

.zus-home-contacts ul {
	margin: 0;
	padding-left: 20px;
}

.zus-home-contacts li {
	padding: 3px 0;
}

.zus-home-section {
	padding-top: 0;
}

.zus-hero-carousel + .zus-home-section {
	padding-top: 56px;
}

.zus-home-onas-photo {
	width: 100%;
	margin-bottom: 24px;
}

.zus-home-onas-photo figure {
	margin: 0;
}

.zus-home-onas-photo img {
	display: block;
	width: 100%;
	height: auto;
}

/* The O nás page (historie) embeds the same photo as the homepage teaser -
   match its width treatment there too instead of the raw Gutenberg default. */
.page-id-1774 .zus-page-content .wp-block-image {
	margin-left: 0;
	margin-right: 0;
}

.page-id-1774 .zus-page-content .wp-block-image img {
	display: block;
	width: 100%;
	height: auto;
}

.zus-home-section__title {
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0 0 24px;
	text-align: center;
}

.zus-section-divider {
	border: none;
	border-top: 1px solid var(--zus-color-border);
	margin: 32px 0;
}

.zus-home-section__more {
	margin-top: 24px;
}

.zus-home-section__notice {
	margin: 0 0 8px;
	font-size: 0.85rem;
	color: #888;
	font-style: italic;
}

/* ---------------- Locations / map ---------------- */

.zus-locations-groups {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.zus-locations-group__title {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0 0 16px;
}

.zus-locations-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 24px;
}

.zus-location-card {
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.zus-location-card__map {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.zus-location-card__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.zus-location-card__body {
	padding: 16px 20px 20px;
}

.zus-location-card__title {
	margin: 0 0 4px;
	font-size: 1.1rem;
	font-weight: 800;
}

.zus-location-card__address {
	margin: 0 0 10px;
	font-size: 0.9rem;
	color: #666;
}

.zus-location-card__link {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--zus-color-link);
	text-decoration: underline;
}

/* ---------------- Footer ---------------- */

.zus-footer {
	background: var(--zus-color-footer-bg);
	color: #fff;
}

.zus-footer__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.zus-footer__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
}

.zus-footer__mark {
	display: block;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.zus-footer__links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.zus-footer__links a {
	text-decoration: none;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
}

/* ---------------- Responsive / mobile nav ---------------- */

@media (max-width: 768px) {
	.zus-hero-carousel {
		aspect-ratio: 8 / 7;
	}

	.zus-aktualita-bar {
		padding: 8px 12px;
		gap: 8px;
	}

	.zus-aktualita-bar__text {
		font-size: 0.8rem;
	}

	.zus-aktualita-bar__close {
		min-width: 44px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.zus-header__inner {
		flex-wrap: nowrap;
		padding: 10px 12px;
		gap: 8px;
	}

	.zus-logo {
		flex: 1 1 auto;
		min-width: 0;
		gap: 8px;
	}

	.zus-logo__mark {
		width: 26px;
		height: 26px;
	}

	.zus-logo__text {
		font-size: 0.85rem;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.zus-utility-links {
		flex-shrink: 0;
		gap: 8px;
		font-size: 0.8rem;
	}

	.zus-mobile-nav-toggle {
		display: flex;
		flex-shrink: 0;
	}

	.zus-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--zus-color-bg);
		border-top: 1px solid var(--zus-color-border);
		z-index: 25;
	}

	.zus-nav.is-mobile-open {
		display: block;
	}

	.zus-nav .primary-menu {
		flex-direction: column;
		gap: 0;
		padding: 8px 24px 16px;
	}

	.zus-nav .primary-menu > .menu-item {
		border-bottom: 1px solid var(--zus-color-border);
	}

	.zus-nav .primary-menu > .menu-item > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 14px 0;
	}

	.menu-item-has-children > a::after {
		content: '';
		width: 8px;
		height: 8px;
		flex-shrink: 0;
		margin-left: 8px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		opacity: 0.6;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
	}

	.menu-item-has-children.is-open > a::after {
		transform: rotate(-135deg);
	}

	.zus-dropdown-panel .sub-menu a {
		color: #666;
	}

	.zus-nav-mobile-extra {
		display: block;
		list-style: none;
		margin: 0;
		padding: 8px 24px 16px;
	}

	.zus-nav-mobile-extra li {
		border-bottom: 1px solid var(--zus-color-border);
	}

	.zus-nav-mobile-extra a {
		display: block;
		padding: 12px 0;
		text-decoration: none;
		color: inherit;
		font-weight: 600;
	}

	.zus-dropdown-panel {
		position: static;
		background: rgba(255, 255, 255, 0.9);
		padding: 12px 0 12px 16px;
	}

	/* Keep the search toggle reachable on mobile; hide the plain text links
	   (Kontakt/Dokumenty/Prezentace) since they're already in Studium/menu content. */
	.zus-utility-links a {
		display: none;
	}

	.zus-locations-list {
		grid-template-columns: 1fr;
	}

	.zus-simple-list__place {
		text-align: left;
		flex-basis: 100%;
	}

	.zus-teacher-row__summary {
		flex-wrap: wrap;
	}

	.zus-teacher-row__subjects {
		flex-basis: 100%;
		text-align: left;
		padding-left: 52px;
		margin-top: -6px;
	}
}

/* ---------------- Naši pedagogové (public directory page) ---------------- */

.zus-teachers-page__intro {
	color: #666;
	max-width: 640px;
	margin: 0 auto 8px;
	text-align: center;
}

.zus-teachers-page__count {
	text-align: center;
	font-weight: 700;
	color: var(--zus-color-link);
	margin: 0 0 40px;
}

.zus-teachers-page__section {
	margin-bottom: 48px;
}

.zus-teachers-page__section-title {
	font-size: 1.6rem;
	font-weight: 800;
	display: flex;
	align-items: baseline;
	gap: 10px;
	border-bottom: 2px solid var(--zus-color-border);
	padding-bottom: 10px;
	margin: 0 0 4px;
}

.zus-teachers-page__section-count {
	font-size: 0.9rem;
	font-weight: 400;
	color: #999;
}

/* Rows read like a spreadsheet: fixed-height summary line, click to expand
   the bio underneath - avatar | name | subjects taught | chevron. */
.zus-teacher-rows {
	border-top: 1px solid var(--zus-color-border);
}

.zus-teacher-row {
	border-bottom: 1px solid var(--zus-color-border);
}

.zus-teacher-row__summary {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px 4px;
	cursor: pointer;
	list-style: none;
}

.zus-teacher-row__summary::-webkit-details-marker {
	display: none;
}

.zus-teacher-row:hover .zus-teacher-row__summary {
	background: #fafafa;
}

.zus-teacher-row__avatar {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	background: #eee;
}

.zus-teacher-row__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zus-teacher-row__name {
	flex: 0 0 auto;
	width: 240px;
	max-width: 40%;
	font-weight: 800;
}

.zus-teacher-row__subjects {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.9rem;
	color: #666;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.zus-teacher-row__chevron {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.zus-teacher-row[open] .zus-teacher-row__chevron {
	transform: rotate(225deg);
}

.zus-teacher-row__body {
	padding: 0 4px 20px 68px;
}

.zus-teacher-row__body p {
	margin: 0 0 10px;
	font-size: 0.92rem;
}

.zus-teacher-row__rok {
	color: #888;
	font-size: 0.85rem !important;
}
