:root {
  --by-brand: #186CC6;
  --by-muted: #7C7C7C;
  --by-footer: #2f2f2f;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: #fff;
  color: #222;
}

section[id] {
  scroll-margin-top: calc(var(--by-header-h, 5.75rem) + 0.75rem);
}

.by-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 980;
  transition: transform 0.28s ease;
  will-change: transform;
}

.by-site-header.by-site-header--hidden {
  transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .by-site-header {
    transition: none;
  }
}

.uk-section.by-section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

@media (min-width: 960px) {
  .uk-section.by-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.by-hero.uk-cover-container {
  min-height: 70vh;
  position: relative;
}

.by-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.by-hero > canvas {
  pointer-events: none;
}

/* Hero: полупрозрачная карточка записи справа от центра */
.by-hero-booking {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 65%;
  transform: translateY(-50%);
  width: min(22rem, calc(100% - 2rem));
  max-width: 100%;
  pointer-events: auto;
}

.by-hero-booking__inner {
  padding: 1.35rem 1.5rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.by-hero-booking__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--by-brand);
}

.by-hero-booking__hint {
  color: var(--by-muted);
  line-height: 1.45;
  margin-bottom: 0.85rem !important;
}

.by-hero-booking .uk-input {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(24, 108, 198, 0.22);
}

.by-hero-booking .uk-input:focus {
  border-color: var(--by-brand);
}

/* Телефон: фиксированный +998 и поле с маской (placeholder — пример номера) */
.by-phone-combo {
  align-items: stretch;
  border: 1px solid rgba(24, 108, 198, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.by-phone-combo:focus-within {
  border-color: var(--by-brand);
}

.by-phone-combo__prefix {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 0.55rem 0 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--by-brand, #186cc6);
  border-right: 1px solid rgba(24, 108, 198, 0.15);
  background: rgba(24, 108, 198, 0.06);
  user-select: none;
}

.by-phone-combo__input {
  flex: 1 1 auto;
  min-width: 0;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.by-phone-combo__input:focus {
  border: none !important;
}

/* Markdown (новости на сайте) */
.by-markdown {
  line-height: 1.65;
}

.by-markdown > * + * {
  margin-top: 0.75rem;
}

.by-markdown h1,
.by-markdown h2,
.by-markdown h3 {
  font-weight: 700;
  color: var(--by-brand, #186cc6);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.by-markdown h1 {
  font-size: 1.65rem;
}

.by-markdown h2 {
  font-size: 1.35rem;
}

.by-markdown h3 {
  font-size: 1.15rem;
}

.by-markdown ul,
.by-markdown ol {
  padding-left: 1.35rem;
}

.by-markdown a {
  text-decoration: underline;
}

.by-markdown blockquote {
  border-left: 4px solid rgba(24, 108, 198, 0.35);
  margin: 1rem 0;
  padding-left: 1rem;
  color: var(--by-muted, #5a6b7a);
}

.by-markdown pre {
  overflow: auto;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  background: rgba(24, 108, 198, 0.06);
  font-size: 0.9rem;
}

.by-markdown code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 3px;
  background: rgba(24, 108, 198, 0.08);
}

.by-markdown pre code {
  padding: 0;
  background: none;
}

@media (max-width: 959px) {
  .by-hero-booking {
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(22rem, calc(100% - 2rem));
  }
}

@media (max-width: 479px) {
  .by-hero-booking {
    top: auto;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1.5rem);
  }
}

.uk-text-muted {
  color: var(--by-muted) !important;
}

.uk-text-primary {
  color: var(--by-brand) !important;
}

.by-button-primary.uk-button-primary {
  background: var(--by-brand);
  color: #fff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.by-button-primary.uk-button-primary:hover,
.by-button-primary.uk-button-primary:focus {
  background: #145aa8;
  color: #fff;
}

.by-logo-img {
  display: block;
  height: 67px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@media (max-width: 639px) {
  .by-logo-img {
    height: 48px;
    max-width: 180px;
  }
}

.by-offcanvas-middle {
  flex: 0 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.by-offcanvas-nav .uk-nav-primary > li > a {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (min-width: 960px) {
  .by-offcanvas-middle {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .by-offcanvas-middle .uk-nav-primary {
    width: 100%;
  }

  .by-offcanvas-middle .uk-nav-primary > li > a {
    justify-content: center;
  }
}

.by-heading-rule {
  border-top-width: 2px;
  border-top-color: var(--by-brand);
  width: 72px;
}

.by-stat-num {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--by-brand);
}

.by-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
}

.by-team-photo-wrap {
  position: relative;
  width: 168px;
  height: 168px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
}

.by-team-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: opacity 0.4s ease;
}

/* Pending shimmer is on ::after (see .by-img-pending block); do not opacity-hide
   lazy imgs — Safari WebKit may never start loading="lazy" when opacity is 0. */

.by-reviews-widget {
  padding: 0.75rem;
}

.by-reviews-head {
  gap: 0.75rem;
}

.by-reviews-head__g {
  width: 44px;
  height: 44px;
  display: inline-block;
}

.by-reviews-head__g svg {
  width: 100%;
  height: 100%;
  display: block;
}

.by-reviews-head__count {
  color: rgba(34, 34, 34, 0.45);
  letter-spacing: 0;
  margin-left: 0.15rem;
}

.by-review-comment {
  margin: 0;
  border: 1px solid rgba(24, 108, 198, 0.14);
  min-height: 0;
}

.by-review-comment__avatar-cell {
  flex: 0 0 56px;
  width: 56px;
}

.by-review-comment__avatar-frame {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8edf2;
}

.by-review-comment__avatar-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.by-review-comment__avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
  background: var(--by-brand);
}

.by-review-comment__header-main {
  min-width: 0;
}

.by-review-comment__title {
  font-size: 1rem;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.by-review-card__stars,
.by-review-comment__stars {
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #f7b500;
}

.by-review-comment__body {
  min-height: 0;
}

.by-review-comment__text-flow {
  min-width: 0;
}

.by-review-comment__text-inner {
  line-height: 1.5;
  word-break: break-word;
  white-space: pre-wrap;
}

.by-review-comment__text-wrap--collapsible {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.by-review-comment__text-wrap--collapsible:not(.is-expanded)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.75rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 85%);
}

.by-review-comment__text-wrap--collapsible.is-expanded {
  max-height: 4000px;
}

.by-review-comment__text-wrap--collapsible.is-expanded::after {
  display: none;
}

.by-review-comment__expand-btn {
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .by-review-comment__text-wrap--collapsible {
    transition: none;
  }
}

.by-reviews-static {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.by-reviews-static__row--full .by-review-comment {
  width: 100%;
}

.by-services-board {
  background: #fafafa;
  border: 1px solid #eee;
}

.by-services-tabs-col {
  border-bottom: 1px solid #e8e8e8;
}

@media (min-width: 960px) {
  .by-services-tabs-col {
    border-bottom: none;
    border-right: 1px solid #e8e8e8;
  }
}

.by-service-tabs.uk-tab-left {
  margin: 0;
  padding: 0.75rem 0 1rem;
  border-left: none;
}

.by-service-tabs.uk-tab-left > li {
  padding-left: 0;
  border-left: 3px solid transparent;
}

.by-service-tabs.uk-tab-left > li > a {
  padding: 0.65rem 1rem 0.65rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--by-muted);
  text-transform: none;
  border-bottom: none;
}

.by-service-tabs.uk-tab-left > li > a:hover {
  color: #333;
}

.by-service-tabs.uk-tab-left > li.uk-active {
  border-left-color: var(--by-brand);
}

.by-service-tabs.uk-tab-left > li.uk-active > a {
  color: var(--by-brand);
  font-weight: 700;
}

.by-services-panel-col {
  padding: 1rem 0 1.25rem;
}

/* Services panel: gutter vs tabs on desktop only (UIkit uk-margin-left@m was unreliable with overrides). */
.by-services-panel-col #services-switcher.uk-switcher {
  margin-left: 0;
}

@media (min-width: 960px) {
  .by-services-panel-col #services-switcher.uk-switcher {
    margin-left: 2.5rem;
  }

  .by-services-panel-col {
    padding: 1.5rem 1.5rem 1.5rem 0;
  }
}

.by-service-panel-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 520px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e8e8;
}

.by-service-panel-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s ease;
}

@media (min-width: 960px) {
  .by-service-panel-img img {
    object-position: left center;
  }
}

@media (max-width: 959px) {
  .by-service-tabs.uk-tab-left {
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #e8e8e8;
    padding: 0.5rem 0 0;
    gap: 0;
  }

  .by-service-tabs.uk-tab-left > li {
    border-left: none;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
  }

  .by-service-tabs.uk-tab-left > li.uk-active {
    border-left-color: transparent;
    border-bottom-color: var(--by-brand);
  }

  .by-service-tabs.uk-tab-left > li > a {
    padding: 0.75rem 1rem;
    white-space: nowrap;
  }
}

.by-footer {
  background: var(--by-footer);
}

.by-footer-main {
  padding-top: 2.75rem;
  padding-bottom: 2rem;
}

.by-footer-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.by-footer-lead {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 26rem;
}

.by-footer-heading {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.by-footer-nav.uk-nav-default > li > a,
.by-footer-contact .uk-link-reset,
.by-footer-contact .by-footer-map-link {
  padding: 0.2rem 0;
}

.by-footer-nav.uk-nav-default > li > a {
  color: rgba(255, 255, 255, 0.78);
}

.by-footer-nav.uk-nav-default > li > a:hover {
  color: #fff;
}

.by-footer-contact .uk-link-reset {
  color: rgba(255, 255, 255, 0.82);
}

.by-footer-contact .uk-link-reset:hover {
  color: #fff;
}

.by-footer-map-link {
  color: var(--by-brand) !important;
  font-weight: 600;
}

.by-footer-map-link:hover {
  color: #7eb8ea !important;
}

.by-footer-hours {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.by-footer-social {
  color: rgba(255, 255, 255, 0.88);
}

.by-footer-social:hover {
  color: var(--by-brand);
}

.by-footer-bar {
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 1.35rem;
}

.by-footer-copy {
  color: rgba(255, 255, 255, 0.52);
}

.by-footer-bar .uk-subnav a {
  color: rgba(255, 255, 255, 0.55);
}

.by-footer-bar .uk-subnav a:hover {
  color: #fff;
}

.by-footer-bar .uk-subnav-divider > :nth-child(n + 2):not(.uk-first-column)::before {
  border-left-color: rgba(255, 255, 255, 0.18);
}

.by-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.62rem 1.35rem;
  margin: 0;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--by-brand);
  background: #fff;
  border: 1.5px solid rgba(24, 108, 198, 0.45);
  border-radius: 100px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 20px rgba(24, 108, 198, 0.1);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.by-nav-cta:hover {
  color: #fff;
  background: var(--by-brand);
  border-color: var(--by-brand);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 10px 28px rgba(24, 108, 198, 0.35);
  transform: translateY(-1px);
}

.by-nav-cta:focus-visible {
  outline: 2px solid var(--by-brand);
  outline-offset: 3px;
}

.by-nav-cta .by-nav-cta__icon {
  color: inherit;
  flex-shrink: 0;
  opacity: 0.92;
}

.by-nav-cta:hover .by-nav-cta__icon {
  opacity: 1;
}

.by-navbar-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.2;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.by-site-header .uk-navbar-left,
.by-site-header .uk-navbar-right {
  flex: 1 1 0;
  min-width: 0;
  /* Keep content away from centered logo */
  padding-inline: 7.25rem;
}

.by-site-header .uk-navbar-center {
  flex: 0 0 auto;
}

.by-navbar-meta__icon {
  color: var(--by-brand);
  opacity: 0.85;
  flex: 0 0 auto;
}

.by-navbar-meta__content {
  min-width: 0;
}

.by-navbar-meta__label {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.45);
  font-weight: 700;
}

.by-navbar-meta__value {
  font-size: 0.74rem;
  color: rgba(34, 34, 34, 0.8);
  white-space: nowrap;
  max-width: 16rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.by-navbar-meta--address {
  margin-left: auto;
}

.by-navbar-meta--hours {
  margin-right: auto;
  justify-content: flex-end;
  text-align: right;
}

.by-navbar-meta--hours .by-navbar-meta__content {
  text-align: right;
}

@media (max-width: 1199px) {
  .by-site-header .uk-navbar-left,
  .by-site-header .uk-navbar-right {
    padding-inline: 3.5rem;
  }

  .by-navbar-meta__value {
    font-size: 0.69rem;
    max-width: 11rem;
  }
}

.by-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.by-compare {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.by-compare__viewport {
  position: relative;
  line-height: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8e8e8;
}

.by-compare__after {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}

/* Compare imgs stay opaque for Safari lazy-load; overlay handles loading state. */

.by-compare__clip {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  width: 50%;
  transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.by-compare__before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  transition: opacity 0.4s ease;
}

.by-compare__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  left: 50%;
  transition: left 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.by-compare__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  margin-left: -22px;
  border-radius: 50%;
  background: var(--by-brand);
  box-shadow: 0 4px 16px rgba(24, 108, 198, 0.45);
  pointer-events: none;
  gap: 2px;
  transition: left 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.by-compare--dragging .by-compare__clip,
.by-compare--dragging .by-compare__rail,
.by-compare--dragging .by-compare__knob {
  transition: none;
}

.by-compare__knob .uk-icon {
  color: #fff;
}

.by-compare__input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  cursor: grab;
}

.by-compare__input:active {
  cursor: grabbing;
}

@media (prefers-reduced-motion: reduce) {
  .by-compare__clip,
  .by-compare__rail,
  .by-compare__knob {
    transition: none;
  }
}

.by-compare > .uk-flex.uk-flex-between {
  pointer-events: none;
}

.by-compare-slider .by-compare-slidenav {
  background: rgba(255, 255, 255, 0.92);
  color: var(--by-brand);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.by-compare-slider .by-compare-slidenav:hover {
  color: #145aa8;
}

@media (max-width: 959px) {
  .by-stat-num {
    font-size: 2rem;
  }
}

@keyframes by-img-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.by-service-panel-img.by-img-pending::after,
.by-compare__viewport.by-img-pending::after,
.by-team-photo-wrap.by-img-pending::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background-image: linear-gradient(
    105deg,
    #dedede 0%,
    #e8e8e8 42%,
    #f0f0f0 50%,
    #e8e8e8 58%,
    #dedede 100%
  );
  background-size: 220% 100%;
  animation: by-img-shimmer 1.15s ease-in-out infinite;
}

.by-team-photo-wrap.by-img-pending::after {
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .by-service-panel-img.by-img-pending::after,
  .by-compare__viewport.by-img-pending::after,
  .by-team-photo-wrap.by-img-pending::after {
    animation: none;
    background-image: none;
  }
}

/* Clearance below fixed navbar (all pages except home: hero is full-bleed) */
.by-site-content--below-header {
  padding-top: calc(var(--by-header-h, 7rem) + 0.75rem);
}

.by-page-hero__frame {
  border-radius: 8px;
  overflow: hidden;
  background: #e8eef5;
  box-shadow: 0 8px 28px rgba(24, 108, 198, 0.12);
}

.by-page-prose p {
  line-height: 1.65;
}

.by-page-prose p + p {
  margin-top: 0.85rem;
}

.by-page-gallery__thumb {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.by-home-teaser-img {
  aspect-ratio: 5 / 3;
  background: #e8eef5;
  overflow: hidden;
}

.by-home-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 960px) {
  .by-page-aside {
    top: calc(var(--by-header-h, 5.75rem) + 1rem);
  }
}

/* News index & home teaser */
.by-news-index__header {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(24, 108, 198, 0.12);
}

.by-news-index__empty {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.by-news-card {
  position: relative;
  border-radius: 8px;
  border-left: 4px solid var(--by-brand);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.by-news-card:hover {
  box-shadow: 0 8px 28px rgba(24, 108, 198, 0.12);
}

.by-news-home-card {
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(24, 108, 198, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.by-news-home-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: var(--by-brand);
}
