*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --menu-bg: #586361;
  --header-bg: #182a26;
  --accent: #b9496c;
  --text: #1a1a1a;
  --muted: #888;
  --border: #e5e5e5;
  --max-w: 1310px;
}

html, body {
    overflow-x: hidden;
}


body { font-family: 'Roboto', sans-serif; color: var(--text); background: #fff; }

/* ===== OVERLAY ===== */
#nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#nav-overlay.active { opacity: 1; pointer-events: all; }

/* ===== SIDEBAR NAV ===== */
#sidebar {
  position: fixed; top: 0; left: -320px; width: 300px; height: 100%;
  background: var(--menu-bg); z-index: 1000;
  transition: left 0.35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
#sidebar.open { left: 0; }

.sidebar-header {
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sidebar-logo { color: #fff; font-size: 22px; font-weight: 900; letter-spacing: 1px; }
.sidebar-close {
  background: none; border: none; color: #fff;
  font-size: 26px; cursor: pointer; line-height: 1;
  opacity: 0.8; transition: opacity 0.2s;
}
.sidebar-close:hover { opacity: 1; }

#sidebar nav { padding: 10px 0 30px; }
#sidebar nav a {
  display: block; padding: 12px 24px;
  color: #fff; text-decoration: none;
  font-size: 15px; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, padding-left 0.2s;
}
#sidebar nav a:hover { background: rgba(255,255,255,0.1); padding-left: 32px; }

/* ===== HEADER ===== */
header {
  position: relative; z-index: 200;
  background: var(--header-bg);
}
.header-top {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;  
  height: 57px;
  gap: 12px;
}
.header-left { display: flex; align-items: center; gap: 18px; }

.burger-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px; 
}
.burger-btn span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s;
  margin-bottom: 2px;
}
.burger-btn span:nth-child(2){
   width:25px
}

.burger-btn span:nth-child(3){
   width:15px
}

.header-right { display: flex; align-items: center; gap: 12px; }

.lang-switcher { display: flex; gap: 25px; }
.lang-switcher a {
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.6);
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.lang-switcher a.active, .lang-switcher a:hover { color: #fff; }

/* ===== SEARCH ===== */
.search-wrap { position: relative; display: flex; align-items: center; }
.search-btn {
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 16px;
  display: flex; align-items: center;
  padding: 2px;
  transition: color 0.2s;
  margin-left:23px;
}
.rec-title {
	margin-left:20px;
	display: flex;
    align-items: center;
	border-bottom:2px solid #a0a0a0;
	padding-bottom:10px
}
.rec-title b {
	text-transform:uppercase;
	font-size:11px;
	margin-left:5px;
	margin-top: 3px;
}

.sidebar-sticky .rec-title img {
	margin-left:-2px
}

.search-btn:hover { color: var(--accent); }

#search-form {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  background: var(--header-bg);
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  overflow: hidden;
  width: 0; opacity: 0;
  pointer-events: none;
  transition: width 0.35s ease, opacity 0.25s;
  white-space: nowrap;
  z-index: 10;
}
#search-form.open {
  width: 357px; opacity: 1; pointer-events: all;
}
#search-form input {
  border: none; outline: none; padding: 10px;
  font-family: 'Roboto', sans-serif; font-size: 13px;
  flex: 1; width: 100%;
  background: transparent;
  color: #fff;
}
#search-form input::placeholder { color: rgba(255,255,255,0.5); }
#search-form button {
  background: transparent; border: none; cursor: pointer;
  color: #fff; padding: 5px 10px; font-size: 14px;
  transition: color 0.2s;
  margin-left: 0;
}
#search-form button:hover { color: var(--accent); }

/* ===== CONTENT ===== */
.container { max-width: var(--max-w); margin: 0 auto;}

/* ===== HERO GRID ===== */
.hero-section { padding: 42px 0 0;  }

.hero-grid {
  display: grid;
  grid-template-columns: 257px 653px 399px;
  gap: 0;
  align-items: start;
}

/* LEFT COLUMN — 257px */
.hero-left {
  width: 257px;
  display: flex; flex-direction: column;
}

/* CENTER COLUMN — 653px (37px gap + 616px content) */
.hero-center {
  width: 653px;
  display: flex; 
  flex-direction: column;
  padding-left: 37px;
  box-sizing: border-box;
}

/* RIGHT COLUMN — 399px (25px gap + 374px content) */
.hero-right {
  width: 399px;
  padding-left: 25px;
  box-sizing: border-box;
}

.hero-social { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom:20px; justify-content: space-between;}
.hero-social a {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--text); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; text-decoration: none;
  transition: background 0.2s;
}
.hero-social a:hover { background: var(--accent); }

.hero-main-card .card-img-wrap { height: 347px; }
.hero-main-card .card-title {line-height:1.1}
.hero-main-card .card-title { font-size: 32px; font-weight: 500; margin-top: 10px; }
.hero-main-card .card-date {color:#000100}

/* horizontal small card (photo left, text right) */
.card-horizontal {
  display: flex; gap: 26px; align-items: flex-start;
  margin-bottom:14px
}

.logo img {
	width:56px
}

.card-horizontal .card-img-wrap {
  width: 337px; min-width: 337px; height: 190px; flex-shrink: 0;
}
.card-horizontal .card-body { flex: 1; }

/* RIGHT COLUMN — see definition above */

/* ===== CARD BASE ===== */
.card { position: relative; border-bottom: 1px solid #f0f3f7; padding-bottom:25px; margin-bottom: 25px;}
.card-horizontal {border-bottom:0}
.card-horizontal {border-bottom:0}
.hero-left .card:last-child {border-bottom:0}
.card-img-wrap {
  overflow: hidden; border-radius: 6px;
  background: #ddd;
}
.card-img-wrap .img-placeholder,
.card-img-wrap img {
  transition: transform 0.4s ease;
  width: 100%; height: 100%; display: block; object-fit: cover;
  border-radius: 8px;
  background-size: cover;
}
.card:hover .card-img-wrap .img-placeholder,
.card:hover .card-img-wrap img { transform: scale(1.04); }

.card-date { font-size: 12px; color: var(--muted); margin: 21px 0 10px 0; }
.card-title {
  font-size: 18px; font-weight: 400; line-height: 1.3;
  color: var(--text); text-decoration: none; display: block;
}
.card-title:hover { color: var(--accent); }

/* left column cards */
.hero-left .card .card-img-wrap  { height: 145px; }
.black-back .card .card-img-wrap { height: 200px; position:relative; }
/* sidebar recommended */

.photosdays .newsbreadcrumb .last {
	display:none;
}

.sidebar-recs h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--accent); margin-bottom: 12px;
}
.rec-item { padding: 0 0 17px 20px; border-bottom: 1px solid var(--border); }
.rec-item:last-child { border-bottom: none; }
.rec-item .rec-date { font-size: 13px; color: var(--muted); margin:17px 0 14px; }
.rec-item a {
  font-size: 18px; font-weight: 500; color: var(--text);
  text-decoration: none; line-height: 1.2; display: block;
}
.rec-item a:hover { color: var(--accent); }
.highlight { color: var(--accent); }
.marginbot {margin-bottom:20px}

/* ===== BANNER ===== */
.banner {
  margin: 31px 0 0 0;
  border-top:2px solid #a0a0a0
}
.banner img, .image img {
	width:100%
} 


.banner h2 {
  font-size: 26px; font-weight: 900; color: #2e7d32;
  text-transform: uppercase; letter-spacing: 2px;
}
.banner p { font-size: 13px; color: #388e3c; margin-top: 4px; font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 16px 0 22px; border-top: 2px solid #a0a0a0; margin-top:40px}
.section .card {
	border:0;
	margin-bottom:0
}
.section-title {
  font-size: 32px; font-weight: 700; margin-bottom: 16px;
 }
 .section-title i {
	 font-style:normal
 }
 
.section-title a {
	text-decoration:none;
	color:#1a1a1a
}

/* 4-col grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.grid-4 .card-img-wrap { height: 174px; }

/* Video section */
.video-grid { display: flex; gap: 42px; }
.video-side { display: flex; flex-direction: column; gap: 42px; flex: 1;}
.video-main { width: 860px;  flex-shrink: 0; }
.video-side { width: 423px;  flex-shrink: 0; }

/* Thumb — контейнер с позиционированием для overlay */
.video-thumb {
  position: relative;
  border-radius: 6px; overflow: hidden;
  background: #222; cursor: pointer;
  display: block;
}
.video-thumb .img-placeholder { display: block; background-size: cover; background-position: center; }
.video-main .video-thumb .img-placeholder { height: 485px; }
.video-side .video-thumb .img-placeholder { height: 222px; }

/* Тёмный градиент снизу поверх картинки */
.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 45%, transparent 100%);
  border-radius: 6px;
  pointer-events: none;
}

/* Overlay с текстом — поверх градиента */
.video-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  z-index: 2;
  pointer-events: none;
}

/* Play кнопка — поверх всего */
.play-btn {
  position: absolute; top: 16px; left: 30px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 3;
}

.video-main .play-btn {
 left: 34px;
 top:30px 
}

.video-thumb:hover .play-btn { background: #fff; transform: scale(1.1); }
.play-btn::after {
  content: ''; display: block;
  border-left: 11px solid #1a1a1a;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 2px;
}

/* Текст внутри thumb */
.video-main .video-caption {
  font-size: 32px; font-weight: 700;
  color: #fff; line-height: 1.25;
  display: block;
}
.video-main .video-overlay {
	padding:40px
} 
.video-side .video-caption {
  font-size: 18px; font-weight: 700;
  color: #fff; line-height: 1.3;
  display: block;
}
.video-date {
  font-size: 12px; color: rgba(255,255,255,0.75);
  margin-bottom: 6px; display: block;
}

/* ===== PLACEHOLDER IMAGES ===== */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 20px;
}

/* ===== FOOTER ===== */
footer { 
  background: #2a393c; 
  color: #ccc; 
  padding: 40px 0 20px; 
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

/* Logo Column */
.footer-logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Links + Social Column */
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social a:hover {
  background: var(--accent);
}


.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #fff;
  color: #2a393c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Info Columns */
.footer-info-col {
  display: flex;
  flex-direction: column;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-item a {
	color:#fff;
	font-size:13px;
	text-decoration:none;
}

.footer-info-item a:hover {
	color: var(--accent);
}

.footer-info-label {
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
}

.footer-info-text {
  font-size: 12px;
  color: #fff;
  line-height: 1.5;
}

.footer-counter {
  margin-top: 10px;
}

.footer-counter img {
  max-width: 120px;
  height: auto;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 20px;
  padding-bottom:50px;
  font-size: 10px;
  color: #666;
  line-height: 1.6;
}


/* ===== ARTICLE LAYOUT ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 353px;
  gap: 60px;
  padding: 37px 0 0 0;
}

/* ===== ARTICLE MAIN ===== */
.article-main {
  background: #fff;
  padding: 0 0 40px 0; /* Отступ слева как на 2 картинке */
  max-width: 100%;
}

/* Ограничиваем контент */
.article-main {
  background: #fff;
  padding: 0 0 40px 0;
  max-width: 100%;
  overflow: hidden; /* Обрезаем все что вылезает */
}

/* Ограничиваем изображения */
.detail-news-body__alltext img,
.detail-news-body__alltext picture,
.detail-news-body__alltext figure {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ограничиваем контент текста */
.detail-news-body__alltext {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.bx-breadcrumb .last {
	text-transform:uppercase;
}


.bx-breadcrumb-item {
	display:inline-block;
	vertical-align:top;
}

figcaption {
	display: block;
    margin-bottom: 15px;
    font-size: 14px;
}

.list_news .card {
	margin: 0
}

.list_news {
	margin:25px 0 0 0
}

.newssectit {
	margin:20px 0
}

.margintop {
	margin-top:30px
}

.likes {
    margin-top: -20px;
	display: flex
}
.likes a {
    position: relative;
    margin: 0 12px
}
.likes a b {
    position: absolute;
    left: 9px;
    top: -8px;
    background: #e5eff6;
    color: #a5b0b3;
    padding: 3px 8px;
    border-radius: 25px;
    font-size: 10px;
}
.likes a.likes__select b,
.likes a:hover b {
    color: #000;
}
.likes a.load b:after {
    background: url("../images/wait.gif") center center no-repeat #e5eff6;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    border-radius: 25px;
}
.likes img {
    margin-top: 20px;
}
.reactions {
    display: flex;
    gap: 20px;
}
.flexmob {
    margin-bottom: 0;
}

/* Ограничиваем главное фото */
.mainfot {
  max-width: 100%;
  width: 100%;
}

.article-main .hero-social {
  gap:16px;	
}

.article-sidebar .rec-title {
	margin-left:0
}
.article-sidebar .rec-item {
	padding-left:0
}

.content {padding-left:77px}

/* ===== ARTICLE HEADER BAR ===== */
.article-header-bar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
 
}
.article-header-bar .hero-social {
	margin-bottom:0
}


/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-left: 77px;
  position: relative;
  border-bottom:3px solid #000;
  padding-bottom:11px;
  padding-top: 5px;
}


.breadcrumb a , .breadcrumb span {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--text);
  font-weight: 400;
}

.breadcrumb span:last-child {
  color: #000;
}

/* ===== SOCIAL ICONS ===== */
.article-social {
  display: flex;
  gap: 8px;
}

.article-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.article-social a:hover {
  transform: scale(1.1);
}

/* ===== HEADLINE ===== */
.article-headline {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
  max-width:750px
}

/* ===== META ===== */
.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
  width:100%; 
  flex-wrap: wrap;
}

.nomargin .article-meta {
	margin-bottom: 0;
}

.block-oprosnik-dynamic {
	margin-left: -45px;
    padding-left: 45px;
}

.block-oprosnik__answers {
	margin-left:-45px
}

.meta-left {
  margin-left: 77px;
  margin-bottom:0!important
}

.video-page_header__info {
	margin-top:20px
}

.meta_buttons {
	align-items:end;
	margin-left: -77px;
    width: calc(100% + 77px);
	border-top:2px solid #a0a0a0;
	padding-top:20px;
	 justify-content: space-between;
}

	.tags{
				margin-bottom:15px;
			}

			.tags a{
				font-size:13px;
				text-decoration:none;
				color:#c43b4f;
				margin-right:15px;
				font-weight:600;
			}

			.share{
				display:flex;
				gap:12px;
			}

			.soc{
				width:40px;
				height:40px;
				border-radius:50%;
				display:flex;
				align-items:center;
				justify-content:center;
				color:#fff;
				font-size:14px;
				cursor:pointer;
			}

			.fb{background:#3b5998;}
			.vk{background:#4c75a3;}
			.ok{background:#f58220;}
			.tg{background:#229ED9;}
			.tw{background:#1DA1F2;}
			.wa{background:#4CAF50;}

			.reactions{
				display:flex;
				gap:20px;
			}

			.reaction{
				text-align:center;
				font-size:15px;
				position:relative;
			}

			.count{
				position:absolute;
				top:-24px;
				left:50%;
				transform:translateX(-50%);
				background:#e5e9ed;
				border-radius:50%;
				font-size:12px;
				padding:3px 6px;
			}

.article-date {
  font-weight: 400;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-author a {
	text-decoration:none;
}

.article-author a:hover {
	color:var(--accent);
}

.text_block {
	padding:30px 0
}

.uk-subnav {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 0;
    list-style: none;
	gap:20px
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border:4px solid #e7e9eb
}

.author-name {
  color: var(--text);
  font-weight: 500;
}

/* ===== MAIN IMAGE ===== */
.article-img {
  position: relative;
  margin: 0 0 20px 0;
  border-radius: 8px;
  overflow: hidden;
  width:100%  
}

.article-img img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.article-img-caption {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
}

/* ===== CONTENT ===== */
.article-content {
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
}

.article-content iframe {
	margin:0 auto!important;
	text-align:center;
	width:100%;
	height:400px;
}


.article-content iframe.instagram-media {
	height:770px;
}

.article-content a{
	color: var(--accent);
}
.article-content a:hover{
	color: #723045;
}

.article-content .lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.article-content p {
  margin-bottom: 20px;
}

/* ===== BLOCKQUOTE ===== */
.article-quote {
    position: relative;
    margin: 30px 0 20px -77px;
    width: calc(100% + 77px);
    padding: 30px 40px 30px 77px;
    background: #f2f2f2;
    border-radius: 10px;
	font-style:italic;
}
/* верхняя кавычка */
.article-quote::before {
    content: "“";
    position: absolute;
    top: -33px;
    left: 25px;
    font-size: 100px;
    font-weight: 500;
    color: #000;
}

/* нижняя кавычка */
.article-quote::after {
    content: "”";
    position: absolute;
    bottom: -90px;
    right: 54px;
    font-size: 100px;
    font-weight: 500;
    color: #000;
}

.article-quote p {
    margin: 0;
}


.crumb-arrow{
    width:14px;
    height:14px;
    stroke:#464646;
    stroke-width:2;
    fill:none;
}


.card-img-link {
	width:100%;
	display:block;
}
.card-horizontal .card-img-link {
	width:337px
}

/* ===== TAGS ===== */
.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 40px 0 30px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f0f0f0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.tag:hover {
  background: #e0e0e0;
}

/* ===== SHARE ===== */
.article-share {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.vk { background: #4a76a8; }
.share-btn.ok { background: #ee8208; }
.share-btn.telegram { background: #0088cc; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
  transform: scale(1.1);
}


.share-socials {
    font-size: 0;
    white-space: nowrap;
}
.share-socials__button {
    display: inline-block;
    vertical-align: top;
    background: none;
    border: 0;
    padding: 0;
    margin: 0 25px 0 0;
    cursor: pointer;
}

.share-socials__icon {
    display: block;
    border-radius: 90px;
    width: 32px;
    height: 32px;
    line-height: 33px;
    font-size: 22px;
    font-family: 'utlicomoon';
}

.share-socials__icon-fb:before {
	line-height: 28px;
} 

.share-socials__icon-wh:before {
	line-height: 33px;
}

.share-socials__icon:before {
    display: block;
    color: #fff;
}
.share-socials__icon-fb {
    background: #45639e;
}
.share-socials__icon-fb:before {
    content: '\e619';
}
.share-socials__icon-vk {
    background: #51749c;
}
.share-socials__icon-vk:before {
    content: '\e603';
}
.share-socials__icon-ok {
    background: #fa890f;
}
.share-socials__icon-ok:before {
    content: '\e60d';
}
.share-socials__icon-tm {
    background: #0088cc;
}
.share-socials__icon-tm:before {
    content: '\e901';
}
.share-socials__icon-tw {
    background: #23b9eb;
	border:5px solid #000
}

.share-socials__icon-wh {
    background: #5edb57;
}
.share-socials__icon-wh:before {
    content: '\e623';
}



.block-oprosnik__h:before {
	display:none!important
}

.nomargin {
	margin:0!important
}


/* ===== TELEGRAM BANNER ===== */
.article-content a.telegram-banner, .telegram-banner {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #039be5;
  color: #fff;
  padding: 22px 25px;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width:100%;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
}

/* ===== POLL ===== */
.article-poll {

  margin:0 0 40px 0;
}

.article-poll h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--text);
}

.poll-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.4;
}

.poll-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.poll-results {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

/* ===== SIDEBAR ===== */
.sidebar-sticky {
  position: sticky;
  top: 80px;
}

.sidebar-rec-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 15px;
  border-bottom: 2px solid #a0a0a0;
  margin-bottom: 25px;
}

.sidebar-rec-header svg {
  width: 18px;
  height: 18px;
}

.sidebar-rec-header span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.sidebar-recs {
  display: flex;
  flex-direction: column;
}

.sidebar-recs .card-img-wrap {
    height: 200px;
	margin-top:25px
}

.rec-date {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.rec-item h3 {
  margin: 0;
}

.rec-item a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.rec-item a:hover {
  color: var(--accent);
}


.main__n-l-t__list {
	padding-right:30px
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .article-main {
    padding: 30px 40px;
  }
  
  .article-headline {
    font-size: 32px;
  }
}

@media (max-width: 768px) {


.article-content iframe {
	height:245px
}


.article-content iframe.instagram-media {
    height: 590px 
}
	

.share-socials__button {
	margin-bottom:35px!important
}

	
  .article-main {
    padding: 0;
  }
  
  .article-headline {
    font-size: 28px;
  }
  
  .article-social {
    flex-wrap: wrap;
  }
  
  .lang-switcher {
    display: none;
  }
}





/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 200px 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-logo {
    font-size: 36px;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
}



.uk-pagination {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    padding: 0;
    list-style: none
}

.uk-pagination>* {
    flex: none;
    padding-left: 20px;
    position: relative
}

.uk-pagination>*>* {
    display: block;
    color: #999;
    transition: color .1s ease-in-out
}

.uk-pagination>*>:focus,
.uk-pagination>*>:hover {
    color: #666;
    text-decoration: none
}

.uk-pagination>.uk-active>* {
    color: #666
}

.uk-pagination>.uk-disabled>* {
    color: #999
}

.news-l-p.uk-pagination {
    margin-top: 30px;
    margin-bottom: 30px;
}

.uk-flex-center {
    justify-content: center;
}

.news-l-p.uk-pagination li a, .news-l-p.uk-pagination li .a {
    font-family: "Exo 2", sans-serif;
    font-size: 18px;
    color: #586361;
    padding: 10px 11px;
    border-radius: 26px;
    font-weight: 700;
	text-decoration:none
}

.news-l-p.uk-pagination li.uk-active a, .news-l-p.uk-pagination li.uk-active .a {
    background: #ffffff;
    color: #b9496c;
    padding: 10px 16px;
}

.newsbreadcrumb .bx-breadcrumb-item {
    float: left;   
    white-space: nowrap;
    line-height: 13px;
    vertical-align: middle;
    position: relative;
    margin-right: 25px;
}
.video__page_nav .newsbreadcrumb .bx-breadcrumb-item, .view_class_spec .newsbreadcrumb .bx-breadcrumb-item {
margin-bottom: 0;
    margin-top: 0;
}
.video__page_nav .last  {
	display:none;
}


.spec_nav .newsbreadcrumb .bx-breadcrumb-item.last {
    display: block!important;
}
.mainfot .newsbreadcrumb .bx-breadcrumb-item {
    margin-right: 35px;
}
.newsbreadcrumb .bx-breadcrumb-item.last {
    margin-right: 0;
}	
.newsbreadcrumb .bx-breadcrumb-item:before , .newsbreadcrumb .bx-breadcrumb-item.last:before  {
    content: ' ';
    background: url(../images/2026/galochka.png) no-repeat left top;
    position: absolute;
    left: -15px;
    top: 0px;
    width: 6px;
    height: 11px;
}



.newsbreadcrumb .bx-breadcrumb-item:first-child:before {
	display:none;
}


.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
    margin: 0 0 20px 0;
}
.article-content ul, ol {
	margin:0 0 20px 30px 
}


.lenta {
	width:328px;
	margin-left:30px
}
/* Контейнер трека */
.simplebar-track.simplebar-vertical {
  width: 3px !important;
  background-color: #f0f0f0 !important;
  border-radius: 0 !important;
  right: 0 !important;
  top: 0;
  bottom: 0;
  position: absolute !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10;
  transition: width 0.3s ease; /* 🎯 Плавное увеличение ширины */
}
/* Обёртка ползунка */
.simplebar-scrollbar {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
/* Сам ползунок */
.simplebar-scrollbar::before {
  content: '';
  display: block;
  background-color: var(--header-bg)!important;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  transition: background-color 0.3s ease, width 0.3s ease; /* 🎯 Плавность и цвета, и ширины */
}
/* Наведение на контейнер — увеличивает ширину трека */
[data-simplebar]:hover .simplebar-track.simplebar-vertical {
  width: 8px !important;
}
/* Наведение — меняем цвет ползунка */
[data-simplebar]:hover .simplebar-scrollbar::before {
  background-color: var(--accent)!important;
}

.uk-switcher {
	list-style:none;
}

.uk-list li{
	padding: 0 10px 17px 20px;
    border-bottom: 1px solid var(--border);
}

.uk-list li a {
	font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.uk-list li a:hover {
	color:var(--accent);
}

.main__n-l-t__items__d {
	font-size: 12px;
    color: var(--muted);
    margin: 10px 0 14px;
	display:block;
	font-weight:300
}

.news-switcher {
    text-align: center;
    background: #fff;
    margin: 0;
	
}
.news-switcher li {
    width: 46%;
    text-align: center;
    padding: 0 20px 8px 20px !important;
    box-sizing: border-box;
}

.scroller-adaptive__container {
    height: 675px;
    overflow: hidden;
}

.uk-switcher>:not(.uk-active) {
    display: none;
}

.news-switcher li a {
	color: #000;
    text-decoration: none;
    font-weight: 700;
}
.news-switcher li.uk-active {
    border-bottom: 3px solid #b9496c;
    padding-bottom: 8px;
}

.news-switcher li.uk-active a {
	color:#b9496c;
}

.news-switcher li a:hover {
 color: #666;
   
}
.news-switcher li.uk-active a:hover {
	color:#9f3355;
}

.uk-dropdown.uk-open {
    display: block;
}

.search-page {
	margin:60px auto;
}

/* ===== SEARCH PAGE STYLES ===== */
.search-page {
  padding: 40px 0;
  max-width: 100%;
  margin: 0 auto;
}

/* Search Form */
.search-page form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-page input[type="text"] {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
  color: #1a1a1a;
}

.search-page input[type="text"]:focus {
  border-color: #b9496c;
  box-shadow: 0 0 0 3px rgba(185, 73, 108, 0.1);
}

.search-page input[type="submit"] {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  background: #586361;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.search-page input[type="submit"]:hover {
  background: #6a7573;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 99, 97, 0.4);
}

.search-page input[type="submit"]:active {
  transform: translateY(0);
  background: #4d5856;
}

/* Divider */
.search-page > br {
  display: none;
}

.search-page hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 30px 0;
}

/* Search Results */
.search-result-item {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
  position: relative;
}

.search-result-item:hover {
  border-color: #b9496c;
  box-shadow: 0 4px 16px rgba(185, 73, 108, 0.1);
  transform: translateY(-2px);
}

.search-page > a {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.search-page > a:hover {
  color: #b9496c;
}

.search-page > a::before {
  content: '📄';
  margin-right: 10px;
  font-size: 18px;
}

.search-page p {
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-page small {
  font-size: 13px;
  color: #888;
  display: inline-block;
  margin: 8px 12px 8px 0;
}

.search-page small:first-of-type {
  color: #b9496c;
  font-weight: 600;
}

.search-page small:first-of-type::before {
  content: '🕐 ';
}

.search-page small a {
  color: #b9496c;
  text-decoration: none;
  transition: color 0.2s;
}

.search-page small a:hover {
  color: #9a3b59;
  text-decoration: underline;
}

.search-page small + small::before {
  content: '📁 ';
  margin-right: 4px;
}

/* No Results Message */
.no-results {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 12px;
}

.no-results h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.no-results p {
  font-size: 16px;
  color: #666;
}

.ads-author-p {
	border-radius:35px
}

.uk-visible\@m.news-blocks__tabs { display: flex; flex-wrap: nowrap; list-style: none; margin: 0; padding: 0; gap: 12px; white-space: nowrap; overflow-x: auto; align-items: stretch; }

.uk-visible\@m.news-blocks__tabs li { display: flex; }

.uk-visible\@m.news-blocks__tabs li a { display: flex; align-items: center; justify-content: center; text-align: center; padding: 10px 20px; background: #f0f0f0; text-decoration: none; color: #333; min-width: 80px; }

.uk-visible\@m.news-blocks__tabs li.uk-active a { background: #333; color: #fff; }

.uk-visible\@m.news-blocks__tabs li a:hover { background: #ddd; }

/* ===== RESPONSIVE ===== */

/* Tablets (до 768px) */
@media (max-width: 768px) {
  .search-page {
    padding: 30px 0;
  }
  
  .search-page form {
    padding: 24px;
    flex-direction: column;
    gap: 15px;
  }
  
  .search-page input[type="text"] {
    width: 100%;
    font-size: 15px;
    padding: 12px 16px;
  }
  
  .search-page input[type="submit"] {
    width: 100%;
    padding: 13px 28px;
  }
  
  .search-result-item {
    padding: 20px;
  }
  
  .search-page > a {
    font-size: 18px;
  }
  
  .search-page > a::before {
    font-size: 16px;
  }
  
  .search-page p {
    font-size: 14px;
  }
  
  .search-page hr {
    margin: 20px 0;
  }
}

/* Mobile (до 480px) */
@media (max-width: 480px) {
  
  .search-page {
    padding: 20px 0;
  }
  
  .search-page form {
    padding: 20px;
    gap: 12px;
  }
  
  .search-page input[type="text"] {
    font-size: 14px;
    padding: 11px 14px;
  }
  
  .search-page input[type="submit"] {
    font-size: 14px;
    padding: 12px 24px;
  }
  
  .search-result-item {
    padding: 16px;
  }
  
  .search-page > a {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .search-page > a::before {
    font-size: 14px;
    margin-right: 8px;
  }
  
  .search-page p {
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
  }
  
  .search-page small {
    font-size: 12px;
    display: block;
    margin: 6px 0;
  }
  
  .search-page hr {
    margin: 15px 0;
  }
}

/* Extra small mobile (до 375px) */
@media (max-width: 375px) {
  .search-page form {
    padding: 16px;
  }
  
  .search-page input[type="text"] {
    font-size: 13px;
    padding: 10px 12px;
  }
  
  .search-page input[type="submit"] {
    font-size: 13px;
    padding: 11px 20px;
  }
  
  .search-result-item {
    padding: 14px;
  }
  
  .search-page > a {
    font-size: 15px;
  }
  
  .search-page p {
    font-size: 12px;
  }
  
  .search-page small {
    font-size: 11px;
  }
}
/* ===== RESPONSIVE ===== */


/* ===== ARTICLE RESPONSIVE ===== */

@media (max-width: 1024px) {
  .content {
    padding-left: 40px;
  }
  .breadcrumb {
    padding-left: 40px;
  }
  .meta-left {
    margin-left: 40px;
  }
  .meta_buttons {
    margin-left: -40px;
    width: calc(100% + 40px);
  }
  .article-quote {
    margin-left: -40px;
    width: calc(100% + 40px);
    padding-left: 40px;
  }
  .article-headline {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
	
   .card-horizontal .card-img-link {
	   width:100%
   }	
   
   .block-oprosnik__answers {
		margin-left: 0;
	}
	
   .block-oprosnik ul {  
     padding: 9px 0 0 0!important;
   }
   
   .block-oprosnik-dynamic {
     margin-left: 0;
     padding:0 15px; 
    }

   .video_player iframe {
	   height:300px
   }	
		
  .article-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }
  .article-sidebar {
    display: none;
  }
  .content {
    padding-left:0;
	padding-right:0;
  }
  .breadcrumb {
    padding-left: 20px;
	font-size:9px	
  }
  .article-header-bar {
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .article-header-bar .hero-social {
    justify-content: flex-start;
  }
  .article-headline {
    font-size: 26px;
    max-width: 100%;
  }
  .article-img {
    max-width: 100%;
  }
  .article-img img {
    max-width: 100%;
  }
  .meta-left {
    margin-left: 0;
  }
  .meta_buttons {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .article-quote {
    margin-left: 0;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .article-quote::before {
    top: -20px;
    left: 5px;
    font-size: 70px;
  }
  .article-quote::after {
    bottom: -60px;
    right: 20px;
    font-size: 70px;
  }
  .reactions {
    gap: 12px;
    flex-wrap: wrap;
  }
  .share {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  
  .breadcrumb {
        padding-left: 0;
        width: 100%;
   }
 
  .article-headline {
    font-size: 22px;
  }
  .article-content {
    font-size: 16px;
  }
  .article-content .lead {
    font-size: 16px;
  }
  .telegram-banner {
    font-size: 12px;
    gap: 12px;
    padding: 15px;
  }
  .soc {
    width: 34px;
    height: 34px;
  }
}



/* ═══════════════════════════════════════════════════════
   TWO COLUMN SECTION (EL рекомендует + Видео)
   ═══════════════════════════════════════════════════════ */

.two-column-section {
  background: #fff;
  padding: 50px 0;

}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
 
}

.video_block {
	 border-top: 2px solid #a0a0a0;
	 
}

.video_block .card .card-img-wrap {
     height: 174px;
	 position: relative;
}

.video-col .card {
	border:0;
	padding-bottom:0;
	margin-bottom:0
}

/* Section Header */
.section-header {
  margin-bottom: 39px;  
  padding-top:16px
}

.section-header .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-line {
  width: 100%;
  height: 1px;
  background: #000;
}

/* ─── LEFT: EL рекомендует ─────────────────────────── */

.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.recommend-item {
  padding-bottom: 8px;
 
}

.recommend-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recommend-date {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 7px;
}

.recommend-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.recommend-title:hover {
  color: #b9496c;
}

/* ─── RIGHT: Видео ──────────────────────────────────── */
.video-col {
  width: 301px;
}

.video-col .section-header .section-title {
	margin-bottom:0
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  
}


.video-link {
  display: flex;
  gap: 35px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.video-link:hover {
  opacity: 0.85;
}

.video-item-large .video-link {
  flex-direction: column;
  gap: 15px;
}

.video-thumb {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  border-radius:0 0 8px 8px;
}

.video-item-large .video-thumb {
  width: 100%;
  height: 280px;
}

.video-item .video-thumb {
  width: 165px;
  height: 97px;
}

.video-thumb .img-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.video-link:hover .play-btn {
  background: rgba(185, 73, 108, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  flex: 1;
}

.video-date {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0;
}


.video-link:hover .video-title {
	color: #b9496c;
}

.video-item-large .video-title {
  font-size: 18px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}




/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .two-column-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .two-column-section {
    padding: 40px 0;
  }
  
  .section-header .section-title {
    font-size: 20px;
  }
  
  .recommend-title {
    font-size: 15px;
  }
  
  .video-title {
    font-size: 15px;
  }
  
  .video-item-large .video-title {
    font-size: 16px;
  }
  
  .video-item-large .video-thumb {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .two-column-section {
    padding: 30px 0;
  }
  
  .recommend-list {
    gap: 20px;
  }
  
  .recommend-item {
    padding-bottom: 20px;
  }
  
  .recommend-title {
    font-size: 14px;
  }
  
  .video-link {
    flex-direction: column;
    gap: 12px;
  }
  
  .video-item .video-thumb {
    width: 100%;
    height: 180px;
  }
  
  .video-title {
    font-size: 14px;
  }
  
  .video-item-large .video-thumb {
    height: 200px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1340px) {
  .hero-grid { grid-template-columns: 257px 1fr 320px; }
  .hero-center { width: 100%; }
  .hero-right { width: 320px; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 257px 1fr; }
  .hero-right { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {  
  .video_block .video-col:first-child {display:none;} 	
  .card {padding-bottom:15px} 	
  .card-date {margin:15px 0 10px 0;}
  .card-horizontal .card-date {margin:10px 0;}
  .video-main .video-caption {line-height:1.1}
  .hero-main-card .card-title {line-height:1.0;font-size: 24px;}
  .hero-section {padding-top:25px}
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left, .video-col { width: 100%;}
  .video-main { width: 100%;}
  .video-side { width: 100%; gap: 20px; }
  .hero-center { width: 100%; padding-left:0; order:-1;}
  .card-horizontal { flex-direction: column; }
  .card-horizontal .card-img-wrap { width: 100%; height: 200px; min-width:100%; }
  .hero-left .card .card-img-wrap, .black-back .card .card-img-wrap { height: 200px;}
  .video-grid { flex-direction: column; gap: 20px; } 
  .lang-switcher, .hero-social { display: none; }
  header, .container, .video-section  {padding:0 15px}
  footer {padding-left:15px; padding-right:15px}
  .video-section {
	margin: 0 -15px;
    padding: 15px;
  }
  .section{
	  padding-bottom:0;
	  margin-top:20px
  }
  
 .video-main .video-overlay, .video-overlay {
    padding: 20px;
 }
 
 .video-main .play-btn {
    left: 17px;
 }

 
 .header .lang-drop {
        transition: none;
        animation-duration: inherit !important;
        padding: 0 0 10px 0;
        top: 41px !important;
        width: 43px !important;
    }
	
 .desk_lang {
	 position:relative;
 }	
 
 .desk_lang button.lang-btn {
        padding:10px 0;
        right: 0;
        background: none;
        color: #fff;
        box-shadow: 0 0 0 rgba(0, 0, 0, .10);
        font-size: 15px;
        border: 0;
		min-width:40px
    }
	
.desk_lang .uk-open {
    background: #586361;
    color: #fff;
    box-shadow: 0 7px 12px rgba(0, 0, 0, .10);
}

    .uk-dropdown {
        display: none;
        position: absolute;
        z-index: 1020;
        box-sizing: border-box;
        padding:5px 10px;
        background: #fff;
        color: #666;
        box-shadow: 0 5px 12px rgba(0, 0, 0, .15);
		border-radius:0 0 12px 12px 
    }	
	
	 .uk-dropdown li {
		 list-style:none;
		 padding-bottom:14px
	 }
	 .uk-dropdown li a {
		 color:#fff;
		 text-decoration:none
	 }
    
	.desk_lang button.uk-open {
       background: #586361;
	   border-radius:12px 12px 0 0;
	  
	}
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; gap: 0px;}
  .hero-main-card .card-img-wrap { height: 200px; }
}

@media (max-width:375px) {

	#search-form.open {
		width: 310px;		
	}

}
