/* Manufacturers index — eficient design */

.eet-mfg-page {
  --mfg-green: #4ba248;
  --mfg-green-dark: #3d8a3a;
  --mfg-green-deep: #2f6e2d;
  --mfg-green-50: #ecf7eb;
  --mfg-yellow: #fdce2b;
  --mfg-ink-900: #0f1a14;
  --mfg-ink-700: #34423a;
  --mfg-ink-500: #5c6b62;
  --mfg-line: #e3e8e4;
  --mfg-bg-soft: #f6f8f5;
  --mfg-radius: 16px;
  --mfg-max: 75rem;
  --mfg-ease: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--mfg-ink-900);
  max-width: 100%;
  overflow-x: hidden;
}

.eet-mfg-page .breadcrumb,
.eet-mfg-page #content > .breadcrumb {
  display: none !important;
}

/* Breadcrumb */
.eet-mfg-page .eet-cat-breadcrumb {
  background: var(--mfg-bg-soft);
  border-bottom: 1px solid var(--mfg-line);
  padding: 12px 0;
}

.eet-mfg-page .eet-cat-breadcrumb__inner {
  max-width: var(--mfg-max);
  margin: 0 auto;
  padding: 0 12px;
}

.eet-mfg-page .eet-cat-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--mfg-ink-500);
}

.eet-mfg-page .eet-cat-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
}

.eet-mfg-page .eet-cat-breadcrumb__list li:not(:last-child)::after {
  content: '/';
  margin-left: 4px;
  color: #9aa8a0;
}

.eet-mfg-page .eet-cat-breadcrumb__list a {
  color: var(--mfg-green-dark);
  text-decoration: none;
}

.eet-mfg-page .eet-cat-breadcrumb__list a:hover {
  color: var(--mfg-green);
}

.eet-mfg-page .eet-cat-breadcrumb__list li:last-child span {
  color: var(--mfg-ink-900);
}

/* Hero */
.eet-mfg-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 520px at 85% 0%, rgba(75, 162, 72, 0.45), transparent 58%),
    radial-gradient(700px 480px at 0% 100%, rgba(253, 206, 43, 0.14), transparent 55%),
    linear-gradient(155deg, var(--mfg-ink-900) 0%, #152a18 42%, var(--mfg-green-dark) 100%);
}

.eet-mfg-hero__inner {
  max-width: var(--mfg-max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.25rem) 12px;
}

.eet-mfg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(75, 162, 72, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8f5e6;
}

.eet-mfg-hero__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.12;
}

.eet-mfg-hero__meta {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.eet-mfg-hero__meta strong {
  color: var(--mfg-yellow);
  font-weight: 800;
}

.eet-mfg-hero__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

/* A–Z index */
.eet-mfg-index-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--mfg-line);
  backdrop-filter: blur(8px);
}

.eet-mfg-index {
  max-width: var(--mfg-max);
  margin: 0 auto;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 6px;
}

.eet-mfg-index__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mfg-ink-500);
  margin-right: 4px;
  flex-shrink: 0;
}

.eet-mfg-index__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--mfg-line);
  background: #fff;
  color: var(--mfg-ink-700);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s var(--mfg-ease), border-color 0.2s var(--mfg-ease), color 0.2s var(--mfg-ease);
}

.eet-mfg-index__link:hover,
.eet-mfg-index__link:focus {
  border-color: var(--mfg-green);
  background: var(--mfg-green-50);
  color: var(--mfg-green-dark);
}

/* Sections */
.eet-mfg-body {
  background: var(--mfg-bg-soft);
  padding: 24px 0 48px;
}

.eet-mfg-body__inner {
  max-width: var(--mfg-max);
  margin: 0 auto;
  padding: 0 12px;
}

.eet-mfg-section {
  scroll-margin-top: 120px;
  margin-bottom: 32px;
}

.eet-mfg-section:last-child {
  margin-bottom: 0;
}

.eet-mfg-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.eet-mfg-section__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin: 0;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--mfg-ink-900);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eet-mfg-section__count {
  font-size: 13px;
  font-weight: 700;
  color: var(--mfg-ink-500);
}

/* Brand grid */
.eet-mfg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eet-mfg-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 18px 16px;
  border-radius: var(--mfg-radius);
  border: 1px solid var(--mfg-line);
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 26, 20, 0.05);
  text-decoration: none;
  transition: transform 0.2s var(--mfg-ease), box-shadow 0.2s var(--mfg-ease), border-color 0.2s var(--mfg-ease);
}

.eet-mfg-card:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 162, 72, 0.4);
  box-shadow: 0 12px 28px rgba(15, 26, 20, 0.1);
}

.eet-mfg-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 64px;
}

.eet-mfg-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.eet-mfg-card__name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  color: var(--mfg-ink-700);
  transition: color 0.2s var(--mfg-ease);
}

.eet-mfg-card:hover .eet-mfg-card__name {
  color: var(--mfg-green-dark);
}

/* Empty */
.eet-mfg-empty {
  max-width: var(--mfg-max);
  margin: 48px auto;
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--mfg-radius);
  background: #fff;
  border: 1px solid var(--mfg-line);
}

.eet-mfg-empty p {
  margin: 0 0 20px;
  color: var(--mfg-ink-700);
}

.eet-mfg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--mfg-yellow);
  color: var(--mfg-ink-900);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(253, 206, 43, 0.35);
}

.eet-mfg-btn:hover {
  background: #e6b81b;
  color: var(--mfg-ink-900);
}

@media (min-width: 600px) {
  .eet-mfg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .eet-mfg-page .eet-cat-breadcrumb__inner,
  .eet-mfg-hero__inner,
  .eet-mfg-index,
  .eet-mfg-body__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .eet-mfg-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .eet-mfg-card {
    min-height: 120px;
  }

  .eet-mfg-card__logo img {
    max-height: 72px;
  }
}

@media (min-width: 1100px) {
  .eet-mfg-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .eet-mfg-index__label {
    width: 100%;
    margin-bottom: 2px;
  }

  .eet-mfg-index__link {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* Manufacturer detail page */
.eet-mfg-detail {
  --mfg-green: #4ba248;
  --mfg-green-dark: #3d8a3a;
  --mfg-green-50: #ecf7eb;
  --mfg-yellow: #fdce2b;
  --mfg-ink-900: #0f1a14;
  --mfg-ink-700: #34423a;
  --mfg-ink-500: #5c6b62;
  --mfg-line: #e3e8e4;
  --mfg-bg-soft: #f6f8f5;
  --mfg-max: 75rem;
  --mfg-ease: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--mfg-ink-900);
  overflow-x: hidden;
}

.eet-mfg-detail .breadcrumb,
.eet-mfg-detail #content > .breadcrumb {
  display: none !important;
}

.eet-mfg-detail .eet-cat-breadcrumb {
  background: var(--mfg-bg-soft);
  border-bottom: 1px solid var(--mfg-line);
  padding: 12px 0;
}

.eet-mfg-detail .eet-cat-breadcrumb__inner {
  max-width: var(--mfg-max);
  margin: 0 auto;
  padding: 0 12px;
}

.eet-mfg-detail .eet-cat-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--mfg-ink-500);
}

.eet-mfg-detail .eet-cat-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
}

.eet-mfg-detail .eet-cat-breadcrumb__list li:not(:last-child)::after {
  content: '/';
  margin-left: 4px;
  color: #9aa8a0;
}

.eet-mfg-detail .eet-cat-breadcrumb__list a {
  color: var(--mfg-green-dark);
  text-decoration: none;
}

.eet-mfg-detail .eet-cat-breadcrumb__list a:hover {
  color: var(--mfg-green);
}

.eet-mfg-detail .eet-cat-breadcrumb__list li:last-child span {
  color: var(--mfg-ink-900);
}

/* Hero */
.eet-mfg-detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 520px at 85% 0%, rgba(75, 162, 72, 0.45), transparent 58%),
    linear-gradient(155deg, var(--mfg-ink-900) 0%, #152a18 42%, var(--mfg-green-dark) 100%);
}

.eet-mfg-detail-hero--has-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--mfg-hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.eet-mfg-detail-hero--has-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 26, 20, 0.92) 0%, rgba(15, 26, 20, 0.55) 100%);
}

.eet-mfg-detail-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--mfg-max);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) 12px;
}

.eet-mfg-detail-hero__brand {
  display: flex;
  align-items: center;
  gap: 20px 28px;
  flex-wrap: wrap;
}

.eet-mfg-detail-hero__logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
}

.eet-mfg-detail-hero__logo img {
  max-width: 100%;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.eet-mfg-detail-hero__copy {
  flex: 1;
  min-width: min(100%, 260px);
}

.eet-mfg-detail-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mfg-yellow);
}

.eet-mfg-detail-hero__title {
  margin: 0 0 10px;
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.eet-mfg-detail-hero__meta {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.eet-mfg-detail-hero__meta strong {
  color: var(--mfg-yellow);
}

.eet-mfg-detail-hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--mfg-yellow);
  color: var(--mfg-ink-900);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s var(--mfg-ease), box-shadow 0.2s var(--mfg-ease);
}

.eet-mfg-detail-hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Body */
.eet-mfg-detail__body {
  background: var(--mfg-bg-soft);
  padding: 28px 0 48px;
}

.eet-mfg-detail__inner {
  max-width: var(--mfg-max);
  margin: 0 auto;
  padding: 0 12px;
}

.eet-mfg-detail__section {
  margin-bottom: 36px;
}

.eet-mfg-detail__section:last-child {
  margin-bottom: 0;
}

.eet-mfg-detail__head {
  margin-bottom: 20px;
}

.eet-mfg-detail__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mfg-green-dark);
}

.eet-mfg-detail__title {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

/* WYSIWYG content */
.eet-mfg-detail__wysiwyg {
  background: #fff;
  border: 1px solid var(--mfg-line);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(15, 26, 20, 0.04);
}

.eet-mfg-detail__wysiwyg img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.eet-mfg-detail__wysiwyg p,
.eet-mfg-detail__wysiwyg li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mfg-ink-700);
}

.eet-mfg-detail__wysiwyg h2,
.eet-mfg-detail__wysiwyg h3,
.eet-mfg-detail__wysiwyg h4 {
  color: var(--mfg-ink-900);
  font-weight: 800;
}

/* Highlights */
.eet-mfg-detail__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eet-mfg-detail__highlight {
  background: #fff;
  border: 1px solid var(--mfg-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 26, 20, 0.04);
}

.eet-mfg-detail__highlight-media {
  aspect-ratio: 16 / 10;
  background: var(--mfg-bg-soft);
  overflow: hidden;
}

.eet-mfg-detail__highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eet-mfg-detail__highlight-body {
  padding: 18px 16px 20px;
}

.eet-mfg-detail__highlight-body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.eet-mfg-detail__highlight-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--mfg-ink-700);
}

/* Products slider */
.eet-mfg-detail__products-slider {
  position: relative;
  padding: 0 52px;
}

.eet-mfg-products-carousel {
  display: block;
}

.eet-mfg-products-carousel .owl-wrapper-outer {
  overflow: hidden !important;
  border: none;
  box-shadow: none;
  padding: 6px 0 12px;
}

.eet-mfg-products-carousel__slide {
  padding: 0 8px;
  box-sizing: border-box;
  height: 100%;
}

.eet-mfg-products-carousel .owl-item {
  float: left;
}

.eet-mfg-products-carousel .eet-product-card {
  width: 100%;
  min-height: 340px;
  height: 100%;
}

.eet-mfg-products-carousel .eet-product-card__media {
  flex: 0 0 150px;
  height: 150px;
  max-height: 150px;
}

.eet-mfg-products-carousel .eet-product-card__title {
  -webkit-line-clamp: 3;
}

.eet-mfg-detail__products .owl-buttons {
  position: static;
}

.eet-mfg-detail__products .owl-buttons .owl-prev,
.eet-mfg-detail__products .owl-buttons .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #fff !important;
  border: 1px solid var(--mfg-line);
  box-shadow: var(--shadow-sm);
  opacity: 1 !important;
  transition: border-color 0.2s var(--mfg-ease), box-shadow 0.2s var(--mfg-ease), transform 0.2s var(--mfg-ease);
}

.eet-mfg-detail__products .owl-buttons .owl-prev {
  left: 0;
}

.eet-mfg-detail__products .owl-buttons .owl-next {
  right: 0;
}

.eet-mfg-detail__products .owl-buttons .owl-prev:hover,
.eet-mfg-detail__products .owl-buttons .owl-next:hover {
  border-color: var(--mfg-green);
  box-shadow: 0 6px 20px rgba(75, 162, 72, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.eet-mfg-products-nav {
  display: block;
  width: 18px;
  height: 18px;
  margin: 13px auto;
  background: var(--mfg-green-dark);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.eet-mfg-products-nav--next {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}

.eet-mfg-detail__products .owl-buttons .owl-prev::before,
.eet-mfg-detail__products .owl-buttons .owl-next::before,
.eet-mfg-detail__products .arrows::after {
  display: none !important;
  content: none !important;
}

.eet-mfg-detail__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.eet-mfg-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--mfg-green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s var(--mfg-ease), transform 0.2s var(--mfg-ease);
}

.eet-mfg-detail__btn:hover {
  background: var(--mfg-green-dark);
  transform: translateY(-1px);
}

/* Technologies — restyle legacy markup */
.eet-mfg-detail__tech-wrap .product-technologies {
  display: grid;
  gap: 16px;
}

.eet-mfg-detail__tech-wrap .product--technology {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--mfg-line);
}

.eet-mfg-detail__tech-wrap .product--technology .text-overlay {
  position: relative;
  z-index: 2;
  padding: 28px 20px;
  text-align: left;
}

.eet-mfg-detail__tech-wrap .product--technology .background-overlayed {
  position: absolute;
  inset: 0;
}

.eet-mfg-detail__tech-wrap .product--technology .background-overlayed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 26, 20, 0.85) 0%, rgba(15, 26, 20, 0.35) 100%);
}

.eet-mfg-detail__tech-wrap .product--technology img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eet-mfg-detail__tech-wrap .product--technology h3,
.eet-mfg-detail__tech-wrap .product--technology h6 {
  color: #fff !important;
  margin: 0 0 8px;
}

.eet-mfg-detail__tech-wrap .product--technology h6 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mfg-yellow) !important;
}

.eet-mfg-detail__tech-wrap .product--technology .button {
  margin-top: 12px;
  border-radius: 999px;
  background: var(--mfg-yellow);
  color: var(--mfg-ink-900);
  font-weight: 800;
}

/* Articles */
.eet-mfg-detail__articles .paddingbtm-sm,
.eet-mfg-detail__articles .row.padding-top {
  padding: 0 !important;
  margin: 0 !important;
}

.eet-mfg-detail__articles h2,
.eet-mfg-detail__articles h6 {
  display: none;
}

.eet-mfg-detail__articles .featured-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eet-mfg-detail__articles .featured-items > li,
.eet-mfg-detail__articles .featured-items > div {
  margin: 0;
  padding: 0;
  width: 100%;
}

.eet-mfg-detail__articles .item-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--mfg-line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s var(--mfg-ease), box-shadow 0.2s var(--mfg-ease);
}

.eet-mfg-detail__articles .item-container:hover {
  border-color: rgba(75, 162, 72, 0.45);
  box-shadow: 0 8px 24px rgba(15, 26, 20, 0.08);
}

.eet-mfg-detail__articles .item-container img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eet-mfg-detail__articles .item-container h3 {
  margin: 0;
  padding: 16px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--mfg-ink-900);
}

.eet-mfg-detail__articles .button--arrow {
  display: none;
}

/* Partners block */
.eet-mfg-detail__partners .eet-partners {
  margin: 0;
}

/* Prev / next nav */
.eet-mfg-detail__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
  border-top: 1px solid var(--mfg-line);
}

.eet-mfg-detail__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--mfg-line);
  background: #fff;
  color: var(--mfg-ink-700);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s var(--mfg-ease), color 0.2s var(--mfg-ease);
}

.eet-mfg-detail__nav-link:hover {
  border-color: var(--mfg-green);
  color: var(--mfg-green-dark);
}

.eet-mfg-detail__nav-link--next {
  justify-self: end;
}

.eet-mfg-detail__nav-link--all {
  justify-self: center;
  background: var(--mfg-green-50);
  border-color: rgba(75, 162, 72, 0.35);
  color: var(--mfg-green-dark);
}

@media (max-width: 768px) {
  .eet-mfg-detail-hero__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .eet-mfg-detail-hero__logo {
    width: 96px;
    height: 96px;
  }

  .eet-mfg-detail__highlights {
    grid-template-columns: 1fr;
  }

  .eet-mfg-detail__products-slider {
    padding: 0 4px;
  }

  .eet-mfg-detail__products .owl-buttons {
    display: none !important;
  }

  .eet-mfg-products-carousel__slide {
    padding: 0 6px;
  }

  .eet-mfg-products-carousel .eet-product-card {
    min-height: 320px;
  }

  .eet-mfg-products-carousel .eet-product-card__media {
    flex: 0 0 128px;
    height: 128px;
    max-height: 128px;
  }

  .eet-mfg-detail__nav {
    grid-template-columns: 1fr;
  }

  .eet-mfg-detail__nav-link--next {
    justify-self: stretch;
  }

  .eet-mfg-detail__nav > span:empty {
    display: none;
  }
}
