:root {
  --bg: #06090c;
  --bg-2: #0c1218;
  --panel: #111923;
  --panel-2: #0f1720;
  --text: #d9e0e8;
  --muted: #9aa9b9;
  --line: #243446;
  --accent: #ffbf40;
  --accent-2: #f0a114;
  --container: 1200px;
  --radius: 0.65rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Barlow, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 85% 0%, rgba(240, 161, 20, 0.12), transparent 36%),
    linear-gradient(160deg, #05080b 0%, #0a1118 58%, #080d13 100%);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
  line-height: 1.15;
  font-family: Rajdhani, "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #ffe2a3;
}

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

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: #000;
  color: #fff;
  padding: 0.45rem 0.7rem;
  z-index: 500;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 12, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: #fff;
  font-family: Rajdhani, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 0.85rem;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.45rem;
  border: 1px solid #2d3d4f;
  background: rgba(13, 20, 29, 0.85);
  cursor: pointer;
  padding: 0.48rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 0.14rem;
  background: #e2e8f0;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 0.36rem;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-header.nav-needs-toggle .header-inner {
  min-height: 4.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-block: 0.55rem;
}

.site-header.nav-needs-toggle .nav-toggle {
  display: block;
}

.site-header.nav-needs-toggle .site-nav {
  width: 100%;
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.55rem;
  padding-top: 0.6rem;
}

.site-header.nav-needs-toggle .site-nav.is-open {
  display: flex;
}

.site-header.nav-needs-toggle .site-nav a {
  width: 100%;
  padding: 0.2rem 0;
}

.site-header.nav-needs-toggle .site-nav.is-open a[href="contact.html"] {
  width: auto;
  margin-top: 0.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e48a11;
  color: #ffffff;
  background: linear-gradient(180deg, #f09b23, #c77710);
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: clamp(22rem, 56vw, 37rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(5, 8, 12, 0.88) 0%, rgba(5, 8, 12, 0.48) 46%, rgba(5, 8, 12, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  max-width: 58rem;
  padding-block: clamp(3rem, 8vw, 7rem);
}

.hero-content p {
  color: #d2dbe6;
  max-width: 58ch;
}

.btn {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(240, 161, 20, 0.64);
  padding: 0.52rem 1rem;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(180deg, #d89214, #9b670f);
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.08);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -3.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  box-shadow: 0 1.15rem 2rem -1rem rgba(0, 0, 0, 0.52);
}

.feature-tile img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.feature-content {
  padding: 1rem 1rem 1.1rem;
}

.feature-content p {
  color: #b8c6d5;
}

.about {
  margin-bottom: 2rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(18, 26, 35, 0.9), rgba(13, 20, 29, 0.86));
}

.caps {
  text-transform: uppercase;
}

.about p {
  color: #b9c8d7;
}

.text-link {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.8rem;
}

.products {
  margin-bottom: 2rem;
}

.products > h2,
.trust > h2 {
  margin-bottom: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-content {
  display: flex;
  flex-direction: column;
  padding: 0.95rem 1rem 1.1rem;
  min-height: 11.4rem;
}

.product-content p {
  color: #b4c4d4;
}

.product-content a {
  margin-top: auto;
}

.trust {
  margin-bottom: 2rem;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0.1rem;
  row-gap: 0.28rem;
  padding: 0;
}

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

.client-logo-tile {
  border: 1px solid #243446;
  border-radius: 0.42rem;
  min-height: 5.2rem;
  display: grid;
  place-items: center;
  background: #ffffff;
  padding: 0.05rem;
}

.client-logo-tile img {
  max-width: 100%;
  max-height: 4.6rem;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 1;
}

.site-footer {
  border-top: 4px solid #e27000;
  background: #04070a;
  overflow-x: hidden;
}

.footer-inner {
  padding-block: 1.2rem 1.7rem;
  display: grid;
  gap: 0.7rem;
  overflow-x: hidden;
}

.back-to-top {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.38rem 0.86rem;
  white-space: nowrap;
}

.footer-links a {
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .footer-links {
    flex-wrap: wrap;
    white-space: normal;
    gap: 0.25rem 0.5rem;
  }

  .footer-links a {
    font-size: 0.64rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

address {
  font-style: normal;
  color: var(--muted);
}

.anchor-targets {
  display: none;
}

.inner-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.95), rgba(10, 16, 24, 0.95));
}

.inner-hero .container {
  min-height: 9rem;
  display: grid;
  align-items: center;
}

.magmeas {
  padding-block: 1.6rem 2rem;
}

.magmeas-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.magmeas-content {
  padding: 1.2rem 1.2rem 1.3rem;
}

.magmeas-content h2 {
  margin-bottom: 1rem;
}

.magmeas-content h3 {
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.magmeas-content ul,
.magmeas-content ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.magmeas-content li {
  margin-bottom: 0.3rem;
}

.portlab-section {
  padding-block: 1.2rem 2rem;
}

.portlab-title {
  color: #dce5ef;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.portlab-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.portlab-copy {
  color: #d5dfeb;
}

.portlab-copy h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4ecf5;
  margin-top: 0;
}

.portlab-copy p,
.portlab-copy li {
  color: #c2cfdd;
  font-size: 1.02rem;
}

.portlab-copy ul {
  margin: 0 0 1.6rem;
  padding-left: 1.25rem;
}

.portlab-copy li {
  margin-bottom: 0.32rem;
}

.numbered-lines {
  margin-bottom: 1.8rem;
}

.portlab-contact {
  color: #e27000;
  font-weight: 500;
}

.portlab-contact:hover,
.portlab-contact:focus-visible {
  color: #ff8f20;
}

.pl-carousel {
  position: relative;
  overflow: hidden;
  background: #1a2633;
}

.pl-track {
  display: flex;
  transition: transform 0.35s ease;
}

.pl-slide {
  min-width: 100%;
  margin: 0;
}

.pl-slide img {
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  object-fit: cover;
  display: block;
}

.pl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 10, 16, 0.45);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.pl-btn.prev {
  left: 0.55rem;
}

.pl-btn.next {
  right: 0.55rem;
}

.conveyor-section {
  padding-block: 1.2rem 2rem;
}

.conveyor-title {
  color: #dce5ef;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.conveyor-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.conveyor-copy {
  color: #d5dfeb;
}

.conveyor-copy h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4ecf5;
  margin-top: 0;
}

.conveyor-copy p,
.conveyor-copy li {
  color: #c2cfdd;
  font-size: 1.02rem;
}

.conveyor-copy ul {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
}

.conveyor-copy li {
  margin-bottom: 0.32rem;
}

.conveyor-contact {
  color: #e27000;
  font-weight: 500;
}

.conveyor-contact:hover,
.conveyor-contact:focus-visible {
  color: #ff8f20;
}

.conv-carousel {
  position: relative;
  overflow: hidden;
  background: #101923;
  border: 1px solid #2a3f54;
}

.conv-track {
  display: flex;
  transition: transform 0.35s ease;
}

.conv-slide {
  min-width: 100%;
  margin: 0;
}

.conv-slide img {
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  object-fit: cover;
  display: block;
}

.conv-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 10, 16, 0.45);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.conv-btn.prev {
  left: 0.55rem;
}

.conv-btn.next {
  right: 0.55rem;
}

.mineral-section {
  padding-block: 1.2rem 2rem;
}

.mineral-title {
  color: #dce5ef;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.mineral-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.mineral-copy {
  color: #d5dfeb;
}

.mineral-copy h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4ecf5;
  margin-top: 0;
}

.mineral-copy p,
.mineral-copy li {
  color: #c2cfdd;
  font-size: 1.02rem;
}

.mineral-copy ul {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
}

.mineral-copy li {
  margin-bottom: 0.32rem;
}

.miner-carousel {
  position: relative;
  overflow: hidden;
  background: #101923;
  border: 1px solid #2a3f54;
  max-width: 430px;
  justify-self: end;
}

.miner-track {
  display: flex;
  transition: transform 0.35s ease;
}

.miner-slide {
  min-width: 100%;
  margin: 0;
}

.miner-slide img {
  width: 100%;
  height: clamp(180px, 18vw, 250px);
  object-fit: cover;
  display: block;
}

.miner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 10, 16, 0.45);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.miner-btn.prev {
  left: 0.55rem;
}

.miner-btn.next {
  right: 0.55rem;
}

.vehicles-section {
  padding-block: 1.2rem 2rem;
}

.vehicles-title {
  color: #dce5ef;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.vehicles-copy {
  color: #d5dfeb;
}

.vehicles-copy h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4ecf5;
  margin-top: 0;
}

.vehicles-copy p,
.vehicles-copy li {
  color: #c2cfdd;
  font-size: 1.02rem;
}

.vehicles-copy ul {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
}

.vehicles-copy li {
  margin-bottom: 0.32rem;
}

.vehicles-contact {
  color: #e27000;
  font-weight: 500;
}

.vehicles-contact:hover,
.vehicles-contact:focus-visible {
  color: #ff8f20;
}

.veh-carousel {
  position: relative;
  overflow: hidden;
  background: #101923;
  border: 1px solid #2a3f54;
  max-width: 430px;
  justify-self: end;
}

.veh-track {
  display: flex;
  transition: transform 0.35s ease;
}

.veh-slide {
  min-width: 100%;
  margin: 0;
}

.veh-slide img {
  width: 100%;
  height: clamp(180px, 18vw, 250px);
  object-fit: cover;
  display: block;
}

.veh-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 10, 16, 0.45);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.veh-btn.prev {
  left: 0.55rem;
}

.veh-btn.next {
  right: 0.55rem;
}

.hardware-section {
  padding-block: 1.2rem 2rem;
}

.hardware-title {
  color: #dce5ef;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.hardware-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.hardware-copy {
  color: #d5dfeb;
}

.hardware-copy h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: 0.08em;
  color: #e4ecf5;
  margin-top: 0;
}

.hardware-copy ul {
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
}

.hardware-copy li {
  color: #c2cfdd;
  font-size: 1.02rem;
  margin-bottom: 0.32rem;
}

.hardware-contact {
  color: #e27000;
  font-weight: 500;
}

.hardware-contact:hover,
.hardware-contact:focus-visible {
  color: #ff8f20;
}

.hardware-media {
  margin: 0;
  border: 1px solid #2a3f54;
  background: #101923;
  max-width: 430px;
  justify-self: end;
}

.hardware-media img {
  width: 100%;
  height: clamp(180px, 18vw, 250px);
  object-fit: cover;
  display: block;
}

.research-section {
  padding-block: 1.2rem 2rem;
}

.research-title {
  color: #dce5ef;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.research-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.research-copy {
  color: #d5dfeb;
}

.research-copy h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4ecf5;
  margin-top: 0;
}

.research-copy p,
.research-copy li {
  color: #c2cfdd;
  font-size: 1.02rem;
}

.research-copy ul {
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
}

.research-copy li {
  margin-bottom: 0.32rem;
}

.research-media {
  margin: 0;
  border: 1px solid #2a3f54;
  background: #101923;
  max-width: 430px;
  justify-self: end;
}

.research-media img {
  width: 100%;
  height: clamp(180px, 18vw, 250px);
  object-fit: cover;
  display: block;
}

.about-page-section {
  padding-block: 1.2rem 2rem;
}

.about-page-title {
  color: #dce5ef;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.about-page-copy {
  color: #d5dfeb;
}

.about-page-copy p,
.about-page-copy li {
  color: #c2cfdd;
  font-size: 1.02rem;
}

.about-page-copy ul {
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
}

.about-page-copy li {
  margin-bottom: 0.32rem;
}

.about-page-contact {
  color: #e27000;
  font-weight: 500;
}

.about-page-contact:hover,
.about-page-contact:focus-visible {
  color: #ff8f20;
}

.about-page-media {
  margin: 0;
  border: 1px solid #2a3f54;
  background: #101923;
  max-width: 430px;
  justify-self: end;
}

.about-page-media img {
  width: 100%;
  height: clamp(180px, 18vw, 250px);
  object-fit: cover;
  display: block;
}

.contact-hero {
  position: relative;
  height: clamp(180px, 20vw, 260px);
  overflow: hidden;
}

.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.42);
}

.contact-hero h1 {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.08em;
}

.contact-main {
  background: #dcdcdc;
  padding-block: 2rem 2.6rem;
}

.contact-grid {
  display: block;
  max-width: 480px;
  color: #1e2b3a;
}

.contact-details h2 {
  color: #18283b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #1f3042;
  margin-bottom: 1rem;
}

.contact-details a {
  color: #e27000;
}

.magmeas-carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  background: #0a1118;
}

.carousel-slide img {
  width: 100%;
  height: clamp(260px, 34vw, 460px);
  object-fit: contain;
  display: block;
}

.carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.7rem 0.75rem;
  border-top: 1px solid #26384a;
}

.carousel-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid #33495f;
  border-radius: 999px;
  background: #0d151e;
  color: #dbe6f2;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: #546a80;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--accent);
}

@media (max-width: 1024px) {
  .feature-row {
    margin-top: 1rem;
  }

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

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

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

@media (max-width: 1200px) {
  .hero {
    min-height: 20.5rem;
  }

  .client-logo-grid {
    padding: 0.55rem;
  }
}

@media (max-width: 680px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .portlab-grid {
    grid-template-columns: 1fr;
  }

  .conveyor-grid {
    grid-template-columns: 1fr;
  }

  .mineral-grid {
    grid-template-columns: 1fr;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .hardware-grid {
    grid-template-columns: 1fr;
  }

  .research-grid {
    grid-template-columns: 1fr;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .pl-slide img {
    height: clamp(200px, 58vw, 280px);
  }

  .conv-slide img {
    height: clamp(200px, 58vw, 280px);
  }

  .miner-slide img {
    height: clamp(200px, 58vw, 280px);
  }

  .veh-slide img {
    height: clamp(200px, 58vw, 280px);
  }

  .hardware-media img {
    height: clamp(200px, 58vw, 280px);
  }

  .research-media img {
    height: clamp(200px, 58vw, 280px);
  }

  .about-page-media img {
    height: clamp(200px, 58vw, 280px);
  }

  .miner-carousel {
    max-width: 100%;
    justify-self: stretch;
  }

  .veh-carousel {
    max-width: 100%;
    justify-self: stretch;
  }

  .hardware-media {
    max-width: 100%;
    justify-self: stretch;
  }

  .research-media {
    max-width: 100%;
    justify-self: stretch;
  }

  .about-page-media {
    max-width: 100%;
    justify-self: stretch;
  }

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

  .client-logo-tile {
    min-height: 4rem;
  }

  .client-logo-tile img {
    max-height: 3.2rem;
  }

  .magmeas-grid {
    grid-template-columns: 1fr;
  }

  .carousel-slide img {
    height: clamp(220px, 62vw, 340px);
  }
}
