/* Информационные страницы Гранд Свет */
.gs {
  --gs-accent: var(--theme-base-color, #0071bc);
  --gs-accent-soft: #e7f3fb;
  --gs-ink: #1d2430;
  --gs-muted: #667085;
  --gs-line: #e6ebf2;
  --gs-card: #fff;
  --gs-bg: #f5f7fb;
  color: var(--gs-ink);
  line-height: 1.55;
}

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

.gs-lead {
  font-size: 18px;
  color: var(--gs-muted);
  max-width: 62ch;
  margin: 0 0 28px;
}

.gs-h {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.gs-sub {
  margin: 0 0 20px;
  color: var(--gs-muted);
}

.gs-grid {
  display: grid;
  gap: 16px;
}

.gs-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.gs-card {
  background: var(--gs-card);
  border: 1px solid var(--gs-line);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 8px 24px rgba(29, 36, 48, 0.04);
}

.gs-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--gs-accent-soft);
  color: var(--gs-accent);
}

.gs-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gs-card h3,
.gs-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

a.gs-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.gs-card:hover {
  border-color: var(--gs-accent);
  box-shadow: 0 10px 28px rgba(0, 113, 188, 0.08);
}

.gs-card p,
.gs-card li {
  margin: 0;
  color: var(--gs-muted);
  font-size: 15px;
}

.gs-list {
  margin: 0;
  padding-left: 18px;
}

.gs-list li + li {
  margin-top: 6px;
}

.gs-section {
  margin: 36px 0 8px;
}

.gs-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gs-price {
  background: var(--gs-bg);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.gs-price b {
  display: block;
  font-size: 22px;
  color: var(--gs-accent);
  margin-bottom: 4px;
}

.gs-price span {
  color: var(--gs-muted);
  font-size: 13px;
}

.gs-price.is-free {
  background: var(--gs-accent-soft);
}

.gs-steps {
  display: grid;
  gap: 0;
  counter-reset: gs-step;
}

.gs-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  position: relative;
  padding-bottom: 22px;
}

.gs-step:last-child {
  padding-bottom: 0;
}

.gs-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--gs-line);
}

.gs-step i {
  counter-increment: gs-step;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gs-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.gs-step i::before {
  content: counter(gs-step);
}

.gs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gs-chip {
  background: var(--gs-bg);
  border: 1px solid var(--gs-line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
}

.gs-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gs-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gs-bg);
  border-radius: 12px;
  padding: 12px 14px;
}

.gs-cat span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gs-accent);
  flex: none;
}

.gs-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gs-tl {
  background: var(--gs-card);
  border: 1px solid var(--gs-line);
  border-radius: 16px;
  padding: 18px;
  position: relative;
}

.gs-tl em {
  display: block;
  font-style: normal;
  color: var(--gs-accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.gs-note {
  background: var(--gs-bg);
  border-left: 3px solid var(--gs-accent);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  color: var(--gs-muted);
}

.gs-tk {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gs-tk a,
.gs-tk span {
  display: block;
  background: #fff;
  border: 1px solid var(--gs-line);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.gs-tk a:hover {
  border-color: var(--gs-accent);
  color: var(--gs-accent);
}

.gs-tk small {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  color: var(--gs-muted);
}

.gs-step h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.gs-card .gs-prices {
  grid-template-columns: 1fr;
}

.gs-hero-mini {
  background: linear-gradient(135deg, var(--gs-accent-soft), #fff);
  border: 1px solid var(--gs-line);
  border-radius: 20px;
  padding: 28px 28px 24px;
  margin-bottom: 24px;
}

.gs-hero-mini h2,
.gs-hero-mini p {
  margin: 0;
}

.gs-hero-mini h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .gs-grid-3,
  .gs-prices,
  .gs-timeline,
  .gs-tk {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .gs-grid-3,
  .gs-grid-2,
  .gs-prices,
  .gs-timeline,
  .gs-tk,
  .gs-cats {
    grid-template-columns: 1fr;
  }
}

/* Главная: тизеры и «О компании» */
.item-views.tizers .image {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: #e7f3fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-views.tizers .image img,
.item-views.tizers .image svg,
.item-views.tizers .image .svg,
.item-views.tizers .image .svg-inline-tizer_svg {
  width: 32px;
  height: 32px;
  color: #0071bc;
}

.item-views.tizers.top .item {
  padding: 8px 10px 4px;
}

.fill_bg_n .wrapper_inner.front .drag-block.container.COMPANY_TEXT .maxwidth-theme.wide,
.fill_bg_n .wrapper_inner.front .drag-block.COMPANY_TEXT .maxwidth-theme.wide,
.wrapper_inner.front .drag-block.COMPANY_TEXT .maxwidth-theme.wide,
.drag-block.COMPANY_TEXT .maxwidth-theme,
.drag-block.COMPANY_TEXT .gs-home-facts-wrap .maxwidth-theme {
  max-width: var(--theme-page-width) !important;
  padding-left: var(--theme-page-width-padding) !important;
  padding-right: var(--theme-page-width-padding) !important;
}

.drag-block.COMPANY_TEXT,
.item-views.company.lg,
.item-views.company.lg .company-block,
.item-views.company.lg .company-block > .row {
  overflow: hidden;
}

.item-views.company.lg .image-block {
  max-width: 50%;
  overflow: hidden;
  padding: 32px 0;
  box-sizing: border-box;
}

.item-views.company.lg .item.video-block {
  height: 100%;
  max-height: 380px;
  overflow: hidden;
}

.item-views.company.lg .image-block .image,
.lg.item-views.company .item.video-block .image {
  padding-top: 0 !important;
  min-height: 260px;
  height: 100% !important;
  max-height: 380px;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  background-size: cover !important;
  background-position: center;
  overflow: hidden;
}

.item-views.company .preview-text {
  max-width: 58ch;
}

.gs-home-facts-wrap {
  margin: 24px 0 36px;
  position: relative;
  z-index: 2;
  clear: both;
}

.gs-home-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gs-home-fact {
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 24px rgba(29, 36, 48, 0.04);
}

.gs-home-fact b {
  display: block;
  color: #0071bc;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.gs-home-fact span {
  color: #667085;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .item-views.company.lg .image-block {
    max-width: 100%;
  }

  .item-views.company.lg .item.video-block,
  .item-views.company.lg .image-block .image,
  .lg.item-views.company .item.video-block .image {
    max-height: 240px;
    min-height: 200px;
  }

  .gs-home-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .gs-home-facts {
    grid-template-columns: 1fr;
  }
}
