/* Шапка и общие утилиты лендинга */

.container-site {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}

@media (min-width: 576px) {
  .container-site {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1200px) {
  .container-site {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 6rem;
  }
}

.site-header {
  --header-accent: #1a5f3c;
}

.logo-vgmk {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--header-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--header-accent);
  flex-shrink: 0;
  text-decoration: none;
}

@media (min-width: 768px) {
  .logo-vgmk {
    width: 54px;
    height: 54px;
    font-size: 0.78rem;
  }
}

.logo-vgmk .logo-top {
  display: block;
}

.logo-vgmk .logo-bottom {
  display: block;
  margin-top: 1px;
}

.navbar-brand.text-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: #212529 !important;
}

@media (min-width: 992px) {
  .navbar-brand.text-brand {
    font-size: 1.15rem;
  }
}

.header-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .header-contacts {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
    margin-left: 1rem;
    border-top: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 1rem;
  }
}

.header-contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

@media (min-width: 400px) {
  .header-contact-row {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

.header-contact-row .phone-icon {
  flex-shrink: 0;
  color: var(--header-accent);
}

.header-contact-row a {
  color: #212529;
  text-decoration: none;
  font-weight: 600;
}

.header-contact-row a:hover {
  color: var(--header-accent);
}

.header-contact-row .contact-name {
  color: #6c757d;
  font-weight: 500;
  font-size: 0.8125rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* Hero */

.hero-section {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.hero-panel {
  --hero-khaki: #7a8458;
  --hero-khaki-deep: #656e49;
  background: linear-gradient(145deg, var(--hero-khaki) 0%, var(--hero-khaki-deep) 100%);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(31, 41, 22, 0.18);
}

@media (min-width: 992px) {
  .hero-panel {
    border-radius: 1rem;
  }
}

.hero-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-kicker {
    font-size: 0.875rem;
  }
}

.hero-title {
  font-size: clamp(1.75rem, 4vw + 1rem, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 26rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-lead {
    font-size: 1.0625rem;
  }
}

.btn-hero-cta {
  --bs-btn-color: #2c331f;
  --bs-btn-bg: #f4f1e8;
  --bs-btn-border-color: #f4f1e8;
  --bs-btn-hover-color: #2c331f;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 244, 241, 232;
  --bs-btn-active-color: #2c331f;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
  border-radius: 0.5rem;
  padding-inline: 1.75rem;
  font-weight: 600;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}

.btn-hero-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-hero-outline {
  --bs-btn-color: #fff;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(255, 255, 255, 0.95);
  --bs-btn-hover-color: #2c331f;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-color: #2c331f;
  --bs-btn-active-bg: #f4f1e8;
  --bs-btn-active-border-color: #f4f1e8;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  border-width: 2px;
  border-radius: 0.5rem;
  padding-inline: 1.75rem;
  font-weight: 600;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}

.btn-hero-outline:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 200px;
}

@media (min-width: 992px) {
  .hero-image-wrap {
    align-items: center;
    justify-content: flex-end;
    min-height: 320px;
    padding-right: 1rem !important;
  }
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 0.35rem 1.25rem rgba(0, 0, 0, 0.2));
}

@media (min-width: 992px) {
  .hero-image {
    max-width: 100%;
    max-height: min(420px, 42vw);
    object-position: center right;
  }
}

@media (min-width: 1400px) {
  .hero-image {
    max-height: 460px;
  }
}

/* УТП */

.usp-section {
  --usp-accent: #1a5f3c;
}

.usp-heading {
  color: #212529;
}

.usp-card-inner {
  height: 100%;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.25rem 1.5rem;
  border: 1px solid rgba(26, 95, 60, 0.12);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.usp-card:hover .usp-card-inner {
  border-color: rgba(26, 95, 60, 0.28);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
}

.usp-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--usp-accent);
  line-height: 1;
}

.usp-title {
  color: #212529;
  margin-bottom: 0.75rem;
}

.usp-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #495057;
}

/* Доставка — форма заявки */

.delivery-section {
  --delivery-accent: #1a5f3c;
  --delivery-accent-soft: rgba(26, 95, 60, 0.08);
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef1ea 0%, #f8f9f6 45%, #ffffff 100%);
}

.delivery-section::before {
  content: "";
  position: absolute;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(122, 132, 88, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.py-lg-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.delivery-card {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  padding: 2rem 1.5rem 2.25rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(26, 95, 60, 0.1);
  box-shadow:
    0 1px 2px rgba(15, 23, 15, 0.04),
    0 12px 40px rgba(31, 41, 28, 0.08);
}

@media (min-width: 768px) {
  .delivery-card {
    padding: 2.5rem 2.5rem 2.75rem;
    border-radius: 1.5rem;
  }
}

.delivery-card__head {
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .delivery-card__head {
    margin-bottom: 2rem;
  }
}

.delivery-card__badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--delivery-accent);
  background: var(--delivery-accent-soft);
  border-radius: 999px;
}

.delivery-card__title {
  font-size: clamp(1.25rem, 2.5vw + 0.75rem, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1a1d18;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

.delivery-card__lead {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #5c6560;
  margin: 0;
  max-width: 38rem;
}

.delivery-fields {
  margin-bottom: 0;
}

.delivery-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.delivery-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3d4540;
  margin: 0;
  letter-spacing: 0.01em;
}

.delivery-control.form-control {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #1a1d18;
  background-color: #f3f5f2;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.delivery-control.form-control::placeholder {
  color: #8b9390;
}

.delivery-control.form-control:hover {
  background-color: #eef1ec;
}

.delivery-control.form-control:focus {
  background-color: #fff;
  border-color: rgba(26, 95, 60, 0.35);
  box-shadow: 0 0 0 4px rgba(26, 95, 60, 0.12);
}

.delivery-control.form-control.is-invalid,
.was-validated .delivery-control.form-control:invalid {
  background-color: #fff8f8;
  border-color: rgba(220, 53, 69, 0.35);
}

.was-validated .delivery-control.form-control:invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.delivery-field .invalid-feedback {
  font-size: 0.8125rem;
}

.delivery-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.delivery-form {
  position: relative;
}

.delivery-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(26, 95, 60, 0.1);
}

@media (min-width: 576px) {
  .delivery-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
  }
}

.delivery-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(160deg, #1f6b45 0%, var(--delivery-accent) 55%, #164a30 100%);
  border: none;
  border-radius: 999px;
  box-shadow:
    0 2px 4px rgba(22, 74, 48, 0.15),
    0 8px 24px rgba(26, 95, 60, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.delivery-btn-submit:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(22, 74, 48, 0.2),
    0 14px 32px rgba(26, 95, 60, 0.28);
}

.delivery-btn-submit:active {
  transform: translateY(0);
}

.delivery-btn-submit:disabled {
  opacity: 0.65;
  transform: none;
  cursor: not-allowed;
}

.delivery-btn-submit__icon {
  flex-shrink: 0;
  opacity: 0.95;
  transition: transform 0.2s ease;
}

.delivery-btn-submit:hover:not(:disabled) .delivery-btn-submit__icon {
  transform: translateX(3px);
}

.delivery-feedback {
  flex: 1;
  min-width: 0;
  min-height: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

/* Каталог (табы + карточки) */

.catalog-section {
  --header-accent: #1a5f3c;
}

.catalog-heading {
  color: #212529;
}

.catalog-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  gap: 0.5rem;
  padding-block: 4px 8px;
}

.catalog-tabs .nav-item {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .catalog-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .catalog-tabs .nav-item {
    flex-shrink: 1;
  }
}

.catalog-tabs .nav-link {
  /* Bootstrap .nav-tabs тянет вкладки вниз отрицательным margin — без нижней линии таб-контента бордер кнопки обрезается */
  margin-bottom: 0 !important;
}

.catalog-tab-link {
  font-weight: 600;
  color: #495057;
  border: 1px solid #dee2e6 !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 1rem;
}

.catalog-tab-link:hover {
  border-color: var(--header-accent) !important;
  color: var(--header-accent);
}

.catalog-tab-link.active {
  color: #fff !important;
  background-color: var(--header-accent) !important;
  border-color: var(--header-accent) !important;
}

.catalog-tab-content {
  min-height: 12rem;
}

.catalog-card {
  border-radius: 0.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.catalog-card:hover {
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12) !important;
}

.catalog-card-img-wrap {
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  background: #f8f9fa;
}

.catalog-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
}

.catalog-card-title {
  line-height: 1.35;
  color: #212529;
}

.catalog-card-price {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--header-accent);
  letter-spacing: 0.01em;
}

.btn-catalog-order {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--header-accent);
  --bs-btn-border-color: var(--header-accent);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #155030;
  --bs-btn-hover-border-color: #155030;
  --bs-btn-focus-shadow-rgb: 26, 95, 60;
  font-weight: 600;
  border-radius: 0.5rem;
}

/* Подвал */

.site-footer {
  --footer-accent: #1a5f3c;
  --footer-bg-top: #153d28;
  --footer-bg-bottom: #0f2d1c;
  background: linear-gradient(180deg, var(--footer-bg-top) 0%, var(--footer-bg-bottom) 100%);
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.logo-vgmk--footer {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-lead {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  max-width: 22rem;
}

.footer-heading.letter-spacing {
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-contact-icon {
  color: rgba(160, 205, 175, 0.95);
}

.footer-tel {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.footer-tel:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.footer-address-wrap {
  margin-top: 0.25rem;
}

.footer-address-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.footer-address-line__rule {
  flex: 1 1 auto;
  min-width: 0.75rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
}

.footer-address {
  flex: 0 1 auto;
  max-width: 100%;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 767.98px) {
  .footer-address {
    text-align: center;
  }

  .footer-address-wrap {
    padding-top: 0.35rem;
    margin-top: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer .footer-rule--after-address {
    display: none;
  }
}

@media (min-width: 768px) {
  .footer-address-line__rule {
    display: none;
  }

  .footer-address-wrap {
    margin-top: 0.75rem;
    padding-top: 0;
    border-top: none;
  }

  .footer-address {
    text-align: left;
    max-width: 42rem;
  }
}

.footer-rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 1;
}

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

.footer-inn {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.footer-credits {
  color: rgba(255, 255, 255, 0.45);
}

/* Главная — выбор каталога */

.catalog-hub-card {
  border-color: rgba(26, 95, 60, 0.15) !important;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.catalog-hub-card:hover {
  border-color: rgba(26, 95, 60, 0.35) !important;
  box-shadow: 0 0.5rem 1.5rem rgba(31, 41, 28, 0.1) !important;
  transform: translateY(-2px);
}

.catalog-hub-card__kicker {
  letter-spacing: 0.1em;
  color: var(--header-accent, #1a5f3c);
}

.catalog-hub-card__cta {
  font-size: 0.9375rem;
}

.footer-credits-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: none;
}

.footer-credits-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Корзина */

.btn-cart-icon {
  color: var(--header-accent, #1a5f3c);
  border-radius: 0.5rem;
  line-height: 1;
}

.btn-cart-icon:hover,
.btn-cart-icon:focus-visible {
  color: #145030;
  background-color: rgba(26, 95, 60, 0.08);
}

.cart-nav-badge {
  font-size: 0.65rem;
  min-width: 1.25rem;
  padding: 0.2em 0.45em;
}

.cart-offcanvas {
  max-width: min(420px, 100vw);
}

.cart-lines .cart-line-thumb {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #f0f2ee;
}

.cart-lines .cart-line-thumb-placeholder {
  width: 56px;
  height: 56px;
}

.min-h-feedback {
  min-height: 1.25rem;
}

/* Страница «Производство» */

.production-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.production-breadcrumb a:hover {
  color: var(--header-accent, #1a5f3c);
  text-decoration: underline;
}

.production-prose p {
  line-height: 1.75;
  color: #3a4238;
  margin-bottom: 1rem;
}

.production-prose p:last-child {
  margin-bottom: 0;
}

.production-prose a {
  color: var(--header-accent, #1a5f3c);
  font-weight: 500;
}

.production-prose a:hover {
  color: #145030;
}

.production-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.35rem;
}

.production-gallery-card {
  margin: 0;
}

.production-gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0.35rem 1.25rem rgba(31, 41, 28, 0.1);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.production-gallery-trigger:hover,
.production-gallery-trigger:focus-visible {
  box-shadow: 0 0.5rem 1.75rem rgba(26, 95, 60, 0.18);
  transform: translateY(-3px);
  outline: none;
}

.production-gallery-aspect {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.production-gallery-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.production-gallery-trigger:hover .production-gallery-aspect img,
.production-gallery-trigger:focus-visible .production-gallery-aspect img {
  transform: scale(1.06);
}

.production-gallery-zoom {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  pointer-events: none;
}

.production-gallery-caption {
  padding: 0.55rem 0.35rem 0;
  font-size: 0.875rem;
  text-align: center;
  color: #5a6358;
  line-height: 1.35;
}

.production-gallery-modal-img {
  max-height: min(88vh, 920px);
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* Тизер производства на главной */

.production-teaser-kicker {
  letter-spacing: 0.1em;
}

.production-teaser-card {
  border-color: rgba(26, 95, 60, 0.18) !important;
  background: #fff;
}

.production-teaser-visual {
  background: linear-gradient(145deg, #1a5f3c 0%, #134a30 100%);
  color: rgba(255, 255, 255, 0.96);
}

.production-teaser-brandmark {
  max-width: 11rem;
}

.production-teaser-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.production-teaser-icon svg {
  width: min(7.5rem, 100%);
  height: auto;
}

.production-teaser-pictogram-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}
