

/* Start:/local/templates/start-site/css/enterprise-wwt-public.css?178654078913935*/
/* Public WWT enterprises catalog — /enterprise-wwt/ */
.ewwt {
	--ewwt-bg: #f4f7fb;
	--ewwt-surface: #ffffff;
	--ewwt-border: #e2e8f0;
	--ewwt-text: #1e293b;
	--ewwt-muted: #64748b;
	--ewwt-primary: #0088cc;
	--ewwt-primary-hover: #0077b3;
	--ewwt-radius: 16px;
	--ewwt-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
	color: var(--ewwt-text);
}

.ewwt * {
	box-sizing: border-box;
}

.ewwt-shell {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 1rem 3rem;
}

/* Hero */
.ewwt-hero {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 var(--ewwt-radius) var(--ewwt-radius);
	background:
		radial-gradient(1200px 420px at 12% -10%, rgba(0, 136, 204, 0.22), transparent 55%),
		radial-gradient(900px 380px at 90% 0%, rgba(14, 165, 233, 0.14), transparent 50%),
		linear-gradient(165deg, #e8f4fb 0%, var(--ewwt-bg) 48%, #f8fafc 100%);
	padding: 2.75rem 1rem 2.25rem;
	margin-bottom: 1.25rem;
}

.ewwt-hero__inner {
	max-width: 1180px;
	margin: 0 auto;
}

.ewwt-hero__brand {
	display: inline-block;
	margin: 0 0 0.85rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: rgba(0, 136, 204, 0.12);
	border: 1px solid rgba(0, 136, 204, 0.22);
	color: #0c4a6e;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.ewwt-hero h1 {
	margin: 0 0 0.65rem;
	max-width: 18ch;
	font-size: clamp(1.65rem, 3.2vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--ewwt-text);
}

.ewwt-hero p {
	margin: 0 0 1.25rem;
	max-width: 46ch;
	font-size: 1.05rem;
	line-height: 1.5;
	color: var(--ewwt-muted);
}

.ewwt-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.7rem 1.25rem;
	border-radius: 12px;
	background: var(--ewwt-primary);
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	border: 1.5px solid var(--ewwt-primary);
	transition: background 0.15s, transform 0.15s;
}

.ewwt-hero__cta:hover {
	background: var(--ewwt-primary-hover);
	border-color: var(--ewwt-primary-hover);
	color: #fff !important;
	transform: translateY(-1px);
}

/* Filters */
.ewwt-filters {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border: 1px solid var(--ewwt-border);
	border-radius: var(--ewwt-radius);
	box-shadow: var(--ewwt-shadow);
	padding: 1rem 1.1rem;
	margin-bottom: 1rem;
}

.ewwt-filters__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.ewwt-field label {
	display: block;
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ewwt-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.ewwt-field .form-control,
.ewwt-field select,
.ewwt-field input[type="text"] {
	width: 100%;
	min-height: 44px;
	border-radius: 10px;
	border: 1.5px solid #cbd5e1;
	background: #fff;
	padding: 0.55rem 0.8rem;
	font-size: 0.95rem;
	color: var(--ewwt-text);
	box-shadow: none;
}

.ewwt-field .form-control:focus,
.ewwt-field select:focus,
.ewwt-field input[type="text"]:focus {
	outline: none;
	border-color: var(--ewwt-primary);
	box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.14);
}

.ewwt-filters__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	align-items: end;
}

.ewwt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.6rem 1.1rem;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.92rem;
	text-decoration: none !important;
	border: 1.5px solid var(--ewwt-primary);
	background: var(--ewwt-primary);
	color: #fff !important;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ewwt-btn:hover {
	background: var(--ewwt-primary-hover);
	border-color: var(--ewwt-primary-hover);
	color: #fff !important;
}

.ewwt-btn--ghost {
	background: #fff;
	color: var(--ewwt-text) !important;
	border-color: #94a3b8;
}

.ewwt-btn--ghost:hover {
	background: #f8fafc;
	border-color: #64748b;
	color: var(--ewwt-text) !important;
}

.ewwt-btn--block {
	width: 100%;
}

/* Meta / chips */
.ewwt-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0 0 1rem;
}

.ewwt-meta__count {
	font-size: 0.95rem;
	color: var(--ewwt-muted);
}

.ewwt-meta__count strong {
	color: var(--ewwt-text);
}

.ewwt-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.ewwt-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(0, 136, 204, 0.1);
	border: 1px solid rgba(0, 136, 204, 0.22);
	color: #0c4a6e;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none !important;
}

.ewwt-chip:hover {
	background: rgba(0, 136, 204, 0.16);
}

.ewwt-chip__x {
	opacity: 0.7;
	font-weight: 700;
}

/* Grid */
.ewwt-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	align-items: stretch;
}

.ewwt-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 0;
	padding: 1.1rem;
	border-radius: var(--ewwt-radius);
	border: 1px solid var(--ewwt-border);
	background: var(--ewwt-surface);
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	animation: ewwtIn 0.35s ease both;
}

.ewwt-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ewwt-shadow);
	border-color: #cfe7f5;
}

.ewwt-card__top {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 1rem;
	align-items: start;
	color: inherit;
	flex: 1 1 auto;
	min-height: 0;
}

.ewwt-card__logo {
	width: 88px;
	height: 88px;
	border-radius: 14px;
	border: 1.5px solid var(--ewwt-border);
	background: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	text-decoration: none !important;
}

.ewwt-card__logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	padding: 0.35rem;
}

.ewwt-card__logo-fallback {
	color: var(--ewwt-muted);
	font-size: 1.6rem;
	font-weight: 700;
}

.ewwt-card__body {
	min-width: 0;
}

.ewwt-card__title {
	margin: 0 0 0.55rem;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.3;
	color: var(--ewwt-text);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
	min-height: calc(1.3em * 3);
}

.ewwt-card__title a {
	color: inherit;
	text-decoration: none !important;
}

.ewwt-card__title a:hover {
	color: var(--ewwt-primary);
}

.ewwt-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	min-height: 1.7rem;
}

.ewwt-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	color: #334155 !important;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none !important;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

a.ewwt-badge:hover {
	background: #e2e8f0;
	border-color: #94a3b8;
	color: #0f172a !important;
	text-decoration: none !important;
}

.ewwt-badge--soft {
	background: rgba(0, 136, 204, 0.08);
	border-color: rgba(0, 136, 204, 0.18);
	color: #0c4a6e !important;
}

a.ewwt-badge--soft:hover {
	background: rgba(0, 136, 204, 0.16);
	border-color: rgba(0, 136, 204, 0.35);
	color: #075985 !important;
}

.ewwt-card__belong {
	margin-top: 0.55rem;
	font-size: 0.86rem;
	color: var(--ewwt-muted);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	min-height: calc(1.4em * 2);
}

.ewwt-card__belong strong {
	color: var(--ewwt-text);
	font-weight: 700;
}

.ewwt-card__contacts {
	margin-top: 0.95rem;
	padding-top: 0.85rem;
	border-top: 1px solid #eef2f6;
	font-size: 0.88rem;
	color: var(--ewwt-muted);
	line-height: 1.45;
	min-height: 6.2rem;
}

.ewwt-card__contacts strong {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--ewwt-text);
	font-size: 0.8rem;
	font-weight: 700;
}

.ewwt-contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.ewwt-contact-list__item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: var(--ewwt-text);
	word-break: break-word;
}

.ewwt-contact-list__item i {
	width: 1rem;
	margin-top: 0.15rem;
	flex-shrink: 0;
	text-align: center;
	color: var(--ewwt-primary);
	font-size: 0.85rem;
}

.ewwt-card__contacts a {
	color: var(--ewwt-primary);
	font-weight: 600;
	text-decoration: none;
}

.ewwt-card__contacts a:hover {
	text-decoration: underline;
}

.ewwt-card__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
	padding-top: 0.95rem;
}

.ewwt-empty {
	padding: 2.5rem 1.25rem;
	text-align: center;
	border: 1.5px dashed #cbd5e1;
	border-radius: var(--ewwt-radius);
	background: #f8fafc;
	color: var(--ewwt-muted);
}

.ewwt-empty strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--ewwt-text);
	font-size: 1.05rem;
}

.ewwt-pager {
	margin-top: 1.5rem;
}

.ewwt-pager .bx-pagination,
.ewwt-pager .modern-page-navigation,
.ewwt-pager .navigation {
	display: flex;
	justify-content: center;
}

@keyframes ewwtIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 768px) {
	.ewwt-filters__grid {
		grid-template-columns: 1.1fr 1fr 1.2fr auto;
		align-items: end;
	}

	.ewwt-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ewwt-filters__actions .ewwt-btn {
		min-width: 128px;
	}
}

@media (min-width: 1100px) {
	.ewwt-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.ewwt-hero {
		padding: 3.25rem 1rem 2.75rem;
	}
}

@media (max-width: 575px) {
	.ewwt-card__top {
		grid-template-columns: 72px 1fr;
		gap: 0.75rem;
	}

	.ewwt-card__logo {
		width: 72px;
		height: 72px;
	}

	.ewwt-card__actions .ewwt-btn {
		width: 100%;
	}
}

/* Activities page — /activities-wwt/ */
.ewwt-hero--org h1 {
	max-width: 28ch;
}

.ewwt-back {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 1.15rem;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	background: #fff;
	border: 1.5px solid rgba(0, 136, 204, 0.35);
	box-shadow: 0 4px 14px rgba(0, 136, 204, 0.12);
	color: var(--ewwt-primary) !important;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none !important;
	transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.ewwt-back:hover {
	background: rgba(0, 136, 204, 0.08);
	border-color: var(--ewwt-primary);
	box-shadow: 0 6px 18px rgba(0, 136, 204, 0.18);
	color: var(--ewwt-primary-hover) !important;
	transform: translateX(-2px);
	text-decoration: none !important;
}

.ewwt-orghead {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 1.15rem;
	align-items: start;
}

.ewwt-orghead__logo {
	width: 96px;
	height: 96px;
	border-radius: 16px;
	border: 1.5px solid rgba(0, 136, 204, 0.2);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}

.ewwt-orghead__logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	padding: 0.4rem;
}

.ewwt-orghead__logo span {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--ewwt-primary);
}

.ewwt-orghead__body h1 {
	margin-bottom: 0.7rem;
}

.ewwt-orghead__belong {
	margin: 0.7rem 0 0;
	color: var(--ewwt-muted);
	font-size: 0.92rem;
}

.ewwt-orghead__belong strong {
	color: var(--ewwt-text);
}

.ewwt-grid--activities {
	align-items: stretch;
}

.ewwt-act {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.15rem;
	border-radius: var(--ewwt-radius);
	border: 1px solid var(--ewwt-border);
	background: var(--ewwt-surface);
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	animation: ewwtIn 0.35s ease both;
}

.ewwt-act:hover {
	transform: translateY(-2px);
	box-shadow: var(--ewwt-shadow);
	border-color: #cfe7f5;
}

.ewwt-act__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.75rem;
	min-height: 2rem;
}

.ewwt-act__date {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: #0c4a6e;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.ewwt-act__date--empty {
	visibility: hidden;
}

.ewwt-act__title {
	margin: 0 0 0.85rem;
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.3;
	color: var(--ewwt-text);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
	min-height: calc(1.3em * 3);
}

.ewwt-act__meta {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin-bottom: 0.85rem;
}

.ewwt-act__row {
	display: grid;
	gap: 0.15rem;
}

.ewwt-act__row strong {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ewwt-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.ewwt-act__row span {
	font-size: 0.92rem;
	color: var(--ewwt-text);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	min-height: calc(1.4em * 2);
}

.ewwt-act__row--empty {
	visibility: hidden;
}

.ewwt-act__people {
	margin-top: auto;
	padding-top: 0.85rem;
	border-top: 1px solid #eef2f6;
	min-height: 6.2rem;
}

.ewwt-act__people strong {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ewwt-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.ewwt-act__people .ewwt-contact-list {
	margin: 0;
}

.ewwt-act__people a {
	color: var(--ewwt-primary);
	font-weight: 600;
	text-decoration: none;
}

.ewwt-act__people a:hover {
	text-decoration: underline;
}

@media (max-width: 575px) {
	.ewwt-orghead {
		grid-template-columns: 72px 1fr;
		gap: 0.85rem;
	}

	.ewwt-orghead__logo {
		width: 72px;
		height: 72px;
	}
}


/* End */


/* Start:/local/templates/start-site/components/bitrix/news.list/enterprise/style.css?1786540788154*/
/* Legacy overrides for enterprise list — main styles live in enterprise-wwt-public.css */
.ewwt-grid .post,
.ewwt-grid .block_enterpr {
	all: unset;
}

/* End */
/* /local/templates/start-site/css/enterprise-wwt-public.css?178654078913935 */
/* /local/templates/start-site/components/bitrix/news.list/enterprise/style.css?1786540788154 */
