/* Лендинги направлений — единый вертикальный ритм и типографика */

.direction-page {
  background: linear-gradient(180deg, #fafbfd 0%, #ffffff 32%, #f7f8fb 100%);
  color: var(--text);
}

.dl-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(320px, 52vh, 440px);
  display: flex;
  align-items: flex-end;
  padding: clamp(96px, 14vw, 132px) 0 clamp(48px, 7vw, 72px);
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 48px rgba(11, 19, 35, 0.12);
}

.dl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 19, 35, 0.52) 0%,
    rgba(11, 19, 35, 0.38) 45%,
    rgba(11, 19, 35, 0.72) 100%
  );
  pointer-events: none;
}

.dl-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(52rem, 100%);
}

.dl-hero__inner h1 {
  font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: #fff;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.dl-hero__inner p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 40rem;
}

.dl-section {
  padding: clamp(52px, 8.5vw, 96px) 0;
  background: var(--surface-soft, #fafbfd);
  scroll-margin-top: calc(var(--navbar-stack, 60px) + 10px);
  position: relative;
}

.dl-section:nth-of-type(even) {
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.dl-section:nth-of-type(odd) {
  box-shadow: inset 0 1px 0 rgba(11, 19, 35, 0.04);
}

.dl-section h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.18;
  color: var(--text);
  overflow-wrap: anywhere;
}

.dl-section .dl-intro {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.72;
  color: var(--muted);
  max-width: 48rem;
  margin: 0;
}

.dl-section-head {
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr));
  gap: clamp(20px, 2.8vw, 28px);
  align-items: stretch;
}

.dl-tile {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(11, 19, 35, 0.07);
  border-radius: clamp(18px, 2.5vw, 24px);
  padding: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 26px) clamp(20px, 3vw, 26px);
  box-shadow: var(
    --shadow-layer,
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 2px 8px rgba(11, 19, 35, 0.04),
    0 14px 42px rgba(11, 19, 35, 0.07)
  );
  min-height: 100%;
  box-sizing: border-box;
  transition: var(
    --transition-card,
    transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease
  );
}

.dl-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(224, 123, 0, 0.88) 0%,
    rgba(224, 123, 0, 0.22) 42%,
    rgba(224, 123, 0, 0.08) 100%
  );
  opacity: 0.9;
  pointer-events: none;
}

.dl-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 123, 0, 0.13);
  box-shadow: var(
    --shadow-layer-hover,
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 8px 28px rgba(11, 19, 35, 0.08),
    0 22px 56px rgba(11, 19, 35, 0.1)
  );
}

.dl-tile h3 {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.dl-tile p {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 15px);
  line-height: 1.68;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.dl-tile--muted {
  background: linear-gradient(180deg, #fcfdff 0%, #f3f5f9 100%);
}

.dl-tile--muted::before {
  opacity: 0.55;
}

.dl-advantage {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 19, 35, 0.07);
  border-radius: clamp(18px, 2.5vw, 24px);
  padding: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 26px);
  box-shadow: var(
    --shadow-layer,
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 2px 8px rgba(11, 19, 35, 0.04),
    0 14px 42px rgba(11, 19, 35, 0.07)
  );
  min-height: 100%;
  box-sizing: border-box;
  transition: var(
    --transition-card,
    transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease
  );
}

.dl-advantage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(224, 123, 0, 0.75) 0%,
    rgba(224, 123, 0, 0.18) 50%,
    rgba(224, 123, 0, 0.06) 100%
  );
  pointer-events: none;
}

.dl-advantage:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 123, 0, 0.14);
  box-shadow: var(
    --shadow-layer-hover,
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 8px 28px rgba(11, 19, 35, 0.08),
    0 22px 56px rgba(11, 19, 35, 0.1)
  );
}

.dl-advantage h3 {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--accent2);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.dl-advantage p {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 15px);
  line-height: 1.68;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.dl-empty {
  margin: 0;
  padding: 28px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted2);
  font-style: italic;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  border: 1px dashed var(--line);
}

.dl-cta {
  padding: clamp(76px, 10.5vw, 100px) 0;
  background: linear-gradient(
    145deg,
    #e8a015 0%,
    #d99206 28%,
    #c97f00 55%,
    #b56f00 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 -8px 36px rgba(11, 19, 35, 0.06);
  margin-top: 0;
  position: relative;
}

.dl-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 65% at 50% 0%,
    rgba(255, 255, 255, 0.22),
    transparent 55%
  );
  pointer-events: none;
}

.dl-cta .container {
  position: relative;
  z-index: 1;
}

.dl-cta__inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 4px;
}

.dl-cta__inner h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #111;
  margin: 0 0 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.dl-cta__inner p {
  font-size: clamp(15px, 1.65vw, 17px);
  line-height: 1.68;
  color: rgba(17, 17, 17, 0.85);
  margin: 0 0 28px;
}

.dl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  align-items: center;
}

.dl-cta__inner .btn-primary {
  box-shadow: 0 4px 16px rgba(11, 19, 35, 0.12),
    0 12px 36px rgba(0, 0, 0, 0.2);
}

.dl-cta__inner .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(11, 19, 35, 0.14),
    0 16px 44px rgba(0, 0, 0, 0.22);
}

.dl-cta .btn-secondary.dl-cta__back {
  border: 2px solid rgba(17, 17, 17, 0.35);
  color: #111;
  background: rgba(255, 255, 255, 0.45);
}

.dl-cta .btn-secondary.dl-cta__back:hover {
  background: #fff;
  color: #111;
  border-color: rgba(17, 17, 17, 0.55);
  transform: translateY(-2px);
}

.dl-cta .btn:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.55);
  outline-offset: 3px;
}

.dl-cta .btn-primary:focus-visible {
  outline-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .dl-hero {
    min-height: clamp(280px, 48vw, 320px);
    padding-bottom: clamp(32px, 8vw, 40px);
  }

  .dl-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dl-cta__actions .btn {
    width: 100%;
    max-width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
    min-height: 48px;
  }
}

/* ----- Оборудование и решения (bulk-materials) ----- */

.section-equipment .dl-section-head {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.equipment-showcase-lead {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--muted);
}

.section-equipment .equipment-grid {
  margin-top: clamp(20px, 3vw, 32px);
}

/* ----- Каталоги PDF (карточки с превью) ----- */

.section-pdf .dl-section-head {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.pdf-catalog-lead {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--muted);
}

/* Сетка каталогов: ровные ряды, одинаковая высота в строке (stretch). */
.pdf-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 24px);
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .pdf-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  .pdf-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pdf-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  background: var(--card);
  border: 1px solid rgba(11, 19, 35, 0.07);
  border-radius: clamp(16px, 2vw, 20px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 2px 8px rgba(11, 19, 35, 0.04),
    0 12px 36px rgba(11, 19, 35, 0.06);
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.pdf-item:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 123, 0, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 10px 32px rgba(11, 19, 35, 0.09),
    0 20px 48px rgba(11, 19, 35, 0.08);
}

.pdf-item__media {
  flex-shrink: 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef1f6 100%);
  border-bottom: 1px solid rgba(11, 19, 35, 0.06);
}

.pdf-item__media--empty {
  min-height: 120px;
  background: linear-gradient(180deg, #f0f2f6 0%, #e8ebf1 100%);
}

.pdf-item__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pdf-item__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 2.8vw, 20px) clamp(16px, 2.8vw, 20px) clamp(18px, 3vw, 22px);
  gap: 10px;
  min-height: 0;
}

.pdf-item__body h3 {
  margin: 0;
  font-size: clamp(15px, 1.45vw, 17px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.pdf-item__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: clamp(13px, 1.35vw, 15px);
  line-height: 1.55;
  color: var(--muted);
}

.pdf-item__btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  min-height: 44px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0a32a 0%, var(--accent2, #e07b00) 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 2px 12px rgba(224, 123, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pdf-item__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 123, 0, 0.32);
}

.pdf-item__btn:active {
  transform: translateY(0);
}

/* Витрина оборудования: строго 1 / 2 / 3 колонки, карточки тянутся по высоте строки. */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.2vw, 24px);
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  .equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.equipment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  background: var(--card);
  border: 1px solid rgba(11, 19, 35, 0.07);
  border-radius: clamp(16px, 2vw, 20px);
  box-shadow: var(
    --shadow-layer,
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 2px 8px rgba(11, 19, 35, 0.04),
    0 14px 42px rgba(11, 19, 35, 0.07)
  );
  overflow: hidden;
  transition: var(
    --transition-card,
    transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease
  );
}

.equipment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 123, 0, 0.14);
  box-shadow: var(
    --shadow-layer-hover,
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 8px 28px rgba(11, 19, 35, 0.08),
    0 22px 56px rgba(11, 19, 35, 0.1)
  );
}

.equipment-card__media {
  flex-shrink: 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef1f6 100%);
  border-bottom: 1px solid rgba(11, 19, 35, 0.06);
  overflow: hidden;
}

.equipment-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.equipment-card:hover .equipment-card__media img {
  transform: scale(1.05);
}

.equipment-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(18px, 3vw, 22px) clamp(18px, 3vw, 22px)
    clamp(18px, 3vw, 22px);
}

.equipment-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.equipment-card__body h3 {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
  color: var(--text);
  overflow-wrap: anywhere;
}

.equipment-card__lead {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 15px);
  line-height: 1.6;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.equipment-card__list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.55;
  color: var(--muted);
  list-style: disc;
  flex: 0 1 auto;
  min-height: 0;
}

.equipment-card__list li {
  margin: 0 0 0.35em 0;
}

.equipment-card__list li:last-child {
  margin-bottom: 0;
}

.equipment-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: auto;
  padding-top: 14px;
  flex-shrink: 0;
}

.equipment-card__actions .equipment-card__btn {
  flex: 1 1 auto;
  min-width: min(140px, 100%);
  min-height: 46px;
  padding: 12px 18px;
}

.equipment-card__btn--pdf {
  border: 2px solid rgba(17, 17, 17, 0.2);
  color: #111;
  background: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(11, 19, 35, 0.06);
}

.equipment-card__btn--pdf:hover {
  background: #fff;
  border-color: rgba(224, 123, 0, 0.45);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 19, 35, 0.08);
}

.equipment-card__btn--pdf:active {
  transform: translateY(0);
}

.equipment-card__btn--block {
  flex: 1 1 100%;
  min-width: 100%;
  text-align: center;
}

.equipment-card__soon {
  display: block;
  flex: 1 1 100%;
  min-width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  text-align: center;
  font-size: clamp(14px, 1.35vw, 15px);
  color: var(--muted);
  border: 1px dashed rgba(11, 19, 35, 0.18);
  border-radius: 12px;
  background: rgba(11, 19, 35, 0.02);
}

@media (max-width: 430px) {
  .equipment-card__actions {
    flex-direction: column;
  }

  .equipment-card__actions .equipment-card__btn {
    width: 100%;
    min-width: 0;
  }
}

/* Две кнопки в карточке (минеральное направление) */
.equipment-card__actions--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.equipment-card__actions--split .equipment-card__btn {
  min-width: 0;
  text-align: center;
}

.equipment-card__btn--with-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.equipment-card__pdf-icon {
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .equipment-card__actions--split {
    grid-template-columns: 1fr;
  }
}

.equipment-card--grid-spacer {
  visibility: hidden;
  pointer-events: none;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: none;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

/* Невидимые ячейки той же высоты, что и карточка — ровный последний ряд в сетке 3×N */
.equipment-card.equipment-card--grid-filler {
  visibility: hidden;
  pointer-events: none;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.equipment-card.equipment-card--grid-filler .equipment-card__media,
.equipment-card.equipment-card--grid-filler .equipment-card__body {
  visibility: hidden;
}

/* Единые витрины bulk / mineral: невидимые ячейки для кратности 3 */
.equipment-card--showcase-filler {
  visibility: hidden;
  pointer-events: none;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.equipment-card--showcase-filler:hover {
  transform: none;
}

.equipment-card--showcase-filler .equipment-card__media,
.equipment-card--showcase-filler .equipment-card__body {
  visibility: hidden;
}

.pdf-item--showcase-filler {
  visibility: hidden;
  pointer-events: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  min-height: 0;
  overflow: hidden;
}

/* Страница карточки оборудования /mineral-processing/equipment/ */
.mineral-detail-main {
  min-height: 40vh;
}

.mineral-detail-back {
  margin: 0 0 clamp(20px, 3vw, 28px);
}

.mineral-detail-back__link {
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 600;
  color: var(--accent2, #e07b00);
  text-decoration: none;
}

.mineral-detail-back__link:hover {
  text-decoration: underline;
}

.mineral-detail-notfound__title {
  margin-top: 0;
}

.mineral-detail-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

@media (min-width: 900px) {
  .mineral-detail-article {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

.mineral-detail-article__media {
  border-radius: clamp(16px, 2vw, 20px);
  overflow: hidden;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef1f6 100%);
  border: 1px solid rgba(11, 19, 35, 0.07);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 24px);
  box-sizing: border-box;
}

.mineral-detail-article__media img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(420px, 52vh);
  object-fit: contain;
  object-position: center;
  display: block;
}

.mineral-detail-article__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.15;
  color: var(--text);
}

.mineral-detail-article__lead {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--muted);
}

.mineral-detail-article__list {
  margin: 0 0 24px;
  padding-left: 1.2rem;
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.55;
  color: var(--muted);
}

.mineral-detail-article__list li {
  margin-bottom: 0.4em;
}

.mineral-detail-article__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mineral-detail-article__pdf-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mineral-detail-article__pdf:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(224, 123, 0, 0.35);
}

/* --- /directions/high-temperature-processes — каталожная сетка карточек --- */
.section-equipment--ht-processes .ht-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.2vw, 24px);
  align-items: stretch;
}

@media (min-width: 768px) {
  .section-equipment--ht-processes .ht-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  .section-equipment--ht-processes .ht-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section-equipment--ht-processes .equipment-card--ht-processes {
  height: 100%;
  min-height: 0;
}

.section-equipment--ht-processes .equipment-card__media {
  height: 196px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.section-equipment--ht-processes .equipment-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.section-equipment--ht-processes .ht-product-card-filler {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.section-equipment--ht-processes .ht-product-card-filler:hover {
  transform: none;
  box-shadow: none !important;
}

