:root {
  --navy: #003366;
  --navy-900: #001f3f;
  --navy-700: #064a86;
  --orange: #ff6600;
  --orange-700: #d95400;
  --ink: #152033;
  --muted: #637083;
  --line: #d8e0ea;
  --panel: #f4f7fa;
  --steel: #e8eef4;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(0, 35, 72, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 224, 234, 0.9);
  backdrop-filter: blur(14px);
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar strong {
  color: var(--white);
  font-weight: 700;
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text strong {
  color: var(--navy);
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  font-size: 1.22rem;
  line-height: 1.1;
}

.registered-mark {
  font-size: 0.46em;
  line-height: 1;
  transform: translateY(0.02em);
}

.topbar .registered-mark,
.footer-grid .registered-mark {
  font-size: 0.52em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  color: #26374d;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy);
  background: #edf4fb;
}

.nav-menu .quote-link {
  margin-left: 8px;
  color: var(--white);
  background: var(--orange);
}

.nav-menu .quote-link:hover,
.nav-menu .quote-link.active {
  color: var(--white);
  background: var(--orange-700);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 31, 63, 0.04) 0%, rgba(0, 51, 102, 0.18) 48%, rgba(0, 31, 63, 0.76) 100%),
    linear-gradient(0deg, rgba(0, 31, 63, 0.6) 0%, rgba(0, 31, 63, 0) 34%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 590px);
  align-items: center;
  gap: 36px;
  padding: 76px 0 88px;
}

.hero-copy {
  grid-column: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 3.35rem;
  line-height: 1.04;
  font-weight: 800;
}

.hero-lead,
.page-lead {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 620px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.primary:hover {
  background: var(--orange-700);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.ghost {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.button.ghost:hover {
  border-color: var(--navy);
}

.market-strip {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.market-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(216, 224, 234, 0.85);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.market-item {
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.market-item:last-child {
  border-right: 0;
}

.metric {
  display: block;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
}

.metric-label {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 58px 0;
}

.section.alt {
  background: var(--panel);
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 0.62fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header.single {
  grid-template-columns: minmax(0, 820px);
}

.section-header h2,
.split-copy h2,
.form-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.16;
}

.section-header p,
.split-copy p,
.card p,
.news-card p,
.download-card p,
.application-card p {
  margin: 0;
  color: var(--muted);
}

.dark .section-header h2,
.dark .section-header p {
  color: var(--white);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-3:has(> .card:nth-child(4)) {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card,
.news-card,
.download-card,
.application-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card {
  min-height: 260px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.card.has-media {
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  grid-template-rows: auto 1fr auto;
  gap: 0;
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef3f7;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72));
  pointer-events: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.card.has-media:hover .card-media img {
  transform: scale(1.035);
}

.card-body {
  min-width: 0;
}

.card.has-media .card-body {
  padding: 22px 22px 18px;
}

.card.has-media .card-link {
  margin: 0 22px 24px;
}

.card-kicker {
  display: inline-flex;
  width: max-content;
  padding: 5px 9px;
  color: var(--orange);
  background: #fff1e8;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.card h3,
.news-card h3,
.download-card h3,
.application-card h3,
.contact-card h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.22;
}

.card.has-media h3 {
  margin-top: 0;
}

.card-link {
  color: var(--navy);
  font-weight: 800;
}

.card-link:hover {
  color: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: center;
}

.split-copy {
  max-width: 720px;
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #25344a;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
}

.region-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.section:not(.dark) .region-panel {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.region-panel h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1.24rem;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.region-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 31, 63, 0.98), rgba(0, 51, 102, 0.9)),
    url("vttug-hero-pigments-v2.png") center / cover no-repeat;
}

.page-hero .section-inner {
  padding: 86px 0 82px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--white);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.product-table th,
.product-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.product-table th {
  color: var(--navy);
  background: #edf4fb;
}

.product-table tr:last-child td {
  border-bottom: 0;
}

.product-filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.product-filter {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.product-filter:hover,
.product-filter.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-item-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: grid;
  align-content: start;
  gap: 16px;
}

.product-item-card[hidden] {
  display: none;
}

.product-sample-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8fb;
}

.product-sample-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-category-tag {
  display: inline-flex;
  width: max-content;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--white);
  background: #9a3b28;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-item-card[data-product-category="carbon-black"] .product-category-tag {
  background: #111111;
}

.product-item-card[data-product-category="titanium-dioxide"] .product-category-tag {
  color: var(--navy);
  border-color: #cbd4df;
  background: #f7f8fb;
}

.product-name-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
}

.product-color-chip {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(21, 32, 51, 0.2);
  border-radius: 999px;
  background: var(--product-color, var(--orange));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.product-item-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.22;
}

.product-item-card p {
  margin: 0;
  color: var(--muted);
}

.product-item-card dl,
.contact-method dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.product-item-card dl div,
.contact-method dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.product-item-card dt,
.contact-method dt {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-item-card dd,
.contact-method dd {
  margin: 0;
  color: var(--ink);
}

.contact-method a {
  color: var(--navy);
  font-weight: 800;
}

.contact-method dl {
  margin-top: 16px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.download-card {
  min-height: 248px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.file-type {
  display: inline-flex;
  width: max-content;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
}

.form-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #26374d;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cdd7e2;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
}

.application-card {
  min-height: 210px;
  padding: 24px;
}

.application-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 20px;
}

.news-card.has-media {
  grid-template-columns: 240px 1fr;
}

.news-media {
  min-height: 150px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-date {
  min-height: 142px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--steel);
  text-align: center;
  font-weight: 800;
}

.news-date span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(310px, 0.5fr);
  gap: 26px;
  align-items: start;
}

.contact-card {
  padding: 24px;
}

.contact-card + .contact-card {
  margin-top: 16px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.dealer-network-section .section-inner {
  display: grid;
  gap: 26px;
}

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

.dealer-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dealer-card.is-headquarters {
  border-color: rgba(0, 51, 102, 0.28);
  background: linear-gradient(180deg, #ffffff, #f7fafc);
}

.dealer-role {
  display: inline-flex;
  width: max-content;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
}

.dealer-card.is-headquarters .dealer-role {
  background: var(--navy);
}

.dealer-card h3 {
  margin: 14px 0 16px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.22;
}

.dealer-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.dealer-card dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
}

.dealer-card dt {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.dealer-card dd {
  margin: 0;
  color: var(--ink);
}

.dealer-card a {
  color: var(--navy);
  font-weight: 800;
}

.dealer-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.solution-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-product-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.solution-product-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.solution-product-card p {
  margin: 0;
  color: var(--muted);
}

.innovation-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--steel);
}

.innovation-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-900);
}

.footer-inner {
  padding: 46px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 0.85fr;
  gap: 30px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.footer-grid p,
.footer-grid ul {
  margin: 0;
}

.footer-grid ul {
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-inner span:last-child {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 1px);
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: grid;
    gap: 4px;
  }

  .nav-menu a {
    justify-content: flex-start;
  }

  .nav-menu .quote-link {
    margin-left: 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-column: 1;
    max-width: 560px;
    margin-left: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .market-strip {
    margin-top: 0;
    background: var(--panel);
    padding: 20px 0 0;
  }

  .market-strip .section-inner,
  .grid-3,
  .download-grid,
  .footer-grid,
  .product-catalog-grid,
  .solution-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3:has(> .card:nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(0, 31, 63, 0.94), rgba(0, 51, 102, 0.76));
  }

  .hero-media img {
    object-position: 38% center;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-inner {
    padding: 58px 0 68px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.12rem;
  }

  .hero-lead,
  .page-lead {
    font-size: 1rem;
  }

  .section {
    padding: 62px 0;
  }

  .section-header h2,
  .split-copy h2,
  .form-panel h2 {
    font-size: 1.65rem;
  }

  .market-strip .section-inner,
  .grid-3,
  .grid-2,
  .download-grid,
  .product-catalog-grid,
  .form-grid,
  .footer-grid,
  .dealer-grid,
  .solution-product-grid {
    grid-template-columns: 1fr;
  }

  .grid-3:has(> .card:nth-child(4)) {
    grid-template-columns: 1fr;
  }

  .dealer-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .product-item-card dl div,
  .contact-method dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .market-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .market-item:last-child {
    border-bottom: 0;
  }

  .product-table,
  .product-table tbody,
  .product-table tr,
  .product-table td,
  .product-table th {
    display: block;
  }

  .product-table thead {
    display: none;
  }

  .product-table td {
    border-bottom: 0;
  }

  .product-table tr {
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }

  .product-table tr:last-child {
    border-bottom: 0;
  }

  .product-table td::before {
    display: block;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
    content: attr(data-label);
  }

  .news-card,
  .news-card.has-media {
    grid-template-columns: 1fr;
  }

  .news-date {
    min-height: 88px;
  }

  .footer-bottom {
    display: grid;
  }
}
