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

body {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f6f8;
  color: #111827;
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

/* TOP LINE */
.top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: #6b7280;
  font-size: 13px;
}

.top-line-left {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.top-line-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.currency {
  padding: 2px 8px;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 12px;
}

/* WEATHER WIDGET */
.weather-container {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.weather-current {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #111827;
}

.weather-city {
  font-weight: 500;
}

.weather-temp {
  font-weight: 600;
  color: #111827;
}

.weather-dropdown {
  position: relative;
}

.weather-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #4b5563;
  cursor: pointer;
  transition: color 0.2s ease;
}

.weather-toggle:hover {
  color: #00008b;
}

.weather-toggle svg {
  transition: transform 0.2s ease;
}

.weather-dropdown:hover .weather-toggle svg,
.weather-dropdown:focus-within .weather-toggle svg {
  transform: rotate(180deg);
}

.weather-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  max-height: 400px;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.weather-menu::-webkit-scrollbar {
  display: none;
}

.weather-dropdown:hover .weather-menu,
.weather-dropdown:focus-within .weather-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.weather-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 13px;
  color: #111827;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.weather-menu-item:last-child {
  border-bottom: none;
}

.weather-menu-item:hover {
  background-color: #f9fafb;
}

.weather-menu-city {
  font-weight: 500;
}

.weather-menu-temp {
  font-weight: 600;
  color: #4b5563;
}

/* HEADER */
.header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 12px 0 16px;
  border-bottom: 1px solid #e5e7eb;
}

/* HEADER BANNER */
.header-banner {
  width: 100%;
  height: 100px;
  margin: 16px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #e5e7eb;
}

.banner-image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: -16px;
  padding-left: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.tagline {
  font-size: 12px;
  color: #6b7280;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

/* Facebook - синий */
.social-icon-facebook {
  color: #1877F2;
}

.social-icon-facebook::before {
  background: #1877F2;
}

.social-icon-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #ffffff;
}

.social-icon-facebook:hover::before {
  opacity: 1;
}

/* Instagram - градиент */
.social-icon-instagram {
  color: #E4405F;
}

.social-icon-instagram::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #ffffff;
}

.social-icon-instagram:hover::before {
  opacity: 1;
}

/* Telegram - голубой */
.social-icon-telegram {
  color: #0088cc;
}

.social-icon-telegram::before {
  background: #0088cc;
}

.social-icon-telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
  color: #ffffff;
}

.social-icon-telegram:hover::before {
  opacity: 1;
}

/* YouTube - красный */
.social-icon-youtube {
  color: #FF0000;
}

.social-icon-youtube::before {
  background: #FF0000;
}

.social-icon-youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #ffffff;
}

.social-icon-youtube:hover::before {
  opacity: 1;
}


.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-btn {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: #f3f4f6;
  color: #111827;
}

.lang-btn.active {
  background: #00008b;
  color: #ffffff;
}

.lang-btn.active:hover {
  background: #00008b;
  color: #ffffff;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #111827;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* MAIN NAV */
.main-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
  font-size: 13px;
  align-items: center;
}

.nav-link {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: #4b5563;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link.active {
  background: #00008b;
  color: #ffffff;
  border-color: #00008b;
  font-weight: 500;
}

.nav-link:hover {
  background: #00008b;
  color: #ffffff;
  border-color: #00008b;
  transform: translateY(-2px);
}

.nav-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link-dropdown svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-link-dropdown svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  padding: 6px 0;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #111827;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-radius: 6px;
  margin: 2px 6px;
}

.nav-dropdown-item:hover {
  background: #00008b;
  color: #ffffff;
  transform: translateY(-1px);
}

/* LAYOUT */
.layout {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HERO SLIDER */
.hero {
  position: relative;
  padding: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #111827 100%);
  color: #f9fafb;
  overflow: hidden;
  height: 315px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-radio {
  display: none;
}

.hero-slides {
  position: relative;
  flex: 1;
  min-height: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 24px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
  align-items: center;
  z-index: 1;
}

.hero-media {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  height: 100%;
  min-height: 240px;
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-slide:hover .hero-media img {
  transform: scale(1.05);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.hero-title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-title a:hover {
  opacity: 0.9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #cbd5e1;
  margin: 4px 0;
}

.hero-meta span {
  display: flex;
  align-items: center;
}

.hero-meta span:not(:last-child) {
  position: relative;
  padding-right: 8px;
}

.hero-meta span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: 0;
  color: #64748b;
  font-weight: bold;
}

.hero-meta span:last-child {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid rgba(96, 165, 250, 0.2);
  margin-left: 4px;
}

.hero-text {
  font-size: 13px;
  line-height: 1.6;
  color: #d1d5db;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* slider visibility rules */
#hero-slide-1:checked ~ .hero-slides .hero-slide:nth-child(1),
#hero-slide-2:checked ~ .hero-slides .hero-slide:nth-child(2),
#hero-slide-3:checked ~ .hero-slides .hero-slide:nth-child(3) {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-dots {
  display: flex;
  gap: 10px;
  padding: 14px 24px;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2;
  position: relative;
}

.hero-dots label {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(96, 165, 250, 0.5);
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
}

#hero-slide-1:checked ~ .hero-dots label:nth-child(1),
#hero-slide-2:checked ~ .hero-dots label:nth-child(2),
#hero-slide-3:checked ~ .hero-dots label:nth-child(3) {
  background: #60a5fa;
  border-color: #60a5fa;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
}

.hero-dots label:hover {
  background: rgba(96, 165, 250, 0.3);
  border-color: #60a5fa;
  transform: scale(1.15);
}

/* BLOCKS */
.block {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.block-title {
  font-size: 16px;
  font-weight: 600;
}

.main-news .block-title {
  margin-bottom: 16px;
}

.block-more {
  font-size: 13px;
  color: #00008b;
}

/* NEWS FEED */
.news-feed {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #f3f4f6;
  font-size: 14px;
}

.news-item:first-child {
  border-top: none;
}

.news-time {
  font-weight: 500;
  color: #4b5563;
}

.news-text {
  color: #111827;
}

.news-item:hover .news-text {
  color: #00008b;
}

/* MAIN NEWS */
.main-news {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.main-news-feature {
  padding: 0 0 18px;
  border-bottom: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 16px;
  margin-bottom: 18px;
  transition: opacity 0.2s ease;
}

.main-news-feature:hover {
  opacity: 0.95;
}

.main-news-feature-media {
  border-radius: 12px;
  overflow: hidden;
  max-height: 180px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-news-feature:hover .main-news-feature-media {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}

.main-news-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.main-news-feature:hover .main-news-feature-media img {
  transform: scale(1.02);
}

.main-news-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 6px;
  background: #e0e0ff;
  font-size: 11px;
  color: #00008b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 2px;
}

.main-news-feature h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 6px;
  color: #111827;
  font-weight: 600;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-news-feature:hover h3 {
  color: #00008b;
}

.main-news-meta {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}

.main-news-meta span:first-child {
  font-weight: 500;
  color: #4b5563;
}

.main-news-feature p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
}

.main-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}

.main-news-list .main-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.main-news-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
  align-items: center;
  transition: background-color 0.2s ease;
  border-radius: 8px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}

.main-news-item:hover {
  background-color: #f9fafb;
}

.main-news-item .title {
  color: #111827;
  line-height: 1.4;
  margin-bottom: 6px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-news-item:hover .title {
  color: #00008b;
}

.main-news-item .time {
  font-weight: 600;
  color: #6b7280;
  font-size: 12px;
  display: inline-flex;
  margin-bottom: 4px;
}

.main-news-thumb {
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-news-item:hover .main-news-thumb {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.main-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.main-news-item:hover .main-news-thumb img {
  transform: scale(1.05);
}

.main-news-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-news-category {
  font-size: 11px;
  color: #00008b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ADVERTISING BANNER HORIZONTAL */
.ad-banner-horizontal {
  width: 100%;
  height: 100px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BANNER ASIDE */
[banner_aside],
.banner-aside {
  width: 100%;
  height: 600px;
  background: #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

[banner_aside] img,
.banner-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* VIDEO AND PHOTO SECTION */
.video-photo-section {
  margin-bottom: 0;
}

.video-photo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.video-photo-item {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.video-photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.video-photo-small-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* VIDEO PLAYLIST */
.video-playlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-playlist-item {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.2s ease;
}

.video-playlist-item:hover {
  background: #f9fafb;
}

.video-playlist-link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.video-playlist-link:hover {
  background-color: #f3f4f6;
}

.video-playlist-thumb {
  position: relative;
  width: 160px;
  min-width: 160px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
  flex-shrink: 0;
}

.video-playlist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-playlist-item:hover .video-playlist-thumb img {
  transform: scale(1.05);
}

.video-playlist-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 139, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-playlist-item:hover .video-playlist-play {
  background: rgba(0, 0, 139, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-playlist-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}

.video-playlist-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
  padding: 4px 0;
}

.video-playlist-category {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 4px;
  background: #e0e0ff;
  font-size: 10px;
  color: #00008b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.video-playlist-content h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.video-playlist-item:hover .video-playlist-content h4 {
  color: #00008b;
}

/* INFOGRAPHICS SECTION */
.infographics-section {
  margin-bottom: 0;
}

.infographics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.infographic-item {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.infographic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 139, 0.15);
  border-color: #00008b;
}

.infographic-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.infographic-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 139, 0.03) 0%, rgba(0, 0, 139, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.infographic-item:hover .infographic-link::before {
  opacity: 1;
}

.infographic-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0e0ff 0%, #f0f0ff 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.infographic-item:hover .infographic-icon {
  background: linear-gradient(135deg, #00008b 0%, #4169e1 100%);
  transform: scale(1.1) rotate(5deg);
}

.infographic-item:hover .infographic-icon svg path[fill],
.infographic-item:hover .infographic-icon svg circle[fill] {
  fill: #ffffff;
}

.infographic-item:hover .infographic-icon svg path[stroke],
.infographic-item:hover .infographic-icon svg circle[stroke] {
  stroke: #ffffff;
}

.infographic-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.infographic-category {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  background: #e0e0ff;
  font-size: 10px;
  color: #00008b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  transition: all 0.3s ease;
}

.infographic-item:hover .infographic-category {
  background: #00008b;
  color: #ffffff;
}

.infographic-content h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin: 0;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.infographic-item:hover .infographic-content h3 {
  color: #00008b;
}

.infographic-content p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.infographic-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.infographic-item:hover .infographic-arrow {
  color: #00008b;
  transform: translateX(4px);
}

.video-photo-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-photo-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e5e7eb;
}

.video-photo-item-large .video-photo-media {
  aspect-ratio: 16 / 9;
}

.video-photo-small .video-photo-media {
  aspect-ratio: 16 / 9;
  height: 120px;
}

.video-photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-photo-item:hover .video-photo-media img {
  transform: scale(1.05);
}

.video-photo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 139, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-photo-item-large .video-photo-play {
  width: 80px;
  height: 80px;
}

.video-photo-small .video-photo-play {
  width: 40px;
  height: 40px;
}

.video-photo-item:hover .video-photo-play {
  background: rgba(0, 0, 139, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-photo-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.video-photo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #00008b;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.video-photo-body {
  padding: 16px;
}

.video-photo-item-large .video-photo-body {
  padding: 20px;
}

.video-photo-small .video-photo-body {
  padding: 12px;
}

.video-photo-category {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  background: #e0e0ff;
  font-size: 11px;
  color: #00008b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  width: fit-content;
}

.video-photo-body h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.video-photo-item-large .video-photo-body h3 {
  font-size: 18px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.video-photo-small .video-photo-body h3 {
  font-size: 14px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.video-photo-item:hover .video-photo-body h3 {
  color: #00008b;
}

.video-photo-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #6b7280;
  align-items: center;
}

.video-photo-meta span:first-child {
  font-weight: 600;
  color: #4b5563;
}

/* SIDEBAR */
.youtube-player {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.youtube-player iframe {
  width: 100%;
  height: 315px;
  display: block;
  border: none;
}

.editor-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* TELEGRAM WIDGET */
.telegram-widget {
  background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
  color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.2);
}

.telegram-widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.telegram-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
  flex-shrink: 0;
}

.telegram-widget .block-title {
  color: #ffffff;
  margin: 0;
  font-size: 18px;
}

.telegram-widget-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

.telegram-widget-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #ffffff;
  color: #0088cc;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.telegram-widget-button svg {
  width: 20px;
  height: 20px;
  color: #0088cc;
  transition: transform 0.3s ease;
}

.telegram-widget-button:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.telegram-widget-button:hover svg {
  transform: scale(1.1);
}

.telegram-widget-button:active {
  transform: translateY(0);
}

.editor-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.editor-thumb {
  border-radius: 10px;
  overflow: hidden;
  height: 70px;
}

.editor-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editor-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.editor-body .date {
  font-size: 12px;
  color: #9ca3af;
}

.editor-category {
  font-size: 11px;
  color: #00008b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.editor-body h3 {
  font-size: 14px;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.editor-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.editor-body h3:hover {
  color: #00008b;
}

.editor-body h3:hover a {
  color: #00008b;
}

.mini-card {
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
  margin-top: 6px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 10px;
}

.mini-thumb {
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-body .date {
  font-size: 12px;
  color: #9ca3af;
}

.mini-body h3 {
  font-size: 14px;
  margin-top: 2px;
}

.quote-card {
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
  margin-top: 6px;
  font-size: 13px;
  color: #4b5563;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.quote-photo {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  overflow: hidden;
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-body .author {
  margin-top: 6px;
  font-weight: 500;
  color: #111827;
}

/* VIDEO */
.video-block-main {
  overflow: hidden;
}

.video-layout {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 18px;
  align-items: stretch;
}

.video-column-small {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease;
}

.video-item:hover {
  transform: translateY(-2px);
}

.video-item-main {
  justify-content: space-between;
}

.video-item-small {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.video-thumb {
  position: relative;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  transition: box-shadow 0.3s ease;
}

.video-item:hover .video-thumb {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumb img {
  transform: scale(1.05);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.2), transparent 70%);
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-item:hover .video-play {
  background: radial-gradient(circle at center, rgba(0, 0, 139, 0.3), transparent 70%);
}

.video-play span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-play span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #f9fafb;
}

.video-item:hover .video-play span {
  background: #00008b;
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.video-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.video-tag {
  font-size: 11px;
  color: #00008b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.video-body h3 {
  font-size: 15px;
  line-height: 1.4;
  color: #111827;
  font-weight: 500;
  transition: color 0.2s ease;
}

.video-item:hover .video-body h3 {
  color: #00008b;
}
.video-item-small .video-thumb {
  height: 70px;
  width: 120px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.video-item-small .video-body h3 {
  font-size: 13px;
  line-height: 1.3;
}

/* CITIES NAVIGATION */
.cities-section {
  margin-top: 40px;
  padding: 0;
  border-top: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  background: #ffffff;
  width: 100%;
}

.cities-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 16px;
  width: 100%;
  box-sizing: border-box;
}

.cities-header {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.cities-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.cities-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.cities-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 4px 0;
}

.cities-scroll::-webkit-scrollbar {
  display: none;
}

.city-link {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 20px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.city-link:hover {
  background: #e6e6fa;
  color: #00008b;
  border-color: #00008b;
  transform: translateY(-1px);
}

.city-link:active,
.city-link.active {
  background: #00008b;
  color: #ffffff;
  border-color: #00008b;
}

.cities-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cities-arrow:hover {
  background: #00008b;
  color: #ffffff;
  border-color: #00008b;
  transform: scale(1.1);
}

.cities-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cities-arrow:disabled:hover {
  background: #f3f4f6;
  color: #4b5563;
  border-color: #e5e7eb;
  transform: none;
}

.cities-arrow svg {
  width: 20px;
  height: 20px;
}

.cities-arrow-left {
  transform: rotate(180deg);
}

.cities-arrow-left:hover {
  transform: rotate(180deg) scale(1.1);
}

/* FOOTER */
.footer {
  margin-top: 40px;
  padding: 12px 0 16px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #6b7280;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-logo {
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.footer-info-item {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.footer-info-item strong {
  font-weight: 600;
  color: #111827;
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  margin-bottom: 4px;
}

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

.footer-nav a {
  color: #6b7280;
  font-size: 13px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #00008b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.to-top {
  color: #00008b;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 8, 0.05);
  border: 1px solid rgba(0, 0, 8, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.to-top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 139, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.to-top:hover::before {
  width: 300px;
  height: 300px;
}

.to-top:hover {
  color: #ffffff;
  background: #00008b;
  border-color: #00008b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 139, 0.3);
}

.to-top:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 139, 0.2);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .header {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .hero {
    padding: 0;
    height: auto;
    min-height: 400px;
  }

  .hero-slides {
    min-height: 400px;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    flex-direction: column;
  }

  .hero-media {
    min-height: 200px;
    height: 200px;
    order: 1;
  }

  .hero-content {
    order: 2;
    padding: 0;
    gap: 8px;
  }

  .hero-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  .hero-title {
    font-size: 16px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .hero-meta {
    font-size: 11px;
    gap: 6px;
    margin: 4px 0;
  }

  .hero-meta span:last-child {
    padding: 2px 6px;
    font-size: 10px;
  }

  .hero-text {
    font-size: 12px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-top: 0;
  }

  .hero-dots {
    padding: 10px 16px;
    order: 3;
  }

   .main-nav {
    gap: 10px;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 13px;
    padding: 6px 10px;
  }

  .main-news {
    padding: 16px 18px;
  }

  .main-news-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .main-news-feature-media {
    max-height: 220px;
  }

  .main-news-feature h3 {
    font-size: 16px;
  }

  .main-news-item {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
  }

  .main-news-thumb {
    height: 70px;
  }

  .video-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .video-item-main {
    order: -1;
  }

  .video-item-main .video-thumb {
    height: 200px;
  }

  .header-banner {
    margin: 12px 0;
    height: 100px;
    border-radius: 10px;
  }
  
  .header-banner img {
    height: 100px;
    object-fit: cover;
  }

  .ad-banner-horizontal {
    height: 90px;
    margin: 16px 0;
    border-radius: 10px;
  }

  .youtube-player iframe {
    height: 250px;
  }

  .cities-wrapper {
    padding: 20px 16px;
  }
}

@media (max-width: 720px) {
  .header {
    grid-template-columns: 1fr auto;
    grid-auto-flow: row;
    align-items: center;
    gap: 16px;
    position: relative;
  }

  .logo-block {
    width: 100%;
  }

  .logo-image {
    height: 36px;
  }

  .footer-logo-image {
    height: 32px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-column: 1 / -1;
  }

  .socials {
    gap: 8px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .lang-switch {
    justify-content: flex-start;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.05);
    padding: 12px;
    margin-top: 0;
    gap: 6px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    border: 1px solid #e5e7eb;
  }

  .main-nav.mobile-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    max-height: 80vh;
    overflow-y: auto;
    padding: 16px 12px;
  }

  .nav-link {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 2px;
  }

  .nav-link:hover {
    background: #f3f4f6;
    transform: translateX(4px);
  }

  .nav-link.active {
    background: #00008b;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 139, 0.2);
  }

  .nav-dropdown {
    width: 100%;
    margin-bottom: 2px;
  }

  .nav-link-dropdown {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .nav-link-dropdown:hover {
    background: #f3f4f6;
    transform: translateX(4px);
  }

  .nav-link-dropdown svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: translateY(-10px);
    margin-top: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    background: #f9fafb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
  }

  .nav-dropdown.mobile-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid #e5e7eb;
    transform: translateY(0);
    box-shadow: inset 0 2px 8px rgba(15, 23, 42, 0.05);
  }

  .nav-dropdown.mobile-open .nav-link-dropdown {
    background: #00008b;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 139, 0.2);
  }

  .nav-dropdown.mobile-open .nav-link-dropdown svg {
    transform: rotate(180deg);
    color: #ffffff;
  }

  .nav-dropdown-item {
    margin: 2px 0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    transition: all 0.2s ease;
    background: #ffffff;
    border: 1px solid transparent;
  }

  .nav-dropdown-item:hover {
    background: #ffffff;
    border-color: #e5e7eb;
    transform: translateX(4px);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
  }

  .nav-dropdown-item:first-child {
    margin-top: 0;
  }

  .nav-dropdown-item:last-child {
    margin-bottom: 0;
  }

  .news-item {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .footer {
    padding: 16px 0;
  }

  .footer-nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .footer-nav a {
    padding: 6px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col {
    gap: 12px;
  }

  .footer-col-logo {
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }

  .video-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .video-item-main {
    order: -1;
  }

  .video-photo-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-playlist {
    gap: 10px;
  }

  .video-playlist-thumb {
    width: 140px;
    min-width: 140px;
    height: 80px;
  }

  .infographics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .infographic-link {
    padding: 20px;
    gap: 16px;
  }

  .infographic-icon {
    width: 56px;
    height: 56px;
  }

  .header-banner {
    margin: 10px 0;
    height: 80px;
    border-radius: 8px;
  }
  
  .header-banner img {
    height: 80px;
    object-fit: cover;
  }

  .youtube-player iframe {
    height: 200px;
  }

  .ad-banner-horizontal {
    height: 90px;
    margin: 16px 0;
    border-radius: 10px;
  }

  .top-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-line-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .top-line-right {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }

  .currency {
    font-size: 11px;
    white-space: nowrap;
    padding: 3px 8px;
  }

  .weather-container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .weather-current {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .weather-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    margin-top: 4px;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
  }

  .weather-dropdown.mobile-open .weather-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin-top: 4px;
  }

  .weather-dropdown.mobile-open .weather-toggle svg {
    transform: rotate(180deg);
  }

  .cities-section {
    margin-top: 30px;
  }

  .cities-wrapper {
    padding: 16px;
  }

  .cities-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .cities-container {
    gap: 6px;
  }

  .cities-arrow {
    width: 32px;
    height: 32px;
    display: none;
  }

  .infographics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .infographic-link {
    padding: 16px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .infographic-icon {
    width: 48px;
    height: 48px;
  }

  .infographic-content h3 {
    font-size: 14px;
  }

  .infographic-content p {
    font-size: 12px;
  }

  .infographic-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
  }

  .cities-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .city-link {
    padding: 6px 12px;
    font-size: 12px;
  }

  .block {
    padding: 14px 16px;
  }

  .block-title {
    font-size: 15px;
  }

  .main-news-list {
    gap: 0;
  }

  .video-layout {
    gap: 12px;
  }

  .video-item-main .video-thumb {
    height: 160px;
  }

  .video-item-small {
    gap: 8px;
  }

  .video-item-small .video-thumb {
    width: 100px;
    height: 60px;
  }

  .editor-item {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 8px;
  }

  .editor-thumb {
    height: 60px;
  }

  .page {
    padding: 0 12px 24px;
  }

  .block-content {
    gap: 10px;
  }

  .news-item-title {
    font-size: 13px;
    line-height: 1.4;
  }

  .news-item-meta {
    font-size: 11px;
  }

  .editor-item-title {
    font-size: 13px;
  }

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

  .video-item-meta {
    font-size: 11px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  .hero-date {
    font-size: 11px;
  }

  .main-news-feature-meta {
    font-size: 12px;
  }

  .main-news-item-title {
    font-size: 13px;
  }

  .main-news-item-meta {
    font-size: 11px;
  }

  .section-title {
    font-size: 16px;
  }

  .tag {
    font-size: 11px;
    padding: 3px 8px;
  }

  .video-photo-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .video-playlist {
    gap: 8px;
  }

  .video-playlist-link {
    gap: 10px;
    padding: 6px;
  }

  .video-playlist-thumb {
    width: 120px;
    min-width: 120px;
    height: 70px;
  }

  .video-playlist-content h4 {
    font-size: 12px;
  }

  .video-playlist-category {
    font-size: 9px;
    padding: 2px 6px;
  }

  .video-photo-body h3 {
    font-size: 13px;
  }

  .video-photo-item-large .video-photo-body h3 {
    font-size: 16px;
  }

  .video-photo-play {
    width: 48px;
    height: 48px;
  }

  .video-photo-item-large .video-photo-play {
    width: 64px;
    height: 64px;
  }

  .video-photo-small .video-photo-play {
    width: 36px;
    height: 36px;
  }
}

/* POST PAGE STYLES */
.post-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.post-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.post-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.post-meta {
  font-size: 13px;
  color: #6b7280;
}

.post-title {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.post-date {
  font-size: 14px;
  color: #6b7280;
}

.post-image {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.post-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  max-width: 100%;
  image-rendering: auto;
}

/* SCREENS SLIDER */
.screens-slider-wrapper {
  margin: 24px 0;
}

.screens-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  background: #ffffff;
}

.screens-slides {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.screens-slides img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  max-width: 100%;
  object-fit: contain;
  background: #f9fafb;
  image-rendering: auto;
}

.screens-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.screens-slide.active {
  display: block;
  opacity: 1;
}

.screens-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #111827;
}

.screens-slider:hover .screens-slider-btn {
  display: flex;
}

.screens-slider-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.screens-slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.screens-slider-prev {
  left: 16px;
}

.screens-slider-next {
  right: 16px;
}

.screens-slider-btn svg {
  width: 20px;
  height: 20px;
}

.screens-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.screens-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.screens-slider-dot:hover {
  background: #9ca3af;
  transform: scale(1.2);
}

.screens-slider-dot.active {
  background: #00008b;
  border-color: #00008b;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(0, 0, 8, 0.4);
}

/* SCREENS SLIDER THUMBNAILS */
.screens-slider-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

.screens-slider-thumbs::-webkit-scrollbar {
  height: 4px;
}

.screens-slider-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.screens-slider-thumbs::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}

.screens-slider-thumbs::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.screens-slider-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  background: #f9fafb;
  position: relative;
}

.screens-slider-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.screens-slider-thumb.active {
  border-color: #00008b;
  box-shadow: 0 0 0 2px rgba(0, 0, 8, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.screens-slider-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.screens-slider-thumb:hover img {
  transform: scale(1.05);
}

.post-body {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
}

.post-body p {
  margin: 0 0 20px 0;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 20px 0;
  max-width: 100%;
  image-rendering: auto;
}

.post-body p img {
  margin: 20px 0;
}

.post-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #111827;
  font-weight: 400;
  margin-bottom: 28px;
  padding: 20px;
  background: #f9fafb;
  border-left: 4px solid #00008b;
  border-radius: 8px;
}

.post-body h2 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: #111827;
  margin: 32px 0 16px 0;
}

.post-body h2:first-of-type {
  margin-top: 28px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 24px 0;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.post-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  background: #e0e0ff;
  font-size: 12px;
  color: #00008b;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.post-tag:hover {
  background: #d0d0ff;
  transform: translateY(-1px);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.post-share-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.post-share-item {
  font-size: 14px;
  color: #00008b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-share-item:hover {
  color: #0000a0;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .post-content {
    padding: 24px 20px;
  }

  .post-title {
    font-size: 24px;
  }

  .post-body {
    font-size: 15px;
  }

  .post-lead {
    font-size: 17px;
  }

  .post-body h2 {
    font-size: 20px;
  }
}

@media (max-width: 720px) {
  .post-content {
    padding: 20px 16px;
  }

  .post-title {
    font-size: 20px;
  }

  .post-body {
    font-size: 14px;
  }

  .post-lead {
    font-size: 16px;
    padding: 16px;
  }

  .post-body h2 {
    font-size: 18px;
    margin-top: 24px;
  }

  .post-image {
    margin: 20px 0;
    border-radius: 12px;
  }

  .screens-slider-wrapper {
    margin: 20px 0;
  }

  .screens-slider-btn {
    width: 40px;
    height: 40px;
  }

  .screens-slider-prev {
    left: 8px;
  }

  .screens-slider-next {
    right: 8px;
  }

  .screens-slider-btn svg {
    width: 18px;
    height: 18px;
  }

  .screens-slides img {
    max-height: 400px;
  }

  .screens-slider-dots {
    padding: 12px;
    gap: 6px;
  }

  .screens-slider-dot {
    width: 8px;
    height: 8px;
  }

  .screens-slider-thumbs {
    padding: 10px;
    gap: 6px;
  }

  .screens-slider-thumb {
    width: 60px;
    height: 45px;
    border-width: 2px;
  }

  .post-tags {
    margin: 24px 0 20px 0;
    padding-top: 20px;
  }

  .post-share {
    flex-wrap: wrap;
    padding-top: 20px;
  }
}


