:root {
  --ilpra-color-bg: #ffffff;
  --ilpra-color-surface: #ffffff;
  --ilpra-color-text: #101820;
  --ilpra-color-muted: #55606d;
  --ilpra-color-accent: #e84b17;
  --ilpra-color-border: rgba(16, 24, 32, 0.12);
  --ilpra-shadow-soft: 0 18px 40px rgba(16, 24, 32, 0.08);
  --ilpra-radius-lg: 28px;
  --ilpra-radius-md: 18px;
  --ilpra-site-width: 1680px;
  --ilpra-shell-width: min(calc(100% - 32px), var(--ilpra-site-width));
  --ilpra-inner-page-width: 1520px;
  --ilpra-header-offset: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ilpra-color-text);
  background: #ffffff;
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

:focus,
:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-shell {
  min-height: 100vh;
  background: #ffffff;
}

.content-frame__inner,
.hero-placeholder__inner,
.site-header__inner,
.site-footer__inner,
.home-section__inner,
.packaging-page__inner,
.packaging-page__inner--narrow,
.tm-inner,
.pm-inner {
  width: var(--ilpra-shell-width);
  margin-inline: auto;
}

.content-frame__inner,
.packaging-page__inner,
.packaging-page__inner--narrow,
.tm-inner {
  width: min(calc(100% - 32px), var(--ilpra-inner-page-width));
}

body:not(.home):not(.single-packaging_machine) .site-main > .elementor-entry--full {
  width: min(calc(100% - 32px), var(--ilpra-inner-page-width));
  margin-inline: auto;
}

body:not(.home):not(.single-packaging_machine) .site-main > .elementor-entry--full .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 100%;
}

body:not(.home):not(.single-packaging_machine) .site-main > .elementor-entry--full .elementor-top-section.elementor-section-stretched,
body:not(.home):not(.single-packaging_machine) .site-main > .elementor-entry--full .elementor-section.elementor-section-stretched {
  width: 100% !important;
  max-width: 100% !important;
  left: auto !important;
  right: auto !important;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.8);
  border-bottom: 1px solid rgba(16, 24, 32, 0.06);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding__link,
.site-footer__branding a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
}

.site-branding__logo {
  display: block;
  height: auto;
}

.site-branding__logo--full {
  width: min(240px, 32vw);
}

.site-branding__logo--compact {
  display: none;
  width: 170px;
}

.site-header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--ilpra-shadow-soft);
}

.site-header__toggle-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  line-height: 1;
  color: var(--ilpra-color-text);
  transition: opacity 160ms ease;
}

.site-header__toggle-icon--close {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon--open {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon--close {
  opacity: 1;
}

.site-nav__menu,
.site-footer__menu {
  list-style: none;
  display: flex;
  gap: 34px;
  padding: 0;
  margin: 0;
}

.site-nav__menu a,
.site-footer__menu a {
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav__menu {
  align-items: center;
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  color: #232323;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.site-nav__label {
  display: inline-block;
}

.site-nav__caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.site-nav__submenu-toggle {
  display: none;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  min-width: 320px;
  max-width: 360px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
  background: #ececec;
  box-shadow: 0 20px 34px rgba(16, 24, 32, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-nav__item--has-children:hover > .site-nav__submenu,
.site-nav__item--has-children.is-open > .site-nav__submenu {
  opacity: 1;
  visibility: visible;
}

.site-nav__item--depth-1 {
  display: block;
}

.site-nav__item--depth-1 .site-nav__link {
  display: block;
  min-height: 0;
  padding: 16px 22px;
  font-size: 0.95rem;
  font-weight: 400;
}

.site-nav__item--depth-1 .site-nav__link:hover {
  background: rgba(255, 255, 255, 0.55);
}

.site-nav__item--group .site-nav__link--group {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--ilpra-color-accent);
  color: #ffffff;
  font-size: 16px;
}

.site-nav__item--group .site-nav__link--group:hover,
.site-nav__item--group .site-nav__link--group:focus,
.site-nav__item--group .site-nav__link--group:visited,
.site-nav__item--group .site-nav__link--group:active {
  background: var(--ilpra-color-accent);
  color: #ffffff;
}

.site-nav__item--search .site-nav__link {
  min-width: 32px;
  justify-content: center;
}

.site-nav__search-icon {
  position: relative;
  width: 17px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.site-nav__search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 8px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 999px;
}

.site-nav__item--language .site-nav__link {
  min-height: 0;
}

.site-nav__item--language + .site-nav__item--language {
  margin-left: -26px;
}

.site-nav__flag {
  width: 24px;
  height: 16px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.site-search-panel {
  position: fixed;
  top: var(--ilpra-header-offset);
  left: 0;
  right: 0;
  z-index: 35;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

body.is-header-at-top .site-search-panel {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 10;
}

.site-search-panel__inner {
  width: min(calc(100% - 32px), 1520px);
  margin: 0 auto;
  padding: 0;
}

.site-search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  align-items: center;
  min-height: 92px;
  padding: 0 0 0 30px;
  border: 1px solid rgba(16, 24, 32, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 40px rgba(16, 24, 32, 0.08);
}

.site-search-form__input {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #101820;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.site-search-form__input::placeholder {
  color: rgba(16, 24, 32, 0.4);
}

.site-search-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-right: 8px;
  border: 0;
  background: transparent;
  color: #101820;
}

.site-search-form__submit .site-nav__search-icon {
  width: 24px;
  height: 24px;
  border-width: 4px;
}

.site-search-form__submit .site-nav__search-icon::after {
  right: -8px;
  bottom: -7px;
  width: 10px;
  height: 4px;
}

.site-main {
  padding: 40px 0 72px;
  background: #ffffff;
}

.home .site-main {
  padding-top: 28px;
}

.hero-placeholder__inner,
.entry-card,
.archive-header {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ilpra-color-border);
  border-radius: var(--ilpra-radius-lg);
  box-shadow: var(--ilpra-shadow-soft);
}

.hero-placeholder__inner {
  padding: 64px;
}

.hero-placeholder__eyebrow {
  margin: 0 0 12px;
  color: var(--ilpra-color-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-placeholder__title,
.entry-card__title,
.archive-header__title {
  margin: 0;
  line-height: 1;
  font-size: clamp(2rem, 4vw, 4.75rem);
}

.hero-placeholder__text,
.entry-card__content,
.archive-header__description {
  margin-top: 18px;
  max-width: 72ch;
  color: var(--ilpra-color-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.content-frame__inner {
  display: grid;
  gap: 24px;
}

.archive-header--news {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.archive-header--news .archive-header__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
}

.archive-header--news .archive-header__description {
  display: none;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 40px;
}

.news-archive-card {
  display: grid;
  gap: 20px;
}

.news-archive-card__media {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  background: #f2f4f6;
  text-decoration: none;
}

.news-archive-card__media img {
  width: 100%;
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
}

.news-archive-card__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.news-archive-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  min-height: calc(1.25em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  align-self: flex-start;
}

.news-archive-card__title a {
  text-decoration: none;
}

.news-archive-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.news-archive-card__date {
  color: var(--ilpra-color-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.news-archive-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}

.news-archive-card__arrow img {
  width: 24px;
  height: auto;
}

.search-results-header__description {
  display: block !important;
  margin-top: 12px;
  color: var(--ilpra-color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 32px;
}

.search-result-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--ilpra-color-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--ilpra-shadow-soft);
}

.search-result-card__media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f7f8fa;
  text-decoration: none;
}

.search-result-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.search-result-card__body {
  display: grid;
  gap: 12px;
}

.search-result-card__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.search-result-card__title a {
  text-decoration: none;
}

.search-result-card__excerpt {
  color: var(--ilpra-color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.news-single {
  padding: 56px 0 0;
}

.news-single__inner {
  width: min(calc(100% - 32px), 1520px);
  margin: 0 auto;
}

.news-single__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.news-single__title {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 700;
}

.news-single__date {
  margin-bottom: 26px;
  color: #ea560c;
  font-size: 20px;
  font-weight: 600;
}

.news-single__body {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
}

.news-single__body p,
.news-single__body ul,
.news-single__body ol {
  margin: 0 0 18px;
}

.news-single__media {
  overflow: hidden;
  border-radius: 22px;
}

.news-single__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.news-single__more {
  padding: 64px 0 0;
}

.news-single__more-title {
  margin: 0 0 34px;
  font-size: 42px;
  font-weight: 700;
}

.news-single__more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 34px;
}

.news-single-card {
  transition: transform 0.25s ease;
}

.news-single-card:hover {
  transform: translateY(-6px);
}

.news-single-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-single-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
}

.news-single-card__image {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 20px;
  aspect-ratio: 16 / 10;
}

.news-single-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-single-card__title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  min-height: calc(1.35em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  align-self: flex-start;
}

.news-single-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.news-single-card__date {
  color: #ea560c;
  font-size: 17px;
  font-weight: 600;
}

.news-single-card__arrow {
  color: #ea560c;
  font-size: 26px;
  font-weight: 700;
}

.elementor-entry--full {
  width: 100%;
  max-width: none;
}

.elementor-entry--full > .elementor {
  width: 100%;
}

.home .elementor-entry--full .elementor-section.elementor-section-boxed > .elementor-container,
.single-packaging_machine .elementor-entry--full .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--ilpra-shell-width);
}

.elementor-entry--full .elementor-section.elementor-section-stretched {
  width: 100%;
  left: auto;
}

.home-shell {
  display: grid;
  gap: 40px;
  background: #ffffff;
}

.home-section {
  padding: 8px 0;
  background: #ffffff;
}

.home-shell > .home-section:not(.home-hero) .home-section__inner {
  width: min(var(--ilpra-shell-width), 1500px);
}

.home-grid {
  display: grid;
  gap: 24px;
}

.home-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hero__panel,
.home-card,
.home-fair-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ilpra-color-border);
  border-radius: var(--ilpra-radius-lg);
  box-shadow: var(--ilpra-shadow-soft);
}

.home-hero__panel {
  padding: 40px;
}

.home-hero__panel--video {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-kicker {
  margin: 0 0 12px;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-size: 25px;
  font-weight: 900;
}

.home-hero__title {
  margin: 0;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
  text-wrap: balance;
}

.home-hero__text {
  margin-top: 18px;
  max-width: 1200px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  font-size: 20px;
  font-weight: 400;
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--ilpra-radius-md);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--ilpra-radius-md);
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.22) 0%, rgba(16, 24, 32, 0.34) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.home-heading {
  margin-bottom: 32px;
  text-align: center;
}

.home-section--news .home-heading {
  margin-bottom: 52px;
}

.home-heading--split {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.home-heading__title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.05;
}

.home-heading__copy {
  max-width: 980px;
  color: var(--ilpra-color-muted);
  line-height: 1.7;
}

.home-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f5;
}

.home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-card__media--machine {
  aspect-ratio: 16 / 8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 8px;
  background: #ffffff;
}

.home-card--machine .home-card__media img {
  width: auto;
  max-width: 88%;
  max-height: 220px;
  height: auto;
  object-fit: contain;
}

.home-card--machine .home-card__body {
  text-align: center;
}

.home-card--machine .home-card__text {
  text-align: center;
}

.home-card--industry {
  padding: 54px 44px 36px;
  background: #f7f8fa;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.home-card--industry .home-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  min-height: 90px;
  margin-bottom: 28px;
  overflow: visible;
  background: transparent;
}

.home-card--industry .home-card__media img {
  width: auto;
  max-width: 115px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.home-card--industry .home-card__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

.home-card--industry .home-card__title {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.home-card--industry .home-card__text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
}

.home-card__body {
  padding: 24px;
}

.home-card__title {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.home-card__text {
  margin: 0;
  color: var(--ilpra-color-muted);
  line-height: 1.65;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ilpra-color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.home-featured-news {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-bottom: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  align-items: start;
}

.home-featured-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--ilpra-radius-md);
}

.home-featured-news__title {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.18;
}

.home-featured-news__copy {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.home-featured-news__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.home-featured-news__icon img {
  width: clamp(52px, 5vw, 76px);
  height: auto;
  transform: rotate(45deg);
  transform-origin: center;
  opacity: 0.85;
}

.home-featured-news__content {
  display: grid;
  gap: 18px;
}

.home-featured-news__excerpt {
  margin: 0;
  color: var(--ilpra-color-muted);
  line-height: 1.58;
  font-size: 1rem;
}

.home-button--news {
  min-height: 44px;
  margin-top: 0;
  padding-inline: 18px;
  border-radius: 6px;
}

.home-news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
  background: #ffffff;
}

.home-news-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 12px 12px 0;
  text-decoration: none;
  border-bottom: 1px solid #dee1e5 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: 0;
}

.home-news-list__item::before,
.home-news-list__item::after {
  display: none !important;
  content: none !important;
}

.home-news-list__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
}

.home-news-list__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
}

.home-news-list__arrow img {
  width: 28px;
  height: auto;
}

.home-fairs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 80px;
}

.home-card--machine:hover,
.home-fair-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(16, 24, 32, 0.12);
}

.packaging-page {
  display: grid;
  gap: 40px;
  background: #ffffff;
}

.packaging-page__hero,
.packaging-page__catalog,
.packaging-page__cta {
  background: #ffffff;
}

.packaging-page__inner--narrow {
  max-width: none;
}

.packaging-page__hero {
  padding: 44px 0 12px;
}

.packaging-page__hero-copy,
.packaging-page__cta-card {
  text-align: center;
}

.packaging-page__eyebrow {
  margin: 0 0 14px;
  color: var(--ilpra-color-accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.packaging-page__hero-title,
.packaging-page__cta-title {
  margin: 0;
  color: var(--ilpra-color-text);
  line-height: 1.02;
  text-wrap: balance;
}

.packaging-page__hero-title {
  font-family: "Lato", Sans-serif;
  font-size: 41px;
  font-weight: 600;
  color: #030304;
}

.packaging-page__cta-title {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.packaging-page__hero-text,
.packaging-page__cta-text {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--ilpra-color-muted);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.5;
}

.packaging-page__catalog {
  padding: 8px 0 12px;
}

.packaging-page__catalog .packaging-category + .packaging-category {
  margin-top: 32px;
}

.packaging-category {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(90deg, #e7e9e5 0%, #f4f4f4 62%);
  color: var(--ilpra-color-text);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.08);
}

.packaging-category--reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  background: linear-gradient(270deg, #e7e9e5 0%, #f4f4f4 62%);
}

.packaging-category--reverse .packaging-category__media {
  order: 2;
}

.packaging-category--reverse .packaging-category__panel {
  order: 1;
}

.packaging-category__media {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  background: transparent;
}

.packaging-category__image {
  width: auto;
  max-width: 92%;
  max-height: 360px;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.packaging-category__panel {
  display: flex;
  align-items: center;
  padding: 38px clamp(28px, 4vw, 56px);
}

.packaging-category__content {
  width: 100%;
  max-width: none;
}

.packaging-category__title {
  margin: 0;
  font-size: clamp(1.7rem, 2.25vw, 2.8rem);
  line-height: 1.04;
  color: var(--ilpra-color-text);
}

.packaging-category__subtitle {
  margin: 14px 0 0;
  color: var(--ilpra-color-text);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.packaging-category__text {
  margin-top: 18px;
  color: #2e343b;
  font-size: 1.02rem;
  line-height: 1.7;
}

.packaging-category__text p {
  margin: 0;
}

.packaging-category__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.packaging-category__list li {
  position: relative;
  padding: 0 0 0 26px;
  border-radius: 0;
  background: transparent;
  color: var(--ilpra-color-text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.packaging-category__list li::before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ilpra-color-accent);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 500;
}

.packaging-category__button,
.packaging-page__cta-button {
  min-height: 48px;
  margin-top: 24px;
  padding-inline: 22px;
  border-radius: 8px;
}

.packaging-page__cta {
  padding: 24px 0 80px;
}

.packaging-page__cta-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 86px 32px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(105deg, #ba450b 0%, #7f351c 25%, #101214 68%, #101214 100%);
}

.packaging-page__cta-card .packaging-page__eyebrow {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.packaging-page__cta-card .packaging-page__cta-title {
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.packaging-page__cta-card .packaging-page__cta-text {
  max-width: 700px;
  margin-top: 34px;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.35;
}

.packaging-page__cta-card .packaging-page__cta-button {
  min-width: 128px;
  min-height: 48px;
  margin-top: 78px;
  border-radius: 999px;
  background: var(--ilpra-color-accent);
  color: #ffffff;
}

.tm-shell {
  display: grid;
  gap: 28px;
  background: #ffffff;
}

.tm-section {
  background: #ffffff;
}

.tm-section--slider {
  padding: 20px 0 26px;
}

.tm-pills-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.tm-pills-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.tm-pills-track::-webkit-scrollbar {
  display: none;
}

.tm-arrow {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #2b2a2a;
  cursor: pointer;
}

.tm-arrow span {
  font-size: 34px;
  line-height: 1;
}

.tm-pill {
  flex: 0 0 calc((100% - 64px) / 5);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: none;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #eceeea;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tm-pill:hover {
  background: #e3e5e1;
}

.tm-pill.active {
  background: #ffffff;
  border-color: #5b5b5b;
  box-shadow: 0 0 0 1px rgba(91, 91, 91, 0.06);
}

.tm-pill-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}

.tm-pill-image img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.tm-pill-title {
  color: #1e1e1e;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
}

@media (max-width: 1400px) {
  .tm-pill {
    flex-basis: calc((100% - 48px) / 4);
  }
}

@media (max-width: 1100px) {
  .tm-pill {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 767px) {
  .tm-pill {
    flex-basis: calc((100% - 16px) / 2);
  }
  .site-main {
    padding: 0px 0 72px;
}
}

@media (max-width: 520px) {
  .tm-pill {
    flex-basis: 100%;
  }
}

.tm-section--products {
  padding: 30px 0 80px;
}

.tm-products-header {
  position: sticky;
  top: 88px;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 0 18px;
  background: #ffffff;
}

.admin-bar .tm-products-header {
  top: 120px;
}

.tm-products-heading {
  max-width: 720px;
  min-width: 0;
}

.tm-products-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tm-info-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 0;
  border: 0;
  border-radius: 999px;
  background: #2c2b2b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(1px);
}

.tm-tech-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px 14px;
}

.tm-group-description {
  max-width: none;
  width: 100%;
  margin-top: 18px;
  color: #444444;
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.tm-group-description p {
  width: 100%;
  max-width: none;
  margin: 0 0 14px;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.tm-group-description > * {
  max-width: none;
}

.tm-group-description p:last-child {
  margin-bottom: 0;
}

.tm-group-description--detail {
  margin-top: 16px;
}

.tm-tech-button {
  display: inline-flex;
  position: relative;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.3;
  text-decoration: none;
}

.tm-tech-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--ilpra-color-accent);
  transition: width 0.25s ease;
}

.tm-tech-button.active::after {
  width: 100%;
}

.tm-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.tm-product-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px 24px 26px;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  background: #ffffff;
  transition: box-shadow 0.25s ease;
}

a.tm-product-card {
  color: inherit;
  text-decoration: none;
}

.tm-product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.tm-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin-bottom: 10px;
}

.tm-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tm-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
}

.tm-product-meta {
  margin-bottom: 2px;
  color: #8b8b8b;
  font-size: 12px;
  line-height: 1.35;
}

.tm-product-title {
  margin: 0 0 4px;
  color: var(--ilpra-color-text);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tm-product-excerpt {
  color: #444444;
  font-size: 14px;
  line-height: 1.45;
}

.tm-product-footer {
  margin-top: auto;
  padding-top: 18px;
}

.tm-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

.tm-group-header {
  width: 100%;
  margin-bottom: 34px;
}

.tm-group-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tm-product-grid--group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tm-product-grid--group > .tm-product-card:only-child {
  grid-column: 1 / -1;
}

.tm-product-grid--group > .tm-product-card:only-child .tm-product-image {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.tm-product-grid--group > .tm-product-card:only-child .tm-product-image img {
  max-width: min(100%, 420px);
}

.tm-product-card--group {
  border-color: #e6e6e6;
  min-height: 0;
}

.tm-product-card--group:hover {
  transform: translateY(-2px);
}

.tm-product-image--group {
  margin-bottom: 16px;
}

.tm-product-title--group {
  margin: 0 0 6px;
}

.tm-product-excerpt--group {
  display: block;
  margin-bottom: 0;
  text-decoration: none !important;
}

.tm-product-footer--group {
  display: block;
  margin-top: auto;
  padding-top: 18px;
}

.tm-product-card--group .tm-product-content {
  gap: 0;
}

.tm-product-card--group .tm-product-button {
  text-decoration: none !important;
}

.tm-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.tm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.45);
}

.tm-modal__dialog {
  position: relative;
  width: min(calc(100% - 32px), 760px);
  margin: 10vh auto 0;
  padding: 40px 30px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
}

.tm-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.06);
  font-size: 22px;
  cursor: pointer;
}

.tm-modal__title {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
}

.tm-modal__description {
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}

.tm-modal__button {
  min-height: 44px;
  margin-top: 28px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.tm-faq {
  margin-top: 56px;
}

.tm-faq__header {
  margin-bottom: 18px;
}

.tm-faq__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  line-height: 1.1;
}

.tm-faq__answer {
  color: #444444;
  font-size: 16px;
  line-height: 1.7;
}

.tm-faq__answer p {
  margin: 0 0 14px;
}

.tm-faq__answer p:last-child {
  margin-bottom: 0;
}

.by-industry-page {
  padding: 20px 0 0;
}

.by-industry-page__inner {
  width: min(calc(100% - 32px), 1520px);
  margin: 0 auto;
}

.bi-nav {
  padding: 18px 0 44px;
}

.bi-nav__slider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bi-nav__arrow {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #2b2a2a;
  cursor: pointer;
}

.bi-nav__arrow span {
  font-size: 40px;
  line-height: 1;
}

.bi-nav__viewport {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.bi-nav__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 96px) / 5);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.bi-nav__track::-webkit-scrollbar {
  display: none;
}

.bi-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px 24px;
  border-radius: 16px;
  background: #eceeea;
  color: #1e1e1e;
  text-decoration: none;
  font-size: 13.5px;
  scroll-snap-align: start;
  transition: background 180ms ease, border-color 180ms ease;
}

.bi-pill:hover {
  background: #dfe1dc;
}

.bi-pill.is-active {
  background: #ffffff;
  border: 1px solid #585757;
}

.bi-pill img {
  width: auto;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.bi-pill span {
  line-height: 1.25;
}

.bi-intro {
  padding: 40px;
  border-radius: 20px;
  background: #eceeea;
}

.bi-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: stretch;
}

.bi-intro__title {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.08;
}

.bi-intro__description p {
  margin: 0 0 16px;
  color: #000000;
  font-size: 15px;
  line-height: 1.65;
  text-align: justify;
}

.bi-read-more {
  display: none;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ilpra-color-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  cursor: pointer;
}

.bi-intro__media img,
.bi-intro__placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 18px;
}

.bi-intro__media img {
  object-fit: cover;
}

.bi-intro__placeholder {
  min-height: 420px;
  background: linear-gradient(135deg, #dcded9 0%, #f5f6f4 100%);
}

.bi-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 18px;
  border-radius: 999px;
  background: #101010;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.bi-button--secondary {
  margin-top: 0;
}

.bi-section-heading {
  padding: 76px 0 42px;
  text-align: center;
}

.bi-section-heading__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 900;
}

.bi-solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 38px;
}

.bi-card {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.bi-card__panel {
  width: 100%;
}

.bi-card__image-link {
  text-decoration: none;
}

.bi-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.04);
}

.bi-card__image img {
  max-width: 100%;
  max-height: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bi-card__title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}

.bi-contact {
  padding: 84px 0 0;
}

.bi-contact__inner {
  width: min(calc(100% - 32px), 1520px);
  margin: 0 auto;
}

.bi-contact__form {
  padding: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #9f3b2d 0%, #101820 62%);
  overflow: hidden;
}

.bi-contact__form > .elementor {
  width: 100%;
}

.pm-page {
  display: grid;
  gap: 0;
  background: #ffffff;
}

.pm-hero {
  padding: 80px 0 40px;
  background: #ffffff;
}

.pm-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pm-hero__media {
  display: flex;
  justify-content: center;
}

.pm-hero__image img {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.pm-hero__content {
  max-width: 600px;
}

.pm-hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #666666;
  font-size: 24px;
  font-weight: 500;
}

.pm-hero__title {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
}

.pm-hero__description {
  color: #444444;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.pm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--ilpra-color-accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.pm-mobile-cta {
  position: fixed;
  top: calc(var(--ilpra-header-offset, 88px) + 10px);
  right: 0;
  left: 0;
  z-index: 35;
  padding: 0 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.pm-mobile-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.pm-mobile-cta__inner {
  display: flex;
  justify-content: center;
}

.pm-mobile-cta__button {
  min-width: min(100%, 240px);
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pm-accordion {
  padding: 30px 0 40px;
  background: #ffffff;
}

.pm-accordion__item {
  border-bottom: 1px solid #999999;
}

.pm-accordion__header {
  width: 100%;
  padding: 28px 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.pm-accordion__title {
  color: #000000;
  font-size: 22px;
  font-weight: 600;
}

.pm-accordion__icon::before {
  content: "+";
  color: #000000;
  font-size: 24px;
}

.pm-accordion__item.is-open .pm-accordion__icon::before {
  content: "−";
}

.pm-accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.pm-accordion__inner {
  padding: 20px 0 40px;
}

.pm-description {
  width: 100%;
  max-width: none;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.7;
}

.pm-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.pm-icon-card {
  text-align: center;
}

.pm-icon-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 18px;
  border: 1px solid #cccccc;
  border-radius: 14px;
  background: #ffffff;
}

.pm-icon-card__image img {
  width: auto;
  max-width: 80px;
  max-height: 80px;
  height: auto;
}

.pm-icon-card__label {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
}

.pm-tech-grid {
  width: 100%;
  margin-top: 20px;
}

.pm-tech-row {
  display: grid;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #5f5f5f;
}

.pm-tech-row--header {
  padding: 22px 0;
  border-top: 0;
  border-bottom: 3px solid #0a0a0a;
  font-weight: 700;
}

.pm-tech-grid--cols-2 .pm-tech-row {
  grid-template-columns: 1.2fr 1fr;
}

.pm-tech-grid--cols-3 .pm-tech-row {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.pm-tech-grid--cols-4 .pm-tech-row {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.pm-tech-label {
  padding-right: 20px;
  font-weight: 600;
}

.pm-tech-value {
  padding-left: 20px;
}

.pm-tech-grid .pm-tech-row:first-child {
  border-top: 0;
}

.pm-tech-grid .pm-tech-row:last-child {
  border-bottom: 0;
}

.pm-video-grid,
.pm-tech-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pm-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-tech-module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-tech-module-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 20px;
  border: 0;
  border-radius: 20px;
  background: #e8e6e3;
}

.pm-video-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.pm-video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  background: #101820;
}

.pm-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pm-video-title {
  margin-top: 14px;
  font-weight: 600;
}

.pm-tech-module-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-tech-module-icon {
  width: 100%;
  max-width: 88px;
  height: auto;
  margin: 0;
}

.pm-tech-module-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.pm-tech-module-title {
  margin: 0;
  color: var(--ilpra-color-text);
  font-size: 1rem;
  line-height: 1.35;
}

.pm-tech-module-content {
  color: #374151;
  line-height: 1.7;
  font-size: 0.98rem;
}

.pm-tech-module-content p {
  margin: 0;
}

.pm-gallery {
  padding: 30px 0 50px;
  background: #ffffff;
}

.pm-section-title {
  margin: 0 0 35px;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  line-height: 1.1;
}

.pm-gallery__slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.pm-gallery__viewport {
  overflow: hidden;
}

.pm-gallery__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
}

.pm-gallery__track::-webkit-scrollbar {
  display: none;
}

.pm-gallery__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.pm-gallery__arrow {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #b8bcc2;
  cursor: pointer;
  padding: 0;
}

.pm-gallery__arrow span {
  display: block;
  font-size: 44px;
  line-height: 0.8;
}

.pm-gallery__item {
  flex: 0 0 calc((100% - 72px) / 4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  border: 1px solid #aeb3b8;
  border-radius: 24px;
  background: #ffffff;
  scroll-snap-align: start;
}

.pm-gallery__item img {
  width: 88%;
  height: 88%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.pm-details {
  padding: 20px 0 70px;
  background: #ffffff;
}

.pm-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.pm-details__rail {
  padding-top: 16px;
}

.pm-detail-card {
  position: relative;
  min-height: 320px;
  padding: 0 0 150px 32px;
  border-left: 1px solid #d8d8d8;
  opacity: 0.35;
  transition: opacity 0.35s ease;
}

.pm-detail-card:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.pm-detail-card.is-active {
  opacity: 1;
}

.pm-detail-card__marker {
  position: absolute;
  top: 0;
  left: -18px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 0.35s ease;
}

.pm-detail-card__marker-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #9ca3af;
  transform: translate(-50%, -50%);
  transition: background-color 0.35s ease;
}

.pm-detail-card.is-active .pm-detail-card__marker {
  background: rgba(232, 75, 23, 0.2);
}

.pm-detail-card.is-active .pm-detail-card__marker-inner {
  background: var(--ilpra-color-accent);
}

.pm-detail-card__body {
  padding-left: 8px;
}

.pm-detail-card__image--mobile {
  display: none;
}

.pm-detail-card__title {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.15;
}

.pm-detail-card__description {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.7;
}

.pm-detail-card__description p {
  margin: 0 0 1em;
}

.pm-detail-card__description p:last-child {
  margin-bottom: 0;
}

.pm-detail-card__description ul,
.pm-detail-card__description ol {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

.pm-detail-card__description li + li {
  margin-top: 0.35em;
}

.pm-detail-card__description strong,
.pm-detail-card__description b {
  color: var(--ilpra-color-text);
}

.pm-details__sticky {
  position: sticky;
  top: 180px;
  min-height: 560px;
}

.pm-detail-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.55s ease,
    visibility 0.45s ease;
  will-change: opacity, transform;
}

.pm-detail-preview.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pm-detail-preview img {
  width: 100%;
  height: auto;
  max-height: 440px;
  border-radius: 24px;
  object-fit: contain;
}

.pm-contact-form {
  padding: 10px 0 80px;
  background: #ffffff;
}

.pm-contact-form .elementor-upload-field {
  width: 100%;
  min-height: 108px;
  padding: 24px 28px;
  border: 4px solid #ffffff;
  border-radius: 14px;
  background: #111515 !important;
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
}

.pm-contact-form .elementor-field-group input[type="file"] {
  color: #ffffff !important;
  background: transparent !important;
}

.pm-contact-form .elementor-field-group input[type="file"]::file-selector-text {
  color: #ffffff !important;
}

.pm-contact-form .elementor-upload-field::file-selector-button {
  margin-right: 28px;
  padding: 20px 34px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.pm-contact-form .elementor-upload-field::-webkit-file-upload-button {
  margin-right: 28px;
  padding: 20px 34px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.bi-contact__form .elementor-field-group input[type="file"],
.pm-career-apply-form .elementor-field-group input[type="file"],
.pm-career-single-form .elementor-field-group input[type="file"] {
  color: #ffffff !important;
  background: transparent !important;
}

.home-fair-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
}

.home-fair-card__top {
  flex: 1;
  padding: 24px;
}

.home-fair-card__date {
  margin-bottom: 18px;
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
}

.home-fair-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.home-fair-card__image img {
  max-height: 140px;
  width: auto;
}

.home-fair-card__footer {
  display: grid;
  align-content: center;
  min-height: 70px;
  padding: 12px 20px;
  background: var(--ilpra-color-accent);
  color: #fff;
  text-align: center;
}

.home-fair-card__stand,
.home-fair-card__hall {
  min-height: 1.2em;
}

.site-footer {
  padding: 0;
  background: #fff;
}

.site-footer__top {
  min-height: 24px;
}

.site-footer__middle {
  padding: 52px 0 34px;
}

.site-footer__inner--middle {
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.18);
}

.site-footer__brand-column {
  width: min(360px, 100%);
}

.site-footer__brand {
  display: inline-flex;
  margin-bottom: 28px;
}

.site-footer__brand img {
  width: 255px;
}

.site-footer__widgets {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 0.8fr;
  gap: 48px;
}

.site-footer__accordion-toggle {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.site-footer__heading {
  margin: 0 0 46px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.site-footer__accordion-icon {
  display: none;
}

.site-footer__accordion-panel {
  min-width: 0;
  padding-top: 6px;
}

.site-footer__widget-group .menu,
.site-footer__widget-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer__widgets .widget,
.site-footer__brand-column .widget {
  margin: 0;
}

.site-footer__bottom {
  padding: 30px 0 46px;
  background: #fff;
  color: var(--ilpra-color-text);
}

.site-footer__inner--bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.site-footer__inner--bottom > * {
  width: auto;
}

.site-footer__copyright {
  flex: 1;
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.site-footer__legal {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  gap: 18px 32px;
  justify-content: center;
}

.site-footer__legal a {
  color: var(--ilpra-color-text);
  text-decoration: none;
  font-size: 14px;
}

.site-footer__socials {
  display: flex;
  flex: 1;
  gap: 12px;
  justify-content: flex-end;
  width: auto;
  margin-left: 0;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #6b7280;
  background: #f4f5f7;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
}

.site-footer__socials img {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer__widget-group .custom-html-widget,
.site-footer__brand-column .custom-html-widget {
  color: var(--ilpra-color-text);
  font-size: 15px;
  line-height: 1.5;
}

.site-footer__accordion-panel > .widget:first-child,
.site-footer__accordion-panel > .widget_custom_html:first-child,
.site-footer__accordion-panel > .widget_custom_html--legacy:first-child {
  margin-top: 10px;
}

.site-footer__widget-group:last-child .site-footer__accordion-panel img:first-child,
.site-footer__widget-group:last-child .site-footer__accordion-panel .custom-html-widget img:first-child {
  margin-top: 8px;
}

.site-footer__widget-group .custom-html-widget a,
.site-footer__brand-column .custom-html-widget a,
.site-footer__widget-group a {
  color: var(--ilpra-color-text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.site-footer__widget-group .custom-html-widget a:hover,
.site-footer__widget-group a:hover,
.site-footer__legal a:hover {
  color: #ea5b21;
}

.site-footer__widget-group img,
.site-footer__brand-column img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .site-footer__top {
    min-height: 0;
  }

  .site-footer__middle {
    padding: 28px 0 18px;
  }

  .site-footer__inner--middle {
    display: block;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-footer__brand-column {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .site-footer__brand {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  .site-footer__brand img {
    width: min(168px, 100%);
  }

  .site-footer__brand-column .custom-html-widget {
    font-size: 18px;
    line-height: 1.36;
  }

  .site-footer__widgets {
    display: block;
  }

  .site-footer__widget-group {
    border-top: 1px solid rgba(16, 24, 32, 0.24);
  }

  .site-footer__widget-group:last-child {
    border-bottom: 1px solid rgba(16, 24, 32, 0.24);
  }

  .site-footer__accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    cursor: pointer;
  }

  .site-footer__heading {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
  }

  .site-footer__accordion-icon {
    position: relative;
    display: block;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
  }

  .site-footer__accordion-icon::before,
  .site-footer__accordion-icon::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 11px;
    height: 2px;
    background: #101820;
    border-radius: 2px;
    transition: transform 180ms ease;
  }

  .site-footer__accordion-icon::before {
    left: 0;
    transform: rotate(45deg);
  }

  .site-footer__accordion-icon::after {
    right: 0;
    transform: rotate(-45deg);
  }

  .site-footer__widget-group.is-open .site-footer__accordion-icon::before {
    transform: rotate(-45deg);
  }

  .site-footer__widget-group.is-open .site-footer__accordion-icon::after {
    transform: rotate(45deg);
  }

  .site-footer__accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }

  .site-footer__accordion-panel > * {
    padding-bottom: 18px;
  }

  .site-footer__widget-group .menu,
  .site-footer__widget-group ul {
    gap: 12px;
  }

  .site-footer__widget-group .custom-html-widget {
    font-size: 16px;
    line-height: 1.45;
  }

  .site-footer__bottom {
    padding: 22px 0 36px;
  }

  .site-footer__inner--bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .site-footer__inner--bottom > * {
    width: 100%;
    text-align: center;
  }

  .site-footer__copyright {
    order: 3;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
  }

  .site-footer__legal {
    order: 1;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    justify-content: center;
    width: 100%;
  }

  .site-footer__legal a {
    font-size: 14px;
  }

  .site-footer__socials {
    order: 2;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .site-footer__socials a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

.entry-card,
.archive-header {
  padding: 32px;
}

.entry-card__header {
  margin-bottom: 16px;
}

.entry-card__title a {
  text-decoration: none;
}

@media (max-width: 1400px) {
  .news-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-single__more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bi-nav__track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }

  .bi-solutions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-shell,
  .site-main,
  .home-shell,
  .home-section,
  .home-section__inner,
  .home-hero__panel,
  .home-hero__content,
  .site-header,
  .site-header__inner {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header__inner,
  .site-footer__inner,
  .site-nav__menu,
  .site-footer__menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-placeholder__inner,
  .entry-card,
  .archive-header {
    padding: 28px;
  }

  .home-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .home-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .news-single {
    padding-top: 18px;
  }

  .news-single__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-single__media {
    order: -1;
  }

  .news-single__title {
    font-size: 32px;
  }

  .news-single__date {
    font-size: 16px;
  }

  .news-single__more {
    padding-top: 42px;
  }

  .news-single__more-title {
    font-size: 34px;
    margin-bottom: 24px;
  }

  .bi-nav__slider {
    gap: 8px;
  }

  .bi-nav__arrow {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .bi-nav__arrow span {
    font-size: 28px;
  }

  .bi-nav__track {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .bi-pill {
    min-height: 72px;
    padding: 16px 18px;
  }

  .bi-pill img {
    height: 34px;
  }

  .bi-intro {
    padding: 24px;
  }

  .bi-intro__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bi-intro__body {
    display: flex;
    flex-direction: column;
  }

  .bi-intro__title {
    font-size: 38px;
  }

  .bi-intro__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .bi-intro__description p {
    text-align: left;
  }

  .bi-intro__description[data-expanded="true"] {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .bi-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    margin-bottom: 18px;
  }

  .bi-intro__body .bi-button {
    display: inline-flex !important;
    width: fit-content;
    margin: 0;
    align-self: center;
  }

  .bi-intro__media img,
  .bi-intro__placeholder {
    min-height: 340px;
  }

  .bi-section-heading {
    padding: 52px 0 30px;
  }

  .bi-solutions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .bi-card {
    grid-template-rows: auto minmax(2.6em, auto) auto;
    align-content: start;
    gap: 12px;
  }

  .bi-card__image {
    min-height: 132px;
    padding: 14px 10px;
  }

  .bi-card__image img {
    max-height: 96px;
  }

  .bi-card__title {
    width: 100%;
    min-height: 2.6em;
    font-size: 14px;
    line-height: 1.28;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .bi-button--secondary {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
    line-height: 1;
    text-align: center;
  }

  .bi-contact {
    padding-top: 56px;
  }

  .bi-contact__form {
    padding: 0;
  }

  .home-hero__panel {
    padding: 14px;
  }

  .home-hero__panel--video {
    min-height: 380px;
  }

  .home-hero__content {
    padding: 12px;
  }

  .home-kicker,
  .home-hero__text {
    font-size: 17px;
    line-height: 1.45;
  }

  .home-kicker {
    margin-bottom: 10px;
  }

  .home-hero__title {
    font-size: 34px;
    line-height: 1.02;
  }

  .home-heading--split,
  .home-featured-news,
  .home-news-list,
  .news-archive-grid,
  .search-results-grid,
  .tm-pills-nav,
  .tm-product-grid,
  .pm-hero__grid,
  .pm-video-grid,
  .pm-tech-module-grid,
  .pm-details__grid,
  .packaging-category,
  .packaging-category--reverse,
  .site-footer__widgets {
    grid-template-columns: 1fr;
  }

  .site-header__toggle {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 61;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
  }

  .site-header__toggle-icon {
    font-size: 28px;
    color: #232323;
    font-weight: 400;
  }

  .site-branding__logo--full {
    display: none;
  }

  .site-branding__logo--compact {
    display: block;
    width: min(260px, 62vw);
  }

  .site-header {
    padding: 22px 0 20px;
    background: #fff;
    border-bottom: 0;
    backdrop-filter: none;
    z-index: 70;
  }

  .site-header__inner {
    position: relative;
    justify-content: center;
    min-height: 74px;
  }

  .site-branding {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .site-branding__link {
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    display: block;
    width: min(500px, 94vw);
    height: 100dvh;
    padding: 108px 34px 32px;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: -18px 0 42px rgba(16, 24, 32, 0.12);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  body.is-nav-open {
    overflow: hidden;
  }

  body.is-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.68);
  }

  .site-nav__menu {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding-top: 0;
    gap: 10px 14px;
  }

  .site-nav__item {
    width: 100%;
    flex: 0 0 100%;
    flex-wrap: wrap;
  }

  .site-nav__item--has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: center;
  }

  .site-nav__link {
    min-height: 52px;
    width: 100%;
    font-size: 1.3rem;
    white-space: nowrap;
  }

  .site-nav__item--has-children > .site-nav__link {
    min-width: 0;
  }

  .site-nav__item--has-children > .site-nav__link > .site-nav__caret {
    display: none;
  }

  .site-nav__submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #232323;
  }

  .site-nav__item--has-children:hover > .site-nav__submenu {
    opacity: 0;
    visibility: hidden;
  }

  .site-nav__item--has-children.is-open > .site-nav__submenu {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__submenu {
    grid-column: 1 / -1;
    position: static;
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 4px 0 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
  }

  .site-nav__item--has-children.is-open > .site-nav__submenu {
    display: block;
  }

  .site-nav__item--depth-1 .site-nav__link {
    padding: 12px 18px;
    font-size: 1.08rem;
  }

  .site-nav__item--group {
    margin-top: 8px;
  }

  .site-nav__item--group .site-nav__link--group {
    width: 100%;
    justify-content: center;
  }

  .site-nav__item--language {
    width: auto;
    flex: 0 0 auto;
  }

  .site-nav__item--search {
    display: inline-flex;
    width: auto;
    flex: 0 0 auto;
    margin-top: 18px;
    margin-right: 4px;
  }

  .site-nav__item--search ~ .site-nav__item--language {
    display: inline-flex;
    margin-top: 18px;
    margin-right: 2px;
  }

  .site-nav__item--language + .site-nav__item--language {
    margin-left: -10px;
  }

  .site-nav__item--search .site-nav__link,
  .site-nav__item--language .site-nav__link {
    width: 28px;
    height: 28px;
    min-height: 28px;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .site-nav__item--search .site-nav__search-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
  }

  .site-nav__item--language .site-nav__flag {
    display: block;
    width: 22px;
    height: 15px;
    aspect-ratio: auto;
    border-radius: 0;
    object-fit: cover;
  }

  .site-search-panel {
    top: var(--ilpra-header-offset);
  }

  .site-search-panel__inner {
    width: calc(100% - 24px);
  }

  .home .site-main {
    padding-top: 18px;
  }

  .home-heading__title,
  .home-card__title,
  .home-card--industry .home-card__title,
  .home-section--news .home-heading__title {
    font-size: 30px;
    line-height: 1.14;
  }

  .home-featured-news__title {
    font-size: 23px;
    line-height: 1.12;
  }

  .home-featured-news {
    gap: 22px;
    margin-bottom: 30px;
  }

  .home-featured-news__title {
    margin-bottom: 18px;
  }

  .home-featured-news__copy {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .home-featured-news__icon {
    justify-content: flex-start;
    padding-top: 2px;
  }

  .home-featured-news__icon img {
    width: 30px;
  }

  .home-featured-news__content {
    gap: 16px;
  }

  .home-featured-news__excerpt {
    font-size: 17px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .home-button--news {
    width: 100%;
  }

  .home-card--machine .home-card__media {
    aspect-ratio: 16 / 9;
    padding: 14px 14px 4px;
  }

  .home-card--machine .home-card__media img {
    max-width: 84%;
    max-height: 150px;
  }

  .home-card--machine .home-card__body {
    padding: 18px 16px 20px;
  }

  .home-grid--three .home-card__title {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .home-grid--three .home-card__text {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .home-card--industry {
    display: flex;
    flex-direction: column;
    padding: 26px 18px 22px;
  }

  .home-card--industry .home-card__media {
    min-height: 64px;
    margin-bottom: 18px;
  }

  .home-card--industry .home-card__media img {
    max-width: 74px;
    max-height: 52px;
  }

  .home-card--industry .home-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    max-width: none;
  }

  .home-card--industry .home-card__title {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.18;
    min-height: calc(1.18em * 2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .home-card--industry .home-card__text {
    font-size: 14px;
    line-height: 1.4;
    min-height: calc(1.4em * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .home-card--industry .home-button {
    margin-top: auto;
    min-height: 40px;
    align-self: center;
    margin-top: 14px;
    padding: 0 14px;
    font-size: 14px;
  }

  .home-news-list__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  .home-news-list__arrow {
    min-width: 28px;
  }

  .home-news-list__arrow img {
    width: 22px;
  }

  .home-fairs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 48px;
  }

  .home-fair-card__top {
    padding: 14px 12px;
  }

  .home-fair-card__date {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.25;
  }

  .home-fair-card__image {
    min-height: 92px;
  }

  .home-fair-card__image img {
    max-height: 74px;
  }

  .home-fair-card__footer {
    min-height: 54px;
    padding: 8px 10px;
  }

  .home-fair-card__stand,
  .home-fair-card__hall {
    font-size: 12px;
    line-height: 1.2;
  }

  .site-search-form {
    grid-template-columns: minmax(0, 1fr) 60px;
    min-height: 76px;
    padding-left: 20px;
  }

  .site-search-form__input {
    font-size: 20px;
  }

  .site-search-form__submit {
    width: 60px;
    height: 60px;
    margin-right: 4px;
  }

  .news-single__more-grid {
    grid-template-columns: 1fr;
  }

  .tm-pills-nav {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 8px;
    align-items: center;
  }

  .tm-pills-track {
    min-width: 0;
  }

  .tm-pill {
    flex: 0 0 100%;
  }

  .tm-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }

  .tm-arrow span {
    font-size: 30px;
    line-height: 0.8;
  }

  .tm-products-header {
    position: static;
    flex-direction: column;
    padding-bottom: 10px;
  }

  .tm-products-heading,
  .tm-group-description {
    max-width: none;
  }

  .tm-tech-nav {
    width: 100%;
    justify-content: center;
    gap: 14px 22px;
    text-align: center;
  }

  .tm-tech-button {
    line-height: 1.25;
  }

  .tm-product-card {
    min-height: 0;
    padding: 28px;
  }

  .tm-group-header {
    margin-bottom: 24px;
  }

  .tm-product-card--group {
    min-height: 0;
    padding: 28px;
  }

  .pm-hero {
    padding: 0px 0 24px;
  }

  .pm-hero__eyebrow {
    font-size: 20px;
  }

  .pm-accordion {
    padding: 10px 0 24px;
  }

  .pm-mobile-cta {
    display: block;
  }

  .pm-page.has-mobile-cta .pm-hero [data-pm-quote-trigger] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .pm-contact-form {
    scroll-margin-top: 24px;
  }

  .pm-tech-row {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 16px 0;
  }

  .pm-tech-row--header {
    display: none;
  }

  .pm-gallery__slider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pm-gallery__arrow {
    display: none;
  }

  .pm-gallery__track {
    gap: 16px;
  }

  .pm-gallery__item {
    flex-basis: calc((100% - 16px) / 2);
  }

  .pm-detail-card {
    min-height: 0;
    padding: 0 0 24px;
    border-left: 0;
    opacity: 1;
  }

  .pm-detail-card__marker {
    display: none;
  }

  .pm-detail-card__image--mobile {
    display: block;
    margin-bottom: 18px;
  }

  .pm-detail-card__image--mobile img {
    width: 100%;
    border-radius: 20px;
  }

  .pm-details__sticky {
    display: none;
  }

  .pm-contact-form {
    padding-bottom: 50px;
  }

  .home-featured-news__copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-featured-news__icon {
    padding-top: 0;
  }

  .packaging-page__hero {
    padding-top: 24px;
  }

  .packaging-category {
    border-radius: 28px;
  }

  .packaging-category__media,
  .packaging-category--reverse .packaging-category__media,
  .packaging-category--reverse .packaging-category__panel {
    order: initial;
  }

  .packaging-category__media {
    min-height: 280px;
  }

  .packaging-category__panel {
    padding: 28px 22px 32px;
  }

  .packaging-page__cta-card {
    min-height: 360px;
    padding: 54px 22px;
  }

  .packaging-page__cta-card .packaging-page__eyebrow {
    font-size: 18px;
  }

  .packaging-page__cta-card .packaging-page__cta-text {
    margin-top: 22px;
  }

  .packaging-page__cta-card .packaging-page__cta-button {
    margin-top: 40px;
  }

  .site-footer__inner--middle,
  .site-footer__inner--bottom {
    align-items: flex-start;
  }

  .site-footer__socials {
    margin-left: 0;
  }

  body:not(.home):not(.single-packaging_machine) .site-main > .elementor-entry--full {
    width: calc(100% - 24px);
  }

  .home .elementor-entry--full .elementor-section.elementor-section-boxed > .elementor-container,
  .single-packaging_machine .elementor-entry--full .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: calc(100% - 24px);
  }
}

@media (max-width: 560px) {
  .home-grid--two,
  .home-grid--three {
    gap: 14px;
  }

  .home-fairs-grid {
    gap: 10px;
  }

  .home-fair-card__top {
    padding: 12px 8px;
  }

  .home-fair-card__date {
    font-size: 11px;
  }

  .home-fair-card__image {
    min-height: 76px;
  }

  .home-fair-card__image img {
    max-height: 60px;
  }

  .home-fair-card__footer {
    min-height: 48px;
    padding: 7px 8px;
  }

  .home-fair-card__stand,
  .home-fair-card__hall {
    font-size: 11px;
  }

  .home-card--machine .home-card__media {
    padding: 12px 12px 2px;
  }

  .home-card--machine .home-card__media img {
    max-width: 88%;
    max-height: 118px;
  }

  .home-card--machine .home-card__body {
    padding: 16px 12px 18px;
  }

  .home-grid--three .home-card__title {
    font-size: 16px;
  }

  .home-grid--three .home-card__text {
    font-size: 13px;
    line-height: 1.35;
  }

  .home-card--industry {
    padding: 22px 14px 18px;
  }

  .home-card--industry .home-card__media {
    min-height: 54px;
    margin-bottom: 16px;
  }

  .home-card--industry .home-card__media img {
    max-width: 64px;
    max-height: 44px;
  }

  .home-card--industry .home-card__title {
    font-size: 16px;
    min-height: calc(1.18em * 2);
  }

  .home-card--industry .home-card__text {
    font-size: 13px;
    line-height: 1.35;
    min-height: calc(1.35em * 3);
  }

  .home-card--industry .home-button {
    width: 100%;
  }

  .bi-solutions__grid {
    gap: 18px 10px;
  }

  .bi-card {
    gap: 10px;
  }

  .bi-card__image {
    min-height: 114px;
    padding: 12px 8px;
  }

  .bi-card__image img {
    max-height: 82px;
  }

  .bi-card__title {
    min-height: 2.45em;
    font-size: 12px;
    line-height: 1.22;
  }

  .bi-button--secondary {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }
}
