/* ============================================================
   EQUIPMENT PRODUCT PAGES (line overview + model grid)
   ============================================================ */

.product-hero {
  background: linear-gradient(180deg, var(--gray-100) 0%, #fff 100%);
  padding: var(--space-10) var(--space-8) var(--space-8);
  border-bottom: 1px solid var(--gray-200);
}

.product-brand-logo {
  display: block;
  margin: 0 auto var(--space-6);
  max-width: 400px;
  width: 100%;
  height: auto;
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-10);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.product-intro-copy p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: var(--space-4);
}

.product-intro-photo {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.product-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 700px;
  margin: var(--space-8) auto;
  padding: 0 var(--space-6);
}

.product-cta-row .btn-quote {
  width: 100%;
  text-align: center;
}

.product-tagline {
  max-width: 900px;
  margin: 0 auto var(--space-8);
  padding: 0 var(--space-12);
  text-align: center;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.8;
}

/* --- Model series grid --- */
.product-series {
  background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-900) 100%);
  padding: var(--space-12) var(--space-8) var(--space-16);
}

.product-series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  max-width: var(--max-width);
  margin: 0 auto;
}

.series-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: var(--space-6) var(--space-5) var(--space-8);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.series-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.series-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin-bottom: var(--space-4);
  width: 100%;
}

.series-card-image img {
  max-height: 150px;
  max-width: 90%;
  object-fit: contain;
}

.series-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--space-3);
  color: #fff;
}

.series-card-specs {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.product-series-footer-logo {
  display: block;
  margin: var(--space-10) auto 0;
  max-width: 300px;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .product-hero,
  .product-tagline {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .product-intro-copy p {
    text-align: left;
  }

  .product-series-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-cta-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .product-series-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Series detail page (Pick & Carry, etc.) --- */
.product-hero--series {
  padding-top: var(--space-10);
}

.product-brand-link {
  display: inline-block;
  margin-bottom: var(--space-6);
}

.product-brand-logo--inline {
  margin: 0;
  max-width: 300px;
}

.product-intro-photo--plain {
  box-shadow: none;
}

.product-intro-media {
  text-align: center;
}

.product-intro-tagline {
  margin: var(--space-4) 0 var(--space-2);
  font-size: 24px;
  line-height: 1.2;
}

.product-intro-spec-link {
  margin: 0;
}

.product-quote-prompt {
  text-align: center;
  margin: var(--space-6) 0;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}

.product-quote-prompt p {
  margin-bottom: var(--space-2);
}

.product-cta-row--inline {
  margin: var(--space-6) 0 0;
  padding: 0;
  max-width: none;
}

.product-series-heading {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-12) var(--space-4);
  text-align: center;
}

.product-series-divider {
  border: none;
  border-top: 1px solid var(--gray-300);
  margin: 0 0 var(--space-8);
}

.product-series-heading h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8) var(--space-10);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--gray-900);
  padding: var(--space-5);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(4, 112, 215, 0.2);
}

.category-card img {
  max-width: 150px;
  width: 100%;
  height: auto;
  margin-bottom: var(--space-4);
  object-fit: contain;
}

.category-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.product-about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-12) var(--space-12);
}

.product-about h3 {
  text-align: center;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-8);
  color: var(--gray-900);
}

.product-about p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: var(--space-4);
}

@media (max-width: 900px) {
  .product-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-about {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .product-about p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .product-category-grid {
    grid-template-columns: 1fr;
  }
}

.product-category-grid--6 {
  grid-template-columns: repeat(6, 1fr);
}

.product-category-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-category-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: none;
  padding: 0;
}

.product-category-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.category-card--detail .category-card-desc {
  margin: 0 0 var(--space-3);
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-700);
  text-align: center;
}

.category-card-spec {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.mavlift-models-features {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto var(--space-10);
  padding: 0 var(--space-12);
  align-items: start;
}

.mavlift-models-features__list {
  padding-top: var(--space-2);
}

.mavlift-features-list {
  margin: 0;
  padding-left: 1.25em;
  color: var(--gray-900);
  font-size: 15px;
  line-height: 1.7;
}

.mavlift-features-list li {
  margin-bottom: var(--space-2);
}

@media (max-width: 900px) {
  .mavlift-models-features {
    grid-template-columns: 1fr;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .product-category-grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .product-category-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-category-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-category-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .product-category-grid--6 {
    grid-template-columns: 1fr;
  }

  .product-category-grid--4 {
    grid-template-columns: 1fr;
  }

  .product-category-grid--3 {
    grid-template-columns: 1fr;
  }
}

.product-series-divider--mavlift {
  border-top-color: #021676;
}

.product-series-divider--unic {
  border-top-color: #707070;
}

.unic-model-grid {
  max-width: 1100px;
  margin: 0 auto var(--space-6);
  padding: 0 var(--space-12);
}

.unic-model-grid .product-category-grid {
  margin-bottom: var(--space-8);
}

.unic-spec-section {
  display: block;
}

@media (max-width: 800px) {
  .unic-model-grid {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .unic-spec-section {
    display: none;
  }

  .spec-tabs-section--desktop-only {
    display: none;
  }
}

/* --- UNIC Revolution XL detail page --- */
.product-hero--unic-detail {
  padding-top: var(--space-6);
}

.product-brand-link--center {
  display: block;
  text-align: center;
  margin-bottom: var(--space-6);
}

.product-brand-link--center .product-brand-logo {
  margin-left: auto;
  margin-right: auto;
}

.product-intro-grid--unic-xl {
  grid-template-columns: 3fr 2fr;
}

.product-intro-copy .product-quote-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.spec-table--models thead th {
  text-align: center;
}

.spec-table--models tbody td:not(:first-child) {
  text-align: center;
}

.product-carousel {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.product-carousel-track {
  position: relative;
}

.product-carousel-slide {
  text-align: center;
}

.product-carousel-slide[hidden] {
  display: none;
}

.product-carousel-slide img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.product-carousel-prev,
.product-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.product-carousel-prev {
  left: 0;
}

.product-carousel-next {
  right: 0;
}

.product-carousel-prev:hover,
.product-carousel-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.product-cta-row--spec-sheet {
  max-width: 900px;
}

.product-cta-row--spec-sheet .btn-quote {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.product-series-heading--logo {
  padding-top: var(--space-6);
}

.product-series-logo {
  display: block;
  max-width: 275px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.unic-feature-videos {
  max-width: 1100px;
  margin: 0 auto var(--space-12);
  padding: 0 var(--space-12);
}

.unic-feature-videos h3 {
  text-align: center;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-8);
  color: var(--gray-900);
}

.unic-feature-videos-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-8);
  align-items: start;
}

.unic-feature-videos-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.unic-feature-videos-nav .btn-quote {
  width: 100%;
  text-align: center;
}

.unic-feature-videos-image {
  text-align: center;
}

.unic-feature-videos-image img {
  max-width: 426px;
  width: 100%;
  height: auto;
}

.feature-video-desc {
  margin-top: var(--space-5);
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}

.feature-video-desc p {
  margin-bottom: var(--space-3);
}

.feature-video-desc p:last-child {
  margin-bottom: 0;
}

.feature-video-desc-template {
  display: none;
}

.site-modal-dialog--wide {
  max-width: 720px;
}

.video-embed--modal {
  max-width: none;
}

@media (max-width: 900px) {
  .unic-feature-videos {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .unic-feature-videos-grid {
    grid-template-columns: 1fr;
  }

  .unic-feature-videos-image {
    order: -1;
  }
}

.mavlift-spec-section {
  max-width: 1100px;
  margin: 0 auto var(--space-10);
  padding: 0 var(--space-12);
  overflow-x: auto;
}

.mavlift-crosslink {
  margin: var(--space-6) 0 0;
  font-size: 16px;
}

.mavlift-model-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto var(--space-10);
  padding: 0 var(--space-12);
  align-items: start;
}

.mavlift-model-row__image img {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.mavlift-model-row__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.mavlift-model-row__specs--single {
  grid-template-columns: minmax(0, 420px);
}

.mavlift-spec-card {
  background: #dddddd;
  padding: var(--space-5);
}

.mavlift-spec-card h2 {
  margin: 0 0 var(--space-4);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.mavlift-spec-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.mavlift-spec-card th {
  font-weight: 600;
  text-align: left;
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  vertical-align: top;
  white-space: nowrap;
}

.mavlift-spec-card td {
  padding: var(--space-2) 0;
  vertical-align: top;
}

.mavlift-spec-card a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 900px) {
  .mavlift-model-row {
    grid-template-columns: 1fr;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .mavlift-model-row__specs {
    grid-template-columns: 1fr;
  }

  .mavlift-model-row__specs--single {
    grid-template-columns: 1fr;
  }
}

.spec-table--mavlift thead th {
  font-size: 18px;
  font-weight: 700;
}

.btn-quote--block {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: var(--space-2) var(--space-3);
  text-decoration: none;
}

.product-features-panel {
  background: #021676;
  padding: var(--space-10) var(--space-8) var(--space-12);
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.product-features-list {
  margin: 0;
  padding-left: 1.25em;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.product-features-list li {
  margin-bottom: var(--space-2);
}

.product-features-media {
  text-align: center;
}

.product-features-note {
  margin: var(--space-4) 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 60%;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .mavlift-spec-section {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .product-features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Spec tabs --- */
.spec-tabs-section {
  max-width: var(--max-width);
  margin: 0 auto var(--space-12);
  padding: 0 var(--space-8) var(--space-10);
}

.spec-tabs-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.spec-tabs-nav {
  display: flex;
  flex-direction: column;
  background: var(--gray-900);
}

.spec-tab-btn {
  display: block;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--red);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), padding-left var(--transition);
}

.spec-tab-btn:last-child {
  border-bottom: none;
}

.spec-tab-btn.is-active,
.spec-tab-btn:hover {
  background: var(--gray-900);
  padding-left: calc(var(--space-5) + 4px);
}

.spec-tabs-panels {
  background: #fff;
  min-height: 320px;
}

.spec-tab-panel {
  padding: var(--space-6);
  overflow-x: auto;
}

.spec-tab-panel[hidden] {
  display: none;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 12px var(--space-4);
  border: 1px solid var(--gray-200);
  vertical-align: middle;
}

.spec-table thead th {
  background: var(--gray-100);
  text-align: center;
  font-weight: 600;
  color: var(--gray-800);
}

.spec-table thead th:first-child {
  text-align: left;
}

/* base.css sets img { display: block }, so text-align alone won't center chart photos */
.spec-table thead th img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.spec-table thead th:first-child img {
  margin-left: 0;
  margin-right: auto;
}

.spec-table tbody td:first-child {
  font-weight: 500;
  background: var(--gray-50);
  color: var(--gray-700);
}

.spec-table tbody td:not(:first-child) {
  text-align: center;
}

.spec-table tbody tr:hover td {
  background: rgba(4, 112, 215, 0.03);
}

.spec-table tbody tr:hover td:first-child {
  background: var(--blue-light);
}

.spec-table tbody a {
  color: var(--blue);
  font-weight: 600;
}

.spec-table tbody a:hover {
  text-decoration: underline;
}

.spec-table tbody a.btn-quote,
.spec-table tbody a.btn-quote:hover {
  color: #fff;
  text-decoration: none;
}

.spec-table-footnote {
  margin: var(--space-4) 0 0;
  padding-left: calc(220px + var(--space-6));
  font-size: 14px;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .product-series-heading,
  .spec-tabs-section {
    padding-left: max(var(--space-6), var(--safe-left));
    padding-right: max(var(--space-6), var(--safe-right));
  }

  .product-hero {
    padding-left: max(var(--space-6), var(--safe-left));
    padding-right: max(var(--space-6), var(--safe-right));
  }

  .product-intro-copy p {
    text-align: left;
    hyphens: auto;
  }

  .product-cta-row {
    padding-left: 0;
    padding-right: 0;
  }

  .spec-tabs-layout {
    grid-template-columns: 1fr;
  }

  .spec-tabs-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .spec-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .spec-tab-btn {
    flex: 0 0 auto;
    min-width: 132px;
    font-size: 13px;
    padding: 12px var(--space-4);
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
  }

  .spec-tab-btn:last-child {
    border-right: none;
  }

  .spec-tab-panel {
    padding: var(--space-4);
  }

  .spec-table {
    font-size: 13px;
  }

  .spec-table th,
  .spec-table td {
    padding: 10px var(--space-3);
  }

  .spec-table-footnote {
    padding-left: 0;
    text-align: center;
    font-size: 13px;
  }
}

/* --- Accessories page --- */
.accessories-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-12) var(--space-6);
  text-align: center;
}

.accessories-intro h2 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-6);
}

.accessories-intro p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.accessories-featured-section {
  padding-top: var(--space-8);
}

.accessories-section-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-8);
}

.accessories-subheading {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin: var(--space-8) 0;
}

.product-series-divider--dark {
  border-top-color: #000;
  max-width: 1100px;
  margin: var(--space-8) auto;
}

.category-card--static {
  cursor: default;
}

.accessories-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto var(--space-8);
  padding: 0 var(--space-8);
}

.accessories-list-grid ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.9;
}

.accessories-featured-section .product-cta-row--inline {
  max-width: 700px;
  margin: var(--space-8) auto 0;
  padding-bottom: var(--space-4);
}

@media (max-width: 900px) {
  .accessories-intro {
    padding-left: max(var(--space-6), var(--safe-left));
    padding-right: max(var(--space-6), var(--safe-right));
  }

  .accessories-list-grid {
    grid-template-columns: 1fr;
    padding-left: max(var(--space-6), var(--safe-left));
    padding-right: max(var(--space-6), var(--safe-right));
  }

  .accessories-featured-section .product-cta-row--inline {
    padding-left: max(var(--space-6), var(--safe-left));
    padding-right: max(var(--space-6), var(--safe-right));
  }
}

/* --- Equipment videos pages (MAVLift, SPYDERCRANE) --- */
.equipment-videos-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-12) var(--space-12);
}

.equipment-videos-page h1 {
  text-align: center;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-10);
}

.equipment-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8) var(--space-6);
  margin-bottom: var(--space-10);
}

.equipment-video-card h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
  margin: 0 0 var(--space-3);
}

.equipment-videos-page .video-embed {
  max-width: none;
  padding-top: 56.25%;
}

.equipment-videos-page .product-cta-row--inline {
  max-width: 700px;
  margin: 0 auto;
}

.equipment-video-card--training {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
  padding: var(--space-6) var(--space-4);
}

.equipment-video-training-logo {
  max-width: 89px;
  height: auto;
  margin-bottom: var(--space-4);
}

.equipment-video-training-text {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 var(--space-5);
}

.equipment-video-training-btn {
  width: 100%;
  max-width: 280px;
  text-align: center;
}

@media (max-width: 900px) {
  .equipment-videos-page {
    padding: var(--space-8) max(var(--space-6), var(--safe-right)) var(--space-10) max(var(--space-6), var(--safe-left));
  }

  .equipment-videos-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .equipment-videos-page .product-cta-row--inline {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .equipment-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
