@font-face {
  font-family: 'Nunito';
  src: url('./Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1557e6;
  --dark: #111729;
  --muted: #5c6680;
  --border: #dfe7f5;
  --surface: rgba(255, 255, 255, 0.88);
  --shop: #115ae8;
  --green: #08933b;
  --ticket: #f02b72;
  --risk: #069eb1;
  --food: #ff7a13;
  --cargo: #6736d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
body * {
  font-family: 'Nunito', Arial, 'Helvetica Neue', sans-serif;
}

body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(240, 43, 114, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(21, 87, 230, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.site-shell {
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 231, 245, 0.9);
  box-shadow: 0 8px 30px rgba(20, 35, 72, 0.04);
}

.site-header .d-flex {
  min-height: 86px;
}

.brand-link {
  text-decoration: none;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.main-nav {
  gap: 34px;
  margin-left: auto;
  margin-right: auto;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: #111729;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--blue);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2d6cff, #115ae8);
}

.login-btn {
  border-radius: 999px;
  padding: 11px 21px;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, #2368f4, #115ae8);
  border-color: #115ae8;
  box-shadow: 0 12px 28px rgba(21, 87, 230, 0.22);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 52px 0 36px;
  background: radial-gradient(circle at left top, #fff1fb 0, #fff 32%, #f7fbff 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21, 87, 230, 0.09), rgba(21, 87, 230, 0));
  pointer-events: none;
}

.hero-section .site-shell {
  position: relative;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(.2px);
  opacity: .65;
}

.bubble-left {
  left: 8%;
  top: 80px;
  width: 48px;
  height: 48px;
  background: #f2defd;
}

.bubble-right {
  right: 10%;
  top: 78px;
  width: 54px;
  height: 54px;
  background: #dff0ff;
}

.hero-section h1 {
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}

.hero-section h1 span {
  color: var(--blue);
}

.hero-section > div > div.text-center p {
  font-size: 17px;
  color: #59647d;
  margin: 0 auto;
  max-width: 720px;
}

.service-grid {
  margin-top: 10px;
}

.service-grid > [class*=col-] {
  display: flex;
}

.service-card {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 272px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  text-decoration: none;
  color: var(--dark);
  box-shadow: 0 18px 45px rgba(31, 47, 86, 0.07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(31, 47, 86, 0.13);
}

.service-card.shop {
  background: linear-gradient(135deg, #eef5ff 0, #fff 56%);
  border-color: #cfddff;
}

.service-card.survey {
  background: linear-gradient(135deg, #f3fff7 0, #fff 56%);
  border-color: #cfeedd;
}

.service-card.ticket {
  background: linear-gradient(135deg, #fff3f8 0, #fff 56%);
  border-color: #f7cfe0;
}

.service-card.risk {
  background: linear-gradient(135deg, #f0fdff 0, #fff 56%);
  border-color: #c8eef4;
}

.service-card.food {
  background: linear-gradient(135deg, #fff8f0 0, #fff 56%);
  border-color: #ffe0c4;
}

.service-card.cargo {
  background: linear-gradient(135deg, #f8f4ff 0, #fff 56%);
  border-color: #dfd2ff;
}

.card-content {
  width: 58%;
  position: relative;
  z-index: 2;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-title-row img {
  width: 42px;
  height: 42px;
}

.card-title-row h3 {
  font-weight: 900;
  font-size: 22px;
  margin: 0;
}

.shop h3 { color: var(--shop); }
.survey h3 { color: var(--green); }
.ticket h3 { color: var(--ticket); }
.risk h3 { color: var(--risk); }
.food h3 { color: var(--food); }
.cargo h3 { color: var(--cargo); }

.service-card h4 {
  font-size: 20px;
  font-weight: 850;
  line-height: 1.3;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a536a;
  margin-bottom: 32px;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 17px;
  box-shadow: 0 10px 24px rgba(17, 23, 41, 0.08);
}

.shop .card-btn { background: linear-gradient(135deg, #3d7bff, var(--shop)); }
.survey .card-btn { background: linear-gradient(135deg, #15a54a, var(--green)); }
.ticket .card-btn { background: linear-gradient(135deg, #ff5799, var(--ticket)); }
.risk .card-btn { background: linear-gradient(135deg, #14b0c3, var(--risk)); }
.food .card-btn { background: linear-gradient(135deg, #ff983f, var(--food)); }
.cargo .card-btn { background: linear-gradient(135deg, #7f52ea, var(--cargo)); }

.card-art {
  position: absolute;
  right: 20px;
  bottom: 16px;
  width: 36%;
  max-height: 166px;
  object-fit: contain;
  z-index: 1;
}

.ticket .card-art {
  right: 10px;
  bottom: 10px;
  width: 39%;
  max-height: 176px;
}

.cargo .card-art {
  right: 8px;
  bottom: 8px;
  width: 43%;
  max-height: 182px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px !important;
  border: 1px solid rgba(223, 231, 245, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(31, 47, 86, 0.06);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stats-bar div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.stats-bar div:last-child {
  border-right: 0;
}

.stats-bar img {
  width: 32px;
}

.stats-bar strong {
  font-size: 22px;
  line-height: 1;
}

.stats-bar span {
  font-size: 12px;
  color: #59647d;
}

.footer-section {
  padding: 40px 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 12%, #fff 100%);
}

.footer-section .row {
  padding: 26px;
  border: 1px solid rgba(223, 231, 245, 0.9);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(31, 47, 86, 0.05);
  backdrop-filter: blur(10px);
}

.footer-logo {
  height: 44px;
  margin-bottom: 12px;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #59647d;
}

.footer-section h5 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #111729;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
}

.footer-links a,
.footer-mobile-links a {
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-mobile-links a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-mobile-links,
.footer-mobile-menu-title {
  display: none;
}

.copyright {
  text-align: center;
  color: #6b748b;
  font-size: 12px;
  border-top: 1px solid #edf1f8;
  margin-top: 24px;
  padding-top: 16px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(223, 231, 245, 0.95);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(240, 43, 114, 0.09), transparent 24%),
    radial-gradient(circle at right top, rgba(21, 87, 230, 0.1), transparent 28%),
    linear-gradient(180deg, #fcfdff 0%, #f5f9ff 100%);
  pointer-events: none;
}

.page-hero .site-shell {
  position: relative;
  z-index: 1;
}

.news-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 18px 0 4px;
}

.news-hero-copy {
  max-width: 760px;
  text-align: left;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 0;
  border-radius: 999px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: -1px;
}

.page-hero p {
  margin: 0;
  max-width: 680px;
  font-size: 13px;
  color: #5b6680;
  margin-left: auto;
  margin-right: auto;
}

.content-section {
  padding: 18px 0 56px;
}

.news-section-meta {
  margin-bottom: 12px;
  color: #8c93a3;
  font-size: 10px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  padding: 28px;
  border: 1px solid rgba(223, 231, 245, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(31, 47, 86, 0.06);
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.info-card p {
  margin: 0;
  color: #5c6680;
  line-height: 1.7;
}

.news-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.news-hero-stat {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(223, 231, 245, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(31, 47, 86, 0.08);
  text-align: left;
}

.news-hero-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #111729;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.news-hero-stat span {
  display: block;
  color: #65708a;
  font-size: 12px;
  font-weight: 800;
}

.news-portal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 290px;
  gap: 24px;
  align-items: start;
}

.news-sidebar-left,
.news-sidebar-right,
.news-main-column {
  min-width: 0;
}

.news-side-block,
.news-side-promo,
.empty-state,
.organization-map-card {
  border: 1px solid #eceff5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 47, 86, 0.06);
}

.news-side-block,
.news-side-promo,
.empty-state {
  padding: 24px;
}

.news-side-block h3,
.news-side-promo h3,
.empty-state h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 900;
}

.news-side-block p,
.news-side-promo p,
.empty-state p {
  color: #5c6680;
}

.news-side-intro {
  margin: -4px 0 18px;
  font-size: 13px;
  line-height: 1.6;
}

.news-category-nav {
  display: grid;
  gap: 10px;
}

.news-category-nav a,
.news-category-placeholder {
  display: block;
  padding: 14px 16px;
  border: 1px solid #e3eaf6;
  border-radius: 16px;
  color: #4f5b72;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  background: #f9fbff;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.news-category-nav a:hover,
.news-category-nav a.active {
  color: var(--blue);
  border-color: #bcd1ff;
  background: #edf4ff;
  transform: translateY(-1px);
}

.news-category-nav a.active {
  font-weight: 900;
}

.news-category-block {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.news-category-block h3 {
  margin: 0;
  padding: 10px 0 9px;
  border-top: 2px solid #1557e6;
  color: #1557e6;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-category-placeholder {
  color: #6b748b;
}

.news-side-promo {
  background: linear-gradient(145deg, #1557e6 0%, #3b79f7 100%);
  color: #fff;
}

.news-side-promo-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1557e6;
  background: rgba(255, 255, 255, 0.92);
}

.news-side-promo p {
  color: rgba(255, 255, 255, 0.82);
}

.news-side-promo a,
.empty-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.news-side-promo a {
  color: #1557e6;
  background: #fff;
}

.empty-state {
  text-align: center;
}

.empty-state a {
  color: #fff;
  background: linear-gradient(135deg, #2368f4, #115ae8);
}

.news-mini-list {
  display: grid;
  gap: 12px;
  max-height: 455px;
  overflow: auto;
}

.news-mini-item {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #111729;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  background: #fbfcff;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.news-mini-item:hover {
  color: var(--blue);
  border-color: #c6d8ff;
  transform: translateY(-1px);
}

.news-mini-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.news-mini-date {
  display: block;
  margin-bottom: 6px;
  color: #8a93a7;
  font-size: 10px;
  font-weight: 700;
}

.news-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid #eceff5;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 40px rgba(31, 47, 86, 0.05);
}

.news-feed-header h2 {
  margin: 2px 0 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.news-feed-kicker {
  display: inline-block;
  color: #5f7fcb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #2368f4, #115ae8);
  box-shadow: 0 12px 28px rgba(21, 87, 230, 0.2);
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid #eceff5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(31, 47, 86, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-list-item:hover {
  border-color: #cddcff;
  box-shadow: 0 20px 48px rgba(31, 47, 86, 0.09);
  transform: translateY(-2px);
}

.news-list-image-link {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #eef4ff;
}

.news-list-image {
  display: block;
  width: 100%;
  height: 136px;
  object-fit: cover;
}

.news-list-body {
  min-width: 0;
  padding-top: 4px;
}

.news-list-body h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
}

.news-list-body p {
  margin: 0;
  color: #6d778d;
  font-size: 13px;
  line-height: 1.55;
}

.news-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #919ab0;
  font-size: 10px;
}

.news-date {
  display: inline-block;
  margin-bottom: 8px;
  color: #5f6f92;
  font-size: 12px;
  font-weight: 800;
}

.news-source-label {
  color: #919ab0;
  font-size: 10px;
}

.news-card-link {
  color: #111729;
  text-decoration: none;
}

.news-card-link:hover {
  color: #1557e6;
}

.news-latest-block {
  padding: 0 12px;
  margin-top: 14px;
}

.news-latest-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 10px;
}

.news-latest-heading h3 {
  margin: 0;
  color: #1557e6;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-latest-heading span {
  flex: 1;
  height: 2px;
  background: #1557e6;
}

.news-side-ad {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 154px;
  text-decoration: none;
  background: #172f79;
}

.news-side-ad img {
  display: block;
  width: 100%;
  height: 154px;
  object-fit: cover;
}

.news-side-ad-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 18, 49, 0) 0%, rgba(9, 18, 49, 0.9) 100%);
}

.news-side-ad-overlay span {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(21, 87, 230, 0.92);
}

.news-side-ad-overlay strong {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.news-main-column {
  padding-right: 6px;
}

.page-hero-news {
  margin-bottom: 16px;
}

.page-hero-news .news-hero-copy {
  max-width: 720px;
}

.page-hero-news .section-kicker {
  font-size: 11px;
}

.page-hero-news h1 {
  font-size: clamp(28px, 3vw, 42px);
}

.page-hero-news p {
  margin-left: 0;
  font-size: 15px;
}

.news-page .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(20, 35, 72, 0.06);
}

.news-page .site-header .d-flex {
  min-height: 86px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.news-page .brand-logo {
  height: 52px;
}

.news-page .main-nav {
  gap: 34px;
}

.news-page .main-nav a {
  font-size: 15px;
  font-weight: 800;
}

.news-page .login-btn {
  padding: 11px 21px;
  font-size: 14px;
}

.news-page .page-hero {
  padding: 28px 0 18px;
}

.news-page .page-hero::before {
  background:
    radial-gradient(circle at left top, rgba(240, 43, 114, 0.08), transparent 28%),
    radial-gradient(circle at right top, rgba(21, 87, 230, 0.1), transparent 32%),
    linear-gradient(180deg, #fcfdff 0%, #f5f9ff 100%);
}

.news-page .news-hero-layout {
  padding: 6px 0 2px;
}

.news-page .news-hero-copy {
  max-width: 760px;
}

.news-page .section-kicker {
  margin-bottom: 8px;
  font-size: 11px;
  color: #5f7fcb;
}

.news-page .page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -1px;
}

.news-page .page-hero p {
  font-size: 15px;
  color: #8b94a8;
}

.news-topics-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 0 12px;
  color: #4f596d;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  overflow-x: auto;
}

.news-topics-bar span {
  flex: 0 0 auto;
}

.news-page .content-section {
  padding-top: 4px;
}

.news-page .site-shell {
  width: min(calc(100% - 32px), 1280px);
}

.news-page .news-main-column {
  padding-right: 0;
}

.news-page {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.news-page .page-hero {
  padding: 18px 0 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e5ebf5;
}

.news-page .page-hero::before {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.news-page .news-hero-layout {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  padding: 4px 0 2px;
}

.news-page .news-hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.news-page .page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.15;
}

.news-page .page-hero p {
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  color: #8b94a8;
}

.news-page .news-hero-stats,
.news-page .news-hero-stat,
.news-page .news-hero-stat strong,
.news-page .news-hero-stat span {
  display: none;
}

.news-page .content-section {
  padding-top: 4px;
  padding-bottom: 64px;
}

.news-page .site-shell {
  width: min(calc(100% - 32px), 1260px);
}

.news-page .news-portal-layout {
  grid-template-columns: 210px minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.news-page .news-sidebar-left,
.news-page .news-sidebar-right {
  position: sticky;
  top: 88px;
}

.news-page .news-side-block,
.news-page .news-side-promo,
.news-page .empty-state {
  padding: 0;
  border: 1px solid #e9edf4;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.news-page .news-side-block-nav {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-page .news-block-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 3px solid #1557e6;
}

.news-page .news-block-heading h3,
.news-page .news-feed-header h2 {
  margin: 0;
  color: #1557e6;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.news-page .news-block-heading h3,
.news-page .news-feed-header h2,
.news-page .news-date,
.news-page .news-list-body p,
.news-page .news-mini-date {
  display: inline-flex;
  align-items: center;
}

.news-heading-icon,
.news-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.news-heading-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border: 1px solid #d8e5ff;
  border-radius: 50%;
  background-color: #f4f8ff;
}

.news-inline-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  opacity: 0.9;
  background-size: 11px 11px;
}

.news-heading-icon-source,
.news-inline-icon-source {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231557e6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 0 4 24V4.5A2.5 2.5 0 0 1 6.5 2Z'/%3E%3C/svg%3E");
}

.news-heading-icon-feed {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231557e6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M7 8h10'/%3E%3Cpath d='M7 12h10'/%3E%3Cpath d='M7 16h6'/%3E%3C/svg%3E");
}

.news-heading-icon-latest {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231557e6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.7 5.5 6.1.9-4.4 4.3 1 6.1L12 17l-5.4 2.8 1-6.1L3.2 9.4l6.1-.9L12 3Z'/%3E%3C/svg%3E");
}

.news-inline-icon-date {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a95ab' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.news-page .news-feed-header {
  margin-bottom: 12px;
  padding: 12px 0 10px;
  border: 0;
  border-top: 3px solid #1557e6;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  justify-content: flex-start;
}

.news-page .news-feed-kicker {
  display: none;
}

.news-page .news-category-nav {
  gap: 0;
  margin-top: 12px;
}

.news-page .news-category-nav a {
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #e3e7ee;
  border-radius: 0;
  color: #111729;
  font-size: 13px;
  font-weight: 700;
  background: transparent;
  transition: color 0.2s ease;
}

.news-page .news-category-nav a:hover,
.news-page .news-category-nav a.active {
  color: #1557e6;
  border-color: #e3e7ee;
  background: transparent;
  transform: none;
}

.news-page .news-category-nav a.active {
  font-weight: 900;
}

.news-page .news-category-nav a.active::before {
  content: none;
}

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

.news-page .news-list-item {
  grid-template-columns: 194px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid #e4e8f0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-page .news-list-item:hover {
  transform: none;
  border-color: #e4e8f0;
  box-shadow: none;
}

.news-page .news-list-image-link {
  border-radius: 0;
  background: #eef2f7;
}

.news-page .news-list-image {
  height: 120px;
  border-radius: 0;
}

.news-page .news-list-body {
  padding-top: 0;
}

.news-page .news-list-body h3 {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.35;
}

.news-page .news-list-body p {
  color: #747f96;
  font-size: 12px;
  line-height: 1.7;
}

.news-page .news-list-meta {
  margin-bottom: 8px;
  color: #8a95ab;
  font-size: 11px;
}

.news-page .news-date,
.news-page .news-source-label,
.news-page .news-mini-date {
  color: #8a95ab;
  font-size: 11px;
  font-weight: 700;
}

.news-page .news-source-label::before {
  content: "•";
  margin-right: 8px;
}

.news-page .news-card-link {
  color: #1e2738;
}

.news-page .news-card-link:hover {
  color: #1557e6;
}

.news-page .news-side-ad {
  min-height: 230px;
  margin-bottom: 28px;
  background:
    linear-gradient(180deg, rgba(24, 33, 72, 0.18), rgba(24, 33, 72, 0.72)),
    linear-gradient(135deg, #5544c8, #f05b6b 55%, #f5ab44);
}

.news-page .news-side-ad-overlay {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: none;
}

.news-page .news-side-ad-overlay span {
  align-self: flex-start;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.18);
}

.news-page .news-side-ad-overlay strong {
  font-size: 24px;
  line-height: 1.02;
  text-transform: uppercase;
}

.news-page .news-side-latest .news-block-heading {
  margin-bottom: 0;
  padding: 12px 14px 10px;
}

.news-page .news-mini-list {
  gap: 0;
  max-height: 470px;
  padding: 0 14px 12px;
  padding-right: 10px;
}

.news-page .news-mini-item {
  padding: 16px 0 14px;
  border: 0;
  border-bottom: 1px solid #e5e8ef;
  border-radius: 0;
  background: transparent;
}

.news-page .news-mini-item:hover {
  color: #1557e6;
  border-color: #e5e8ef;
  transform: none;
}

.news-page .news-mini-item strong {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.news-page .empty-state {
  padding: 28px;
  text-align: left;
}

.news-page .empty-state a {
  margin-top: 12px;
}

.about-page .page-hero {
  padding: 18px 0 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e5ebf5;
}

.about-page .page-hero::before {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.about-page .news-hero-layout {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  padding: 4px 0 2px;
}

.about-page .news-hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-page .section-kicker {
  margin-bottom: 8px;
  font-size: 11px;
  color: #5f7fcb;
}

.about-page .page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.about-page .page-hero p {
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  color: #8b94a8;
}

.organization-map-section {
  padding: 28px 0 50px;
}

.organization-map-layout {
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
}

.organization-map-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
}

.organization-map-sidebar {
  padding: 24px;
  border-right: 1px solid rgba(223, 231, 245, 0.95);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
}

.organization-map-sidebar h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
}

.organization-map-sidebar-list {
  display: grid;
  gap: 10px;
}

.organization-map-sidebar-item {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dbe5f6;
  border-radius: 16px;
  text-align: left;
  color: #21304f;
  font-weight: 800;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.organization-map-sidebar-item:hover,
.organization-map-sidebar-item.active {
  color: var(--blue);
  border-color: #bfd2ff;
  background: #edf4ff;
  transform: translateX(2px);
}

.organization-map-frame {
  min-height: 700px;
}

.organization-marker-icon-shell {
  background: transparent;
  border: 0;
}

.organization-marker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #2368f4, #115ae8);
  box-shadow: 0 10px 24px rgba(21, 87, 230, 0.28);
}

.organization-marker-icon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #115ae8;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
  z-index: -1;
}

.organization-marker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}

.organization-marker-logo-bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.organization-marker-fallback {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.organization-popup {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.organization-popup-logo-wrap {
  display: flex;
  flex: 0 0 60px;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f7ff;
}

.organization-popup-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.organization-popup-logo-fallback {
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.organization-popup-body {
  min-width: 0;
}

.organization-popup-category {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #45618f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #edf4ff;
}

.organization-popup h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.organization-popup p {
  margin: 0 0 6px;
  color: #5f6b84;
}

.organization-popup-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.organization-popup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  background: linear-gradient(135deg, #2368f4, #115ae8);
}

.organization-popup-link:link,
.organization-popup-link:visited,
.organization-popup-link:hover,
.organization-popup-link:active {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .site-shell {
    width: min(calc(100% - 24px), 1320px);
  }

  .site-header .d-flex {
    min-height: 74px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar div:nth-child(2) {
    border-right: 0;
  }

  .service-card {
    min-height: 238px;
  }

  .footer-section .row {
    padding: 22px;
  }

  .info-grid,
  .news-portal-layout,
  .organization-map-card {
    grid-template-columns: 1fr;
  }

  .news-hero-layout,
  .news-feed-header {
    grid-template-columns: 1fr;
  }

  .news-feed-header {
    align-items: flex-start;
  }

  .news-hero-copy {
    text-align: center;
  }

  .page-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .news-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-side-ad {
    margin-top: 10px;
  }

  .news-page .site-shell {
    width: min(calc(100% - 24px), 1280px);
  }

  .news-page .news-hero-layout,
  .news-page .news-portal-layout {
    grid-template-columns: 1fr;
  }

  .news-page .news-sidebar-left,
  .news-page .news-sidebar-right {
    position: static;
    top: auto;
  }

  .news-page .news-sidebar-left,
  .news-page .news-sidebar-right {
    order: 2;
  }

  .news-page .news-main-column {
    order: 1;
  }

  .organization-map-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(223, 231, 245, 0.95);
  }

  .organization-map-frame {
    min-height: 560px;
  }
}

@media (max-width: 575px) {
  .brand-logo {
    height: 42px;
    max-width: 220px;
  }

  .login-btn {
    padding: 9px 15px;
    border-radius: 999px;
  }

  .hero-section {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .hero-section > div > div.text-center p {
    font-size: 15px;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .card-content {
    width: 68%;
  }

  .card-title-row h3 {
    font-size: 20px;
  }

  .service-card h4 {
    font-size: 17px;
  }

  .card-art {
    width: 42%;
    opacity: .96;
  }

  .ticket .card-art {
    right: 4px;
    bottom: 8px;
    width: 43%;
    max-height: 160px;
  }

  .cargo .card-art {
    right: 2px;
    bottom: 8px;
    width: 47%;
    max-height: 164px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stats-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stats-bar div:last-child {
    border-bottom: 0;
  }

  .footer-section {
    padding-top: 28px;
  }

  .footer-section .row {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .footer-services-title,
  .footer-links {
    display: none;
  }

  .footer-mobile-menu-title,
  .footer-mobile-links {
    display: block;
  }

  .footer-mobile-menu-title {
    margin-bottom: 12px;
  }

  .footer-mobile-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f7faff;
    border: 1px solid #e5edf9;
  }

  .page-hero {
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .news-hero-layout,
  .info-card,
  .news-side-block,
  .news-side-promo,
  .empty-state,
  .organization-map-sidebar {
    padding: 18px;
  }

  .news-category-block,
  .news-latest-block {
    padding: 0;
  }

  .news-hero-layout {
    gap: 16px;
    padding: 0;
  }

  .page-hero h1 {
    font-size: 22px;
  }

  .page-hero p {
    font-size: 12px;
  }

  .news-hero-stats {
    grid-template-columns: 1fr;
  }

  .news-list-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .news-list-image {
    height: 180px;
  }

  .news-list-body h3 {
    font-size: 14px;
  }

  .news-feed-header {
    padding: 18px;
  }

  .news-feed-header h2 {
    font-size: 20px;
  }

  .news-source-link {
    width: 100%;
  }

  .news-page .news-feed-header {
    padding: 12px 0;
  }

  .news-page .news-list-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .news-page .news-list-image {
    height: 180px;
  }

  .news-page .news-side-ad {
    min-height: 180px;
  }

  .news-page .news-side-ad-overlay strong {
    font-size: 24px;
  }

  .news-topics-bar {
    gap: 14px;
    padding-bottom: 10px;
  }

  .organization-map-layout {
    width: min(calc(100% - 24px), 1320px);
  }

  .organization-map-frame {
    min-height: 460px;
  }
}
