/*
  Veterinary visual layer inspired by the Pa'lais reference:
  warm paper, one deep-indigo structural color, organic accents.
  Content, URLs and SEO markup remain untouched.
*/

@font-face {
  font-family: "Vet Display";
  src: url("../fonts/roboto_condensed-b.woff2") format("woff2");
  font-display: swap;
}

:root {
  --cream-paper: #fbf9f6;
  --pure-white: #ffffff;
  --deep-indigo: #234386;
  --ink: #1d2633;
  --muted-ink: #647184;
  --honey-gold: #ffc400;
  --burnt-orange: #ed7328;
  --sky-blue: #6aa8dc;
  --warm-sand: #d2b68c;
  --mint-sage: #a2d3a6;
  --hairline: rgba(35, 67, 134, 0.16);
  --card-shadow: 0 20px 27px rgba(0, 0, 0, 0.05);
  --display-font: "Vet Display", "Roboto Condensed", Impact, sans-serif;
  --ui-font: Montserrat, "Open Sans", Arial, sans-serif;
  --body-font: "Open Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

body.vetnas-concept {
  background: var(--cream-paper);
  color: var(--ink);
  font-family: var(--body-font);
}

/* overflow: clip (not hidden) — clips the decorative blobs horizontally without
   creating a scroll container, so the sticky header can stick to the viewport. */
.concept-page { overflow: clip; }

.concept-shell {
  width: min(1200px, calc(100% - 48px));
}

.concept-topbar {
  border-bottom: 1px solid rgba(35, 67, 134, 0.1);
  background: rgba(251, 249, 246, 0.93);
  backdrop-filter: blur(16px);
}

.concept-nav {
  gap: 26px;
  min-height: 88px;
}

.concept-brand {
  gap: 12px;
  color: var(--deep-indigo);
  font-family: var(--ui-font);
  letter-spacing: 0.015em;
}

.concept-brand img { width: 52px; height: 52px; }

.concept-brand span {
  margin-top: 3px;
  color: var(--muted-ink);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.concept-menu { gap: 2px; }

.concept-menu a {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 21px;
  color: var(--deep-indigo);
  font: 700 11px/1 var(--ui-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept-menu a:hover {
  background: rgba(162, 211, 166, 0.38);
  color: var(--deep-indigo);
}

.concept-phone,
.concept-button--primary,
.vns-form-submit {
  border: 0;
  border-radius: 32px;
  background: var(--deep-indigo);
  color: var(--pure-white);
  box-shadow: none;
  font-family: var(--ui-font);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.concept-phone {
  min-height: 48px;
  padding: 0 22px;
  font-size: 12px;
}

.concept-hero,
.concept-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--cream-paper);
}

.concept-hero { padding: 88px 0 84px; }
.concept-page-hero { padding: 76px 0 58px; }

.concept-hero::before,
.concept-page-hero::before {
  position: absolute;
  z-index: -2;
  content: "";
  width: min(52vw, 720px);
  height: 640px;
  right: -240px;
  top: -98px;
  background: var(--honey-gold);
  border-radius: 57% 43% 67% 33% / 42% 54% 46% 58%;
  transform: rotate(-13deg);
}

.concept-hero::after,
.concept-page-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: min(36vw, 510px);
  height: 470px;
  right: -102px;
  bottom: -225px;
  background: var(--mint-sage);
  border-radius: 32% 68% 39% 61% / 67% 32% 68% 33%;
  transform: rotate(19deg);
}

.concept-hero-grid { gap: 58px; }
/* Let hero/about/final grid tracks shrink below content width so a long
   heading word never forces the column wider than the screen (mobile fit). */
.concept-hero-grid > *,
.concept-about > *,
.concept-final > * { min-width: 0; }
/* Wrap only between whole words — never split a word mid-way ("тетрадка" look). */
.concept-hero h1,
.concept-page-hero h1 { overflow-wrap: normal; word-break: keep-all; hyphens: none; }

.concept-kicker,
.concept-eyebrow {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--deep-indigo);
  font: 700 11px/1 var(--ui-font);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.concept-kicker { padding: 0; margin-bottom: 22px; }
.concept-kicker::before { width: 8px; height: 8px; background: var(--burnt-orange); }

.concept-hero h1,
.concept-page-hero h1,
.concept-section-head h2,
.concept-about h2,
.concept-final h2,
.concept-content h2,
.concept-content h3,
.concept-service h3,
.concept-service-card h2,
.concept-news h3,
.concept-contact-card h3,
.dir-card h3 {
  color: var(--deep-indigo);
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.concept-hero h1 {
  max-width: 710px;
  font-size: clamp(50px, 7.2vw, 86px);
  line-height: 0.88;
  letter-spacing: 0.03em;
}

.concept-page-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 0.92;
  letter-spacing: 0.035em;
}

.concept-lead,
.concept-page-hero p,
.concept-section-head p,
.concept-about p,
.concept-final p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.72;
}

.concept-lead { max-width: 630px; }

.concept-actions { gap: 14px; margin-top: 34px; }

.concept-button {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 32px;
  font: 700 12px/1 var(--ui-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.concept-button:hover,
.concept-phone:hover,
.vns-form-submit:hover { transform: translateY(-2px); color: var(--pure-white); }

.concept-button--secondary {
  border: 2px solid var(--burnt-orange);
  background: transparent;
  color: var(--burnt-orange);
}

.concept-button--secondary:hover { background: transparent; color: var(--burnt-orange); }

.concept-button--sun {
  border: 2px solid var(--burnt-orange);
  background: transparent;
  color: var(--burnt-orange);
  box-shadow: none;
}

.concept-button--sun:hover { background: transparent; color: var(--burnt-orange); filter: none; }

.concept-hero-card { min-height: 570px; }

.concept-hero-photo {
  inset: 28px 0 60px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--deep-indigo);
  box-shadow: var(--card-shadow);
}

.concept-hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(35, 67, 134, 0.05), rgba(35, 67, 134, 0.26));
}

.concept-hero-badge {
  width: min(340px, 78%);
  padding: 23px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--pure-white);
  box-shadow: var(--card-shadow);
}

.concept-hero-badge strong { color: var(--deep-indigo); font-family: var(--display-font); letter-spacing: 0.04em; }
.concept-hero-badge span { color: var(--muted-ink); }

.concept-stats { gap: 14px; margin-top: -32px; }

.concept-stat,
.concept-service,
.concept-review,
.concept-news,
.concept-contact-card,
.concept-content-card,
.concept-service-card,
.dir-card,
.vns-form-card,
.concept-map-card {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--pure-white);
  box-shadow: var(--card-shadow);
}

.concept-stat { padding: 22px; }
.concept-stat strong { color: var(--deep-indigo); font-family: var(--display-font); font-size: 26px; letter-spacing: 0.035em; text-transform: uppercase; }
.concept-stat span { color: var(--muted-ink); line-height: 1.55; }

.concept-section { position: relative; padding: 88px 0; background: var(--cream-paper); }
.concept-section--soft { background: var(--pure-white); }

.concept-section--soft::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 190px;
  content: "";
  background: rgba(162, 211, 166, 0.48);
  border-radius: 12% 88% 48% 52% / 56% 21% 79% 44%;
  transform: translate(-42%, -42%) rotate(-10deg);
}

.concept-section--royal {
  overflow: hidden;
  background: var(--deep-indigo);
}

.concept-section--royal::after {
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 380px;
  height: 320px;
  content: "";
  background: var(--honey-gold);
  border-radius: 59% 41% 63% 37% / 48% 35% 65% 52%;
  opacity: 0.98;
  transform: rotate(-18deg);
}

.concept-section-head { gap: 30px; margin-bottom: 40px; }

.concept-section-head h2,
.concept-about h2 { max-width: 760px; font-size: clamp(36px, 4.8vw, 54px); line-height: 0.94; }
.concept-section-head p { max-width: 480px; color: var(--muted-ink); }
.concept-section--royal .concept-section-head h2,
.concept-section--royal .concept-section-head p,
.concept-final h2 { color: var(--pure-white); }

.concept-about { gap: 56px; }
.concept-about-photo { min-height: 470px; border: 0; border-radius: 8px; box-shadow: var(--card-shadow); }
.concept-eyebrow { margin-bottom: 18px; }
.concept-about p { color: var(--ink); }

.concept-checks li { padding-left: 30px; color: var(--deep-indigo); font-family: var(--ui-font); font-weight: 700; }
.concept-checks li::before { top: 5px; width: 16px; height: 16px; border-radius: 0; background: var(--honey-gold); transform: rotate(45deg); }

.concept-services,
.concept-reviews,
.concept-news-grid,
.concept-contact-grid { gap: 20px; }

.concept-service {
  min-height: 220px;
  padding: 26px;
  border-radius: 8px;
}

.concept-service::after {
  width: 145px;
  height: 130px;
  right: -60px;
  bottom: -58px;
  border-radius: 63% 37% 34% 66% / 43% 63% 37% 57%;
  background: rgba(162, 211, 166, 0.58);
}

.concept-service:nth-child(3n + 2)::after { background: rgba(255, 196, 0, 0.58); }
.concept-service:nth-child(3n)::after { background: rgba(237, 115, 40, 0.34); }
.concept-service:hover,
.concept-service-card:hover,
.dir-card:hover { transform: translateY(-5px); border-color: rgba(35, 67, 134, 0.34); box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08); }
.concept-service h3 { margin: 20px 0 9px; font-size: 28px; line-height: 0.98; }
.concept-service p { color: var(--muted-ink); }

.concept-gallery { gap: 18px; }
.concept-gallery figure { border: 0; border-radius: 8px; box-shadow: var(--card-shadow); }

.concept-review,
.concept-news,
.concept-contact-card { padding: 25px; }
.concept-review p,
.concept-news p,
.concept-contact-card p { color: var(--ink); line-height: 1.7; }
.concept-review strong,
.concept-news h3,
.concept-contact-card h3 { color: var(--deep-indigo); font-family: var(--display-font); letter-spacing: 0.04em; text-transform: uppercase; }
.concept-news span { color: var(--burnt-orange); font: 700 11px/1 var(--ui-font); letter-spacing: 0.13em; text-transform: uppercase; }

.concept-directions { gap: 18px; }
.dir-card { min-height: 150px; padding: 23px; border-radius: 8px; }
.dir-card h3 { font-size: 24px; line-height: 1; }
.dir-card span { color: var(--burnt-orange); font: 700 11px/1 var(--ui-font); letter-spacing: 0.12em; text-transform: uppercase; }

.concept-final { position: relative; z-index: 1; }
.concept-final h2 { font-size: clamp(42px, 5vw, 60px); line-height: 0.9; }
.concept-final p { color: rgba(255,255,255,0.82); }
.concept-section--royal .concept-button--primary { background: var(--pure-white); color: var(--deep-indigo); }
.concept-section--royal .concept-button--primary:hover { color: var(--deep-indigo); }

.concept-footer { padding: 34px 0; background: #152d5d; }
.concept-footer a { color: var(--honey-gold); }

.concept-side-menu { top: 104px; left: 20px; }
.concept-side-menu__trigger {
  min-height: 50px;
  border: 0;
  border-radius: 32px;
  background: var(--deep-indigo);
  box-shadow: none;
  font: 700 11px/1 var(--ui-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.concept-side-menu__panel { border: 1px solid var(--hairline); border-radius: 8px; background: rgba(255,255,255,.98); box-shadow: var(--card-shadow); }
.concept-side-menu__main { border-radius: 4px; background: var(--cream-paper); color: var(--deep-indigo) !important; }
.concept-side-menu__group { border-color: var(--hairline); }
.concept-side-menu__group summary { color: var(--deep-indigo); font-family: var(--ui-font); }
.concept-side-menu__group summary::after { color: var(--burnt-orange); }
.concept-side-menu__links a { color: var(--ink); }
.concept-side-menu__links a:hover,
.concept-side-menu__main:hover { background: rgba(162,211,166,.32); color: var(--deep-indigo); }

.concept-map-section { background: var(--cream-paper); }
.concept-map-card { min-height: 430px; border-radius: 8px; }
.concept-map-layout { gap: 22px; }

.concept-page-hero .concept-shell { position: relative; }
.concept-breadcrumbs { color: var(--muted-ink); font: 700 11px/1.6 var(--ui-font); letter-spacing: .08em; text-transform: uppercase; }
.concept-breadcrumbs a { color: var(--deep-indigo); }
.concept-breadcrumbs__sep { color: var(--burnt-orange); }
.concept-breadcrumbs__current { color: var(--muted-ink); font-weight: 700; }

.concept-content-card { border-radius: 8px; }
.concept-content { padding: clamp(24px, 4vw, 52px); color: var(--ink); font-size: 17px; line-height: 1.76; }
.concept-content h2 { margin: 38px 0 16px; font-size: clamp(33px, 4vw, 48px); line-height: .98; }
.concept-content h3 { margin: 28px 0 12px; font-size: 28px; line-height: 1; }
.concept-content a { color: var(--deep-indigo); }
.concept-content img { border-radius: 8px; }
.concept-content table { border: 1px solid var(--hairline); border-radius: 8px; background: var(--pure-white); }
.concept-content th,
.concept-content td { border-color: var(--hairline); padding: 13px 15px; }
.concept-content th { background: rgba(162,211,166,.28); color: var(--deep-indigo); font-family: var(--ui-font); }
.concept-content tr:nth-child(even) td { background: rgba(251,249,246,.78); }
.concept-content .g-button,
.concept-content .vetnas-landing-button { border-radius: 32px; background: var(--deep-indigo); }
.concept-content .vetnas-landing-card,
.concept-content .vetnas-landing-block,
.concept-content .vetnas-landing-cta,
.concept-content .g-article { border: 1px solid var(--hairline); border-radius: 8px; background: var(--cream-paper); }
.concept-content .g-pagination__item { border-radius: 32px; background: var(--cream-paper); color: var(--deep-indigo); }
.concept-content .g-pagination__item--active { background: var(--deep-indigo); color: var(--pure-white); }

.concept-service-card { min-height: 190px; border-radius: 8px; background: var(--pure-white); }
.concept-service-card::before { border-radius: 64% 36% 61% 39% / 46% 60% 40% 54%; background: rgba(255,196,0,.55); }
.concept-service-card:nth-child(even)::before { background: rgba(162,211,166,.55); }
.concept-service-card span { border-radius: 16px; background: rgba(162,211,166,.38); color: var(--deep-indigo); font-family: var(--ui-font); }
.concept-service-card h2 { font-size: 28px; line-height: 1; }
.concept-service-card p { color: var(--muted-ink); }
.concept-service-card b { color: var(--burnt-orange); }

.reviews-arrow { border-color: var(--hairline); border-radius: 50%; background: var(--pure-white); color: var(--deep-indigo); box-shadow: var(--card-shadow); }
.reviews-arrow:hover { border-color: var(--deep-indigo); background: var(--deep-indigo); color: var(--pure-white); }
.reviews-dot { background: rgba(35,67,134,.22); }
.reviews-dot.active { background: var(--burnt-orange); }

.vns-form-card { border-radius: 8px; padding: 28px; }
.vns-form input[type=text],
.vns-form input[type=tel],
.vns-form textarea { border-color: var(--hairline); border-radius: 8px; background: var(--cream-paper); }
.vns-form input:focus,
.vns-form textarea:focus { border-color: var(--deep-indigo); background: var(--pure-white); }
.vns-consent { color: var(--muted-ink); }
.vns-consent input { accent-color: var(--deep-indigo); }
.vns-consent a { color: var(--deep-indigo); }
.vns-form-submit { min-height: 52px; padding: 0 30px; }
.vns-modal,
.vns-lightbox { background: rgba(21,45,93,.72); }
.vns-modal__box { border-radius: 8px; }
.vns-modal__box h3 { color: var(--deep-indigo); font-family: var(--display-font); letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 980px) {
  .concept-hero-grid,
  .concept-about,
  .concept-final { grid-template-columns: 1fr; }
  .concept-hero { padding-top: 68px; }
  .concept-hero-card { min-height: 500px; }
  .concept-hero::before { width: 72vw; right: -280px; }
}

@media (max-width: 680px) {
  .concept-shell { width: min(100% - 28px, 1200px); }
  .concept-nav { min-height: 76px; gap: 12px; padding-right: 64px; }
  .concept-brand b { font-size: 13px; }
  .concept-brand img { width: 42px; height: 42px; }
  .concept-menu { display: none; }
  .concept-phone { min-height: 42px; padding: 0 13px; font-size: 10px; }
  .concept-side-menu { top: 12px; right: 12px; left: auto; }
  .concept-side-menu__trigger { width: 48px; min-height: 48px; justify-content: center; padding: 0; }
  .concept-side-menu__trigger span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .concept-hero,
  .concept-page-hero { padding: 62px 0 50px; }
  .concept-hero h1 { font-size: clamp(24px, 7.4vw, 60px); letter-spacing: .01em; }
  .concept-page-hero h1 { font-size: clamp(22px, 6.4vw, 55px); letter-spacing: .01em; }
  .concept-lead,
  .concept-page-hero p { font-size: 16px; }
  .concept-hero::before,
  .concept-page-hero::before { width: 420px; height: 390px; right: -285px; top: -105px; }
  .concept-hero::after,
  .concept-page-hero::after { width: 320px; height: 250px; right: -190px; bottom: -140px; }
  .concept-hero-card { min-height: 365px; }
  .concept-hero-photo { inset: 15px 0 48px 0; }
  .concept-hero-badge { width: 90%; padding: 18px; }
  .concept-stats,
  .concept-services,
  .concept-reviews,
  .concept-news-grid,
  .concept-contact-grid,
  .concept-service-grid,
  .concept-gallery,
  .concept-content .vetnas-landing-cards,
  .concept-content .g-article-list { grid-template-columns: 1fr; }
  .concept-section { padding: 62px 0; }
  .concept-section-head { display: block; margin-bottom: 28px; }
  .concept-section-head p { margin-top: 16px; }
  .concept-section-head h2,
  .concept-about h2 { font-size: 40px; }
  .concept-content { padding: 24px 18px; font-size: 16px; }
  .concept-content table { display: block; overflow-x: auto; white-space: normal; }
  .concept-content th,
  .concept-content td { min-width: 148px; }
  .concept-phone-float { background: var(--deep-indigo); color: var(--honey-gold); box-shadow: var(--card-shadow); }
}

/* Second pass: bring the rounded, paper-cut silhouettes from the reference
   forward.  These rules intentionally only affect presentation. */
:root {
  --round-card: 30px;
  --round-soft: 42px;
}

.concept-hero,
.concept-page-hero,
.concept-section {
  overflow: hidden;
}

.concept-section > .concept-shell,
.concept-hero > .concept-shell,
.concept-page-hero > .concept-shell {
  position: relative;
  z-index: 1;
}

/* A second, quiet paper-cut layer gives each section depth without placing
   anything over the existing veterinary content. */
.concept-section:not(.concept-section--royal)::after {
  position: absolute;
  z-index: 0;
  width: 260px;
  height: 220px;
  right: -118px;
  bottom: -116px;
  content: "";
  pointer-events: none;
  background: rgba(106, 168, 220, 0.20);
  border-radius: 58% 42% 30% 70% / 42% 54% 46% 58%;
  transform: rotate(18deg);
}

.concept-section--soft::before {
  width: 310px;
  height: 280px;
  border-radius: 42% 58% 68% 32% / 46% 35% 65% 54%;
  transform: translate(-46%, -35%) rotate(-17deg);
}

.concept-section--soft::after {
  width: 330px;
  height: 260px;
  background: rgba(255, 196, 0, 0.19);
  border-radius: 31% 69% 47% 53% / 63% 38% 62% 37%;
  transform: rotate(-22deg);
}

.concept-hero::before,
.concept-page-hero::before {
  width: min(58vw, 790px);
  height: 690px;
  right: -270px;
  top: -135px;
  border-radius: 47% 53% 61% 39% / 39% 48% 52% 61%;
  box-shadow: inset 24px -24px 0 rgba(237, 115, 40, 0.10);
}

.concept-hero::after,
.concept-page-hero::after {
  width: min(43vw, 590px);
  height: 510px;
  right: -155px;
  bottom: -255px;
  border-radius: 63% 37% 48% 52% / 39% 62% 38% 61%;
  box-shadow: inset -18px 18px 0 rgba(255, 255, 255, 0.28);
}

.concept-hero-photo {
  inset: 20px 0 56px 10px;
  overflow: hidden;
  border-radius: 43% 57% 42% 58% / 35% 42% 58% 65%;
  box-shadow: 18px 20px 0 rgba(106, 168, 220, 0.24), var(--card-shadow);
}

.concept-hero-badge {
  border-radius: 29px 29px 29px 8px;
  box-shadow: 12px 12px 0 rgba(255, 196, 0, 0.42), var(--card-shadow);
}

.concept-yandex-badge {
  display: block;
  width: 150px;
  height: 50px;
  margin-top: 14px;
  border: 0;
}

/* Keep the slider clipped horizontally, while leaving room for the review
   frame and shadow above and below without adding a visible padding strip. */
.reviews-viewport {
  overflow: visible;
  clip-path: inset(-18px 0 -22px 0);
}

.reviews-dots {
  margin-top: 8px;
  padding-top: 0;
  background: transparent;
}

.concept-reviews-slider .concept-review { box-shadow: none; }

/* Reviews use the page's common background rather than their own colour layer. */
#reviews::before,
#reviews::after { display: none; }

.concept-about-photo {
  overflow: hidden;
  border-radius: 58% 42% 37% 63% / 42% 52% 48% 58%;
  box-shadow: -16px 18px 0 rgba(162, 211, 166, 0.46), var(--card-shadow);
}

/* Images are inline by default and leave a tiny baseline gap. In this
   framed photo that exposed the blue card background underneath the image. */
.concept-about-photo img { display: block; }

.concept-stat,
.concept-review,
.concept-news,
.concept-contact-card,
.concept-content-card,
.concept-service-card,
.dir-card,
.vns-form-card,
.concept-map-card,
.concept-side-menu__panel {
  border-radius: var(--round-card);
}

.concept-service {
  overflow: hidden;
  border-radius: 32px 32px 32px 12px;
  box-shadow: 10px 12px 0 rgba(162, 211, 166, 0.24), var(--card-shadow);
}

.concept-service:nth-child(3n + 2) { box-shadow: 10px 12px 0 rgba(255, 196, 0, 0.24), var(--card-shadow); }
.concept-service:nth-child(3n) { box-shadow: 10px 12px 0 rgba(237, 115, 40, 0.16), var(--card-shadow); }
.concept-service::after { width: 190px; height: 170px; right: -74px; bottom: -76px; }

.concept-gallery figure {
  overflow: hidden;
  border-radius: 36px 36px 36px 12px;
}

.concept-gallery figure:nth-child(even) { border-radius: 54% 46% 24px 24px / 18% 28% 24px 24px; }

/* The middle gallery column is deliberately rectangular, like the right one. */
.concept-gallery figure:nth-child(2),
.concept-gallery figure:nth-child(4) {
  border-radius: 36px 36px 36px 12px;
  transform: none;
}

.concept-content img { border-radius: var(--round-card); }
.concept-content table { border-radius: 22px; overflow: hidden; }
.concept-content .vetnas-landing-card,
.concept-content .vetnas-landing-block,
.concept-content .vetnas-landing-cta,
.concept-content .g-article { border-radius: var(--round-card); }

.concept-service-card { border-radius: 34px 34px 34px 12px; }
.concept-map-card { overflow: hidden; border-radius: 44px 44px 44px 14px; }
.vns-form-card { border-radius: 38px 38px 38px 14px; }

@media (max-width: 680px) {
  .concept-hero-photo {
    inset: 14px 0 42px 0;
    border-radius: 38% 62% 40% 60% / 34% 43% 57% 66%;
  }

  .concept-section:not(.concept-section--royal)::after {
    width: 190px;
    height: 165px;
    right: -90px;
    bottom: -82px;
  }

  .concept-section--soft::before { width: 220px; height: 190px; }
}

/* Let the colour shapes travel through the whole composition instead of
   stopping at the bottom edge of a section. */
.concept-page {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 310px 460px at 6% 23%, rgba(162, 211, 166, 0.34) 0 56%, transparent 57%),
    radial-gradient(ellipse 410px 285px at 94% 38%, rgba(255, 196, 0, 0.23) 0 54%, transparent 55%),
    radial-gradient(ellipse 285px 470px at 4% 69%, rgba(106, 168, 220, 0.20) 0 53%, transparent 54%),
    radial-gradient(ellipse 450px 310px at 96% 82%, rgba(237, 115, 40, 0.13) 0 50%, transparent 51%);
}

.concept-section {
  overflow: visible;
  background: transparent;
}

.concept-section--soft {
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(2px);
}

.concept-section:not(.concept-section--royal)::after {
  z-index: 0;
  bottom: -150px;
  opacity: 0.88;
}

.concept-section--royal { overflow: hidden; }

/* Small, intentionally uneven print-like details: a hint of neo-brutalism,
   kept warm and friendly rather than heavy or aggressive. */
.concept-kicker::after,
.concept-eyebrow::after {
  display: inline-block;
  width: 29px;
  height: 8px;
  margin-left: 12px;
  content: "";
  vertical-align: middle;
  background: var(--burnt-orange);
  border-radius: 999px 3px 999px 3px;
  transform: rotate(-8deg);
}

.concept-stat:nth-child(odd),
.concept-review:nth-child(odd),
.dir-card:nth-child(odd) {
  transform: rotate(-0.65deg);
}

.concept-stat:nth-child(even),
.concept-review:nth-child(even),
.dir-card:nth-child(even) {
  transform: rotate(0.65deg);
}

.concept-service:nth-child(3n + 1) { transform: translateY(6px) rotate(-0.45deg); }
.concept-service:nth-child(3n + 2) { transform: translateY(-5px) rotate(0.42deg); }
.concept-service:nth-child(3n) { transform: translateY(2px) rotate(-0.2deg); }
.concept-service:hover { transform: translateY(-6px) rotate(0deg); }

.concept-stat,
.concept-review,
.dir-card {
  border: 2px solid rgba(35, 67, 134, 0.16);
  box-shadow: 7px 8px 0 rgba(35, 67, 134, 0.10), var(--card-shadow);
}

.concept-service h3::after,
.dir-card h3::after {
  display: block;
  width: 36px;
  height: 5px;
  margin-top: 13px;
  content: "";
  background: var(--honey-gold);
  border-radius: 2px 99px 99px 2px;
  transform: rotate(-3deg);
}

.concept-gallery figure:nth-child(3n + 1) { transform: rotate(-1.25deg); }
.concept-gallery figure:nth-child(3n + 2) { transform: translateY(12px) rotate(1deg); }
.concept-gallery figure:nth-child(3n) { transform: rotate(-0.4deg); }

/* Keep the two images in the middle column as clean rectangular cards. */
.concept-gallery figure:nth-child(2),
.concept-gallery figure:nth-child(4) { transform: none; }

/* The final call-to-action becomes a distinct, high-contrast paper-cut panel.
   It keeps the white copy readable while borrowing Pa'lais' lively, broken-up
   colour fields rather than a flat solid rectangle. */
.concept-section.concept-section--royal {
  padding: 92px 0;
  background: transparent;
}

.concept-final {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(42px, 6vw, 78px);
  border-radius: 58px 58px 58px 18px;
  background:
    radial-gradient(ellipse 310px 215px at 99% 7%, rgba(255, 196, 0, 0.96) 0 52%, transparent 53%),
    radial-gradient(ellipse 240px 280px at 8% 108%, rgba(162, 211, 166, 0.72) 0 49%, transparent 50%),
    radial-gradient(ellipse 190px 130px at 60% 118%, rgba(237, 115, 40, 0.66) 0 52%, transparent 53%),
    var(--deep-indigo);
  box-shadow: 16px 18px 0 rgba(255, 196, 0, 0.42);
}

.concept-final::before,
.concept-final::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.concept-final::before {
  width: 140px;
  height: 30px;
  top: 42px;
  right: 260px;
  background: var(--pure-white);
  border-radius: 3px 99px 3px 99px;
  opacity: 0.88;
  transform: rotate(-17deg);
}

.concept-final::after {
  width: 76px;
  height: 76px;
  top: 85px;
  right: 92px;
  border: 5px solid var(--burnt-orange);
  border-radius: 58% 42% 48% 52% / 38% 62% 38% 62%;
  transform: rotate(17deg);
}

.concept-final > * { position: relative; z-index: 1; }
.concept-final .concept-button--primary { background: var(--pure-white); color: var(--deep-indigo); box-shadow: 6px 7px 0 var(--burnt-orange); }
.concept-final .concept-button--primary:hover { background: var(--honey-gold); color: var(--deep-indigo); }

/* Both opening actions are now clear, filled calls to action. */
.concept-button--sun {
  border: 0;
  background: var(--burnt-orange);
  color: var(--pure-white);
  box-shadow: 5px 6px 0 rgba(35, 67, 134, 0.17);
}

.concept-button--sun:hover { background: #d96220; color: var(--pure-white); }

/* Expanded footer: compact but useful navigation and real clinic contacts. */
.concept-footer {
  padding: 62px 0 28px;
  background: #152d5d;
}

.concept-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(180px, 1fr) minmax(180px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.concept-footer-title {
  margin: 0 0 15px;
  color: var(--pure-white);
  font-family: var(--display-font);
  font-size: 27px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.concept-footer-label {
  margin: 0 0 13px;
  color: var(--honey-gold);
  font: 700 11px/1 var(--ui-font);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.concept-footer-address,
.concept-footer-copy {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.65;
}

.concept-footer-phone {
  display: inline-block;
  margin-top: 16px;
  color: var(--pure-white) !important;
  font: 700 18px/1.25 var(--ui-font);
  text-decoration: underline;
  text-decoration-color: var(--honey-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.concept-footer-nav { display: grid; gap: 10px; }
.concept-footer-nav a,
.concept-footer-legal a {
  width: fit-content;
  color: var(--pure-white);
  font: 700 12px/1.35 var(--ui-font);
  letter-spacing: .08em;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.38);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.concept-footer-nav a:hover,
.concept-footer-legal a:hover { color: var(--honey-gold); text-decoration-color: var(--honey-gold); }
.concept-footer-legal { display: grid; gap: 18px; }
.concept-footer-copy { margin-top: 34px; font-size: 12px; }

@media (max-width: 680px) {
  .concept-final { padding: 42px 28px; border-radius: 42px 42px 42px 14px; }
  .concept-final::before { top: 25px; right: 100px; width: 76px; }
  .concept-final::after { top: 70px; right: 30px; width: 48px; height: 48px; }
  .concept-footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* Pa'lais-inspired motion and editorial type, built from the site's own
   licensed font files rather than copying the reference's HWT Artz font. */
:root { --editorial-font: "Vet Display", "Roboto Condensed", Impact, sans-serif; }

.concept-hero h1,
.concept-page-hero h1,
.concept-section-head h2,
.concept-about h2,
.concept-final h2 {
  font-family: var(--editorial-font);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.concept-page { isolation: isolate; }
.concept-page::before,
.concept-page::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

/* These are called organic blobs: deliberately oversized, free-form colour
   shapes that cross several blocks instead of acting as small decorations. */
.concept-page::before {
  width: min(58vw, 760px);
  height: 660px;
  top: 690px;
  left: -365px;
  border-radius: 47% 53% 34% 66% / 49% 38% 62% 51%;
  background: rgba(162, 211, 166, 0.48);
  box-shadow: 30px -26px 0 rgba(255, 196, 0, 0.24);
  transform: rotate(-19deg);
  animation: vet-blob-drift-a 16s ease-in-out infinite alternate;
}

.concept-page::after {
  width: min(64vw, 870px);
  height: 500px;
  top: 2430px;
  right: -455px;
  border-radius: 62% 38% 59% 41% / 35% 55% 45% 65%;
  background: rgba(106, 168, 220, 0.31);
  box-shadow: -42px 28px 0 rgba(237, 115, 40, 0.14);
  transform: rotate(24deg);
  animation: vet-blob-drift-b 19s ease-in-out infinite alternate;
}

.concept-page > * { position: relative; z-index: 1; }

.concept-hero::before,
.concept-page-hero::before {
  animation: vet-hero-wobble 14s ease-in-out infinite alternate;
}

.concept-hero::after,
.concept-page-hero::after { animation: vet-blob-drift-a 11s ease-in-out infinite alternate; }
.concept-service::after { animation: vet-blob-drift-b 9s ease-in-out infinite alternate; }
.concept-hero-badge { animation: vet-badge-float 6s ease-in-out infinite alternate; }
.concept-gallery figure { transition: transform .55s cubic-bezier(.2,.9,.25,1); }
.concept-gallery figure:hover { transform: translateY(-12px) rotate(-1deg) !important; }

@keyframes vet-hero-wobble {
  from { transform: rotate(-13deg) scale(1); }
  to { transform: rotate(-7deg) scale(1.045) translate(-14px, 10px); }
}
@keyframes vet-blob-drift-a {
  from { transform: rotate(-12deg) translate3d(0, 0, 0); }
  to { transform: rotate(7deg) translate3d(28px, -22px, 0); }
}
@keyframes vet-blob-drift-b {
  from { transform: rotate(17deg) translate3d(0, 0, 0) scale(1); }
  to { transform: rotate(28deg) translate3d(-18px, 18px, 0) scale(1.07); }
}
@keyframes vet-badge-float {
  from { transform: rotate(1deg) translateY(0); }
  to { transform: rotate(-1.5deg) translateY(-10px); }
}

/* Contacts become a joyful editorial mini-composition, rather than three
   neutral information cards. */
.concept-contact-grid {
  position: relative;
  isolation: isolate;
  gap: 28px;
  align-items: stretch;
}

.concept-contact-grid::before,
.concept-contact-grid::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.concept-contact-grid::before {
  width: 310px;
  height: 230px;
  top: -72px;
  left: 25%;
  border-radius: 63% 37% 52% 48% / 39% 58% 42% 61%;
  background: rgba(255, 196, 0, .48);
  transform: rotate(-15deg);
}

.concept-contact-grid::after {
  width: 240px;
  height: 280px;
  right: -78px;
  bottom: -94px;
  border-radius: 39% 61% 33% 67% / 58% 36% 64% 42%;
  background: rgba(237, 115, 40, .22);
  transform: rotate(18deg);
}

.concept-contact-card {
  position: relative;
  z-index: 1;
  min-height: 255px;
  padding: 35px 31px;
  overflow: hidden;
  border: 0;
  border-radius: 44px 44px 44px 12px;
  box-shadow: 13px 14px 0 rgba(35, 67, 134, .16), var(--card-shadow);
}

.concept-contact-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  font-size: clamp(31px, 3vw, 43px);
  line-height: .9;
}

.concept-contact-card p {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.concept-contact-card::after {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -56px;
  bottom: -57px;
  content: "";
  border-radius: 56% 44% 30% 70% / 54% 37% 63% 46%;
  transform: rotate(-14deg);
}

.concept-section#contacts::before {
  width: min(54vw, 680px);
  height: 490px;
  top: -152px;
  left: -330px;
  border-radius: 41% 59% 65% 35% / 45% 32% 68% 55%;
  background: rgba(162, 211, 166, .58);
  box-shadow: 58px 38px 0 rgba(255, 196, 0, .28);
  transform: rotate(-23deg);
}

.concept-section#contacts::after {
  width: min(52vw, 620px);
  height: 410px;
  right: -348px;
  bottom: -185px;
  border-radius: 63% 37% 38% 62% / 57% 39% 61% 43%;
  background: rgba(106, 168, 220, .40);
  box-shadow: -48px -24px 0 rgba(237, 115, 40, .18);
  transform: rotate(18deg);
}

.concept-contact-card,
.concept-contact-card:nth-child(1),
.concept-contact-card:nth-child(2),
.concept-contact-card:nth-child(3) {
  background: rgba(255, 255, 255, .92);
  transform: none;
}

.concept-contact-card h3,
.concept-contact-card p,
.concept-contact-card:nth-child(1) h3,
.concept-contact-card:nth-child(1) p { color: var(--deep-indigo); }
.concept-contact-card:nth-child(1)::after { background: rgba(255, 196, 0, .72); }
.concept-contact-card:nth-child(2)::after { background: rgba(162, 211, 166, .76); }
.concept-contact-card:nth-child(3)::after { background: rgba(237, 115, 40, .36); }
.concept-contact-card:nth-child(2) p a { color: var(--deep-indigo); font-size: 21px; font-weight: 800; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  .concept-page::before,
  .concept-page::after,
  .concept-hero::before,
  .concept-page-hero::before,
  .concept-hero::after,
  .concept-page-hero::after,
  .concept-service::after,
  .concept-hero-badge { animation: none; }
}

@media (max-width: 680px) {
  .concept-page::before { width: 390px; height: 420px; left: -285px; top: 730px; }
  .concept-page::after { width: 440px; height: 350px; right: -315px; top: 2300px; }
  .concept-contact-card,
  .concept-contact-card:nth-child(1),
  .concept-contact-card:nth-child(2),
  .concept-contact-card:nth-child(3) { min-height: 212px; transform: none; }
}

@media (max-width: 680px) {
  .concept-page {
    background:
      radial-gradient(ellipse 190px 300px at 0 24%, rgba(162, 211, 166, 0.32) 0 55%, transparent 56%),
      radial-gradient(ellipse 230px 190px at 100% 47%, rgba(255, 196, 0, 0.20) 0 53%, transparent 54%),
      radial-gradient(ellipse 180px 280px at 0 74%, rgba(106, 168, 220, 0.17) 0 54%, transparent 55%);
  }

  .concept-service,
  .concept-gallery figure,
  .concept-stat,
  .concept-review,
  .dir-card { transform: none !important; }
}

/* One continuous paper field: the organic colour shapes belong to the page,
   not to a single block. Transparent section backgrounds let them cross the
   hero/content boundary instead of ending in a hard horizontal line. */
.concept-page {
  --blob-yellow: rgba(255, 196, 0, 0.48);
  --blob-mint: rgba(162, 211, 166, 0.42);
  --blob-blue: rgba(106, 168, 220, 0.30);
  --blob-orange: rgba(237, 115, 40, 0.14);
  min-height: 100vh;
  isolation: isolate;
  background-color: var(--cream-paper);
  background-image:
    radial-gradient(ellipse 420px 380px at 102% 7%, var(--blob-yellow) 0 52%, transparent 53%),
    radial-gradient(ellipse 310px 460px at 6% 23%, var(--blob-mint) 0 56%, transparent 57%),
    radial-gradient(ellipse 410px 285px at 94% 38%, var(--blob-yellow) 0 54%, transparent 55%),
    radial-gradient(ellipse 285px 470px at 4% 69%, var(--blob-blue) 0 53%, transparent 54%),
    radial-gradient(ellipse 450px 310px at 96% 82%, var(--blob-orange) 0 50%, transparent 51%);
}

.concept-hero,
.concept-page-hero {
  overflow: visible;
  background: transparent;
}

/* Section-level shapes would sit over the common layer and visually change
   its colour at joins. The two banner blobs are deliberately kept: they sit
   behind only the banner copy and remain below the whole header. */
.concept-section:not(.concept-section--royal)::before,
.concept-section:not(.concept-section--royal)::after {
  display: none;
}

.concept-hero::before,
.concept-page-hero::before,
.concept-hero::after,
.concept-page-hero::after {
  display: block;
  z-index: 0;
}

.concept-hero::before,
.concept-page-hero::before {
  background: var(--blob-yellow);
  box-shadow: inset 24px -24px 0 rgba(237, 115, 40, 0.08);
}

.concept-hero::after,
.concept-page-hero::after {
  background: var(--blob-mint);
  box-shadow: inset -18px 18px 0 rgba(255, 255, 255, 0.18);
}

.concept-section,
.concept-section--soft,
.concept-map-section {
  background: transparent;
  backdrop-filter: none;
}

/* The page background is layer 1, blobs are layer 2, and all real UI is
   layer 3. Therefore a blob can never cover a navigation control or phone. */
.concept-page::before,
.concept-page::after {
  z-index: 0;
}

.concept-page > header,
.concept-page > main,
.concept-page > footer {
  position: relative;
  z-index: 2;
}

.concept-page > header { position: sticky; top: 0; z-index: 40; }

/* The menu is an independent overlay: it stays at the left edge of the
   viewport and its expanded panel never takes space from the page layout. */
.concept-page > .concept-side-menu {
  position: fixed;
  z-index: 70;
  top: 104px;
  left: 20px;
}

.concept-side-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  margin-top: 0;
}

.concept-page > .concept-phone-float {
  position: fixed;
  z-index: 60;
}

@media (max-width: 680px) {
  .concept-page > .concept-side-menu {
    top: 12px;
    right: 12px;
    left: auto;
  }
  /* Burger sits top-right, so its dropdown must open to the LEFT (into the
     screen) and never be wider than the viewport. */
  .concept-side-menu__panel {
    left: auto;
    right: 0;
    width: min(300px, calc(100vw - 24px));
  }
}

.concept-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
}
.concept-phone,
.concept-phone-float {
  position: relative;
  z-index: 3;
}

/* Give review slides the same solid card treatment as the service cards. */
.concept-reviews-slider .concept-review {
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 32px 32px 32px 12px;
  background: var(--pure-white);
  box-shadow: 10px 12px 0 rgba(162, 211, 166, 0.24), var(--card-shadow);
  transform: none !important;
}

/* ===== Article extras (news): TOC, cover, meta ===== */
.concept-article-cover{display:block;width:100%;max-height:420px;object-fit:cover;border-radius:var(--round-card,18px);margin:0 0 22px}
.concept-article-meta{display:inline-block;font-size:13px;letter-spacing:.04em;text-transform:uppercase;color:var(--burnt-orange,#e07a2f);font-weight:700;margin-bottom:10px}
.toc{margin:0 0 26px;padding:18px 20px;border:1px solid var(--hairline,#e6e6ea);border-left:4px solid var(--burnt-orange,#e07a2f);border-radius:12px;background:rgba(255,196,0,.06)}
.toc__title{font-weight:700;color:var(--deep-indigo,#234386);margin-bottom:10px}
.toc__list{margin:0;padding-left:20px}
.toc__item{margin:4px 0;line-height:1.35}
.toc__item--l3{margin-left:16px;font-size:.95em}
.toc a{color:var(--deep-indigo,#234386);text-decoration:none;border-bottom:1px solid transparent}
.toc a:hover{border-bottom-color:currentColor}
.concept-news-grid .concept-service-card time{display:block}

/* ===== News section (vetnas /novosti/) — 2026-08-01 rework ===== */
.concept-page-hero--compact { padding-top: 56px; padding-bottom: 34px; }
.concept-shell--narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.concept-section--news { padding-top: 20px; }
.concept-section--article { padding-top: 8px; }

.concept-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.concept-news-card {
  display: flex;
  flex-direction: column;
  background: var(--pure-white, #fff);
  border: 1px solid var(--hairline, #e7e6ef);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 26px rgba(35, 67, 134, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.concept-news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(35, 67, 134, .12); border-color: rgba(35,67,134,.18); }
.concept-news-card__img { display: block; aspect-ratio: 16 / 10; background: var(--cream-paper, #f4f1ea); overflow: hidden; }
.concept-news-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.concept-news-card__body { display: flex; flex-direction: column; gap: 9px; padding: 18px 20px 22px; flex: 1; }
.concept-news-card__date { font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--burnt-orange, #ed7328); font-weight: 700; }
.concept-news-card__title { margin: 0; font-size: 19px; line-height: 1.3; color: var(--deep-indigo, #234386); font-family: var(--display-font, Montserrat), sans-serif; }
.concept-news-card__excerpt { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--muted-ink, #6b7280); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.concept-news-card__link { margin-top: auto; padding-top: 6px; font-weight: 700; color: var(--deep-indigo, #234386); }
.concept-news-card:hover .concept-news-card__link { color: var(--burnt-orange, #ed7328); }

/* ===== Article page ===== */
.concept-article { }
.concept-article__meta { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--burnt-orange, #ed7328); font-weight: 700; margin-bottom: 12px; }
.concept-article__lead { font-size: 18px; line-height: 1.55; color: var(--muted-ink, #55607a); margin-top: 6px; }
.concept-article__cover { width: 100%; max-height: 440px; object-fit: cover; border-radius: 22px; margin: 6px 0 26px; display: block; }
.concept-article .concept-content { font-size: 17px; line-height: 1.72; }
.concept-article .concept-content p { margin: 0 0 16px; }
.concept-article .concept-content h2 { margin: 30px 0 12px; font-size: 26px; }
.concept-article .concept-content h3 { margin: 24px 0 10px; font-size: 21px; }
.concept-article__actions { margin-top: 30px; }

@media (max-width: 980px) { .concept-news-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 680px) {
  .concept-news-grid { grid-template-columns: 1fr; gap: 18px; }
  .concept-article__cover { max-height: 260px; border-radius: 16px; }
  .concept-article .concept-content { font-size: 16px; }
}
