/* Northern Outfitters support pages
   Applies to About, Condition Guide, Measurements, Shipping, Returns, Contact, Privacy, Terms
*/

.no-support-page {
  background: #ffffff;
  color: #111111;
  font-family: inherit;
  width: 100%;
}

.no-support-page * {
  box-sizing: border-box;
}

.no-support-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */

.no-support-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid #e7e3dc;
}

.no-support-eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777777;
}

.no-support-hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.no-support-hero p {
  max-width: 700px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #444444;
}

.no-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.no-support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid #111111;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.no-support-button-primary {
  background: #111111;
  color: #ffffff;
}

.no-support-button-secondary {
  background: #ffffff;
  color: #111111;
}

.no-support-button:hover {
  opacity: 0.82;
}

/* Cards */

.no-support-card-row {
  padding: 34px 0 24px;
}

.no-support-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.no-support-card {
  border: 1px solid #e7e3dc;
  background: #ffffff;
  padding: 24px;
}

.no-support-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.no-support-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

/* Sections */

.no-support-section {
  padding: 64px 0;
  border-bottom: 1px solid #eeeae4;
}

.no-support-section.no-support-section-no-border {
  border-bottom: 0;
}

.no-support-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.no-support-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.no-support-section h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.no-support-section p {
  max-width: 700px;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #444444;
}

.no-support-section p:last-child {
  margin-bottom: 0;
}

/* About page modules */

.no-support-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.no-support-category-card {
  border: 1px solid #e7e3dc;
  padding: 18px;
  font-size: 14px;
  line-height: 1.4;
  color: #111111;
  background: #faf9f6;
}

.no-support-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: process;
  margin-top: 28px;
}

.no-support-process-card {
  position: relative;
  min-height: 150px;
  border: 1px solid #e7e3dc;
  padding: 20px;
  background: #ffffff;
}

.no-support-process-card::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #777777;
}

.no-support-process-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
}

.no-support-process-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #555555;
}

/* Soft blocks */

.no-support-soft-block {
  background: #f7f5f1;
  border: 1px solid #e7e3dc;
  padding: 36px;
}

/* Accordions */

.no-support-accordion {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.no-support-accordion details {
  border: 1px solid #e7e3dc;
  background: #ffffff;
}

.no-support-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.no-support-accordion summary::-webkit-details-marker {
  display: none;
}

.no-support-accordion summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  color: #555555;
}

.no-support-accordion details[open] summary::after {
  content: "–";
}

.no-support-accordion-title {
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}

.no-support-accordion-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
}

.no-support-accordion-content {
  padding: 0 24px 24px;
  color: #444444;
}

.no-support-accordion-content p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.no-support-accordion-content p:last-child {
  margin-bottom: 0;
}

/* Grade cards */

.no-grade-section-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.no-grade-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid #d9d3ca;
  background: #faf9f6;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555555;
}

/* Measurement modules */

.no-measurement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.no-measurement-card {
  border: 1px solid #e7e3dc;
  background: #ffffff;
  padding: 22px;
}

.no-measurement-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
}

.no-measurement-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.no-image-guide {
  border: 1px solid #e7e3dc;
  background: #ffffff;
  padding: 20px;
}

.no-image-guide img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.no-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e7e3dc;
  margin-top: 18px;
}

.no-support-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #ffffff;
}

.no-support-table th,
.no-support-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eeeae4;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
}

.no-support-table th {
  background: #faf9f6;
  font-weight: 500;
  color: #111111;
}

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

/* Shipping / service blocks */

.no-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.no-info-block {
  border: 1px solid #e7e3dc;
  background: #ffffff;
  padding: 26px;
}

.no-info-block h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 500;
}

.no-info-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
}

/* Buyer note */

.no-support-note {
  padding: 48px 0;
}

.no-support-note-inner {
  background: #f7f5f1;
  border: 1px solid #e7e3dc;
  padding: 30px;
}

.no-support-note h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.no-support-note p {
  margin: 0;
  max-width: 800px;
  font-size: 15px;
  line-height: 1.65;
  color: #444444;
}

/* CTA */

.no-support-cta {
  padding: 56px 0 76px;
  text-align: center;
}

.no-support-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.no-support-cta p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: #444444;
}

.no-support-cta .no-support-actions {
  justify-content: center;
}

/* Legal page support for later */

.no-legal-page .no-support-hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 62px);
}

.no-legal-content {
  max-width: 840px;
  margin: 0 auto;
}

.no-legal-content h2 {
  margin-top: 42px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.no-legal-content h2:first-child {
  margin-top: 0;
}

.no-legal-content p,
.no-legal-content li {
  font-size: 15px;
  line-height: 1.75;
  color: #444444;
}

/* Responsive */

@media (max-width: 980px) {
  .no-support-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .no-support-hero {
    padding: 52px 0 42px;
  }

  .no-support-grid-3,
  .no-support-grid-2,
  .no-support-split,
  .no-info-grid {
    grid-template-columns: 1fr;
  }

  .no-support-section {
    padding: 48px 0;
  }

  .no-support-category-grid {
    grid-template-columns: 1fr;
  }

  .no-support-soft-block {
    padding: 26px;
  }
}

@media (max-width: 620px) {
  .no-support-container {
    padding: 0 18px;
  }

  .no-support-hero h1 {
    font-size: 42px;
  }

  .no-support-hero p {
    font-size: 16px;
  }

  .no-support-actions {
    flex-direction: column;
  }

  .no-support-button {
    width: 100%;
  }

  .no-support-card,
  .no-support-process-card,
  .no-support-note-inner,
  .no-info-block,
  .no-measurement-card {
    padding: 20px;
  }

  .no-support-process,
  .no-measurement-grid {
    grid-template-columns: 1fr;
  }

  .no-support-accordion summary {
    padding: 20px;
  }

  .no-support-accordion-content {
    padding: 0 20px 20px;
  }
}
/* Darker support page text override */

.no-support-page {
  color: #111111;
}

.no-support-hero p,
.no-support-section p,
.no-support-card p,
.no-support-process-card p,
.no-support-note p,
.no-support-cta p,
.no-support-accordion-content,
.no-support-accordion-content p,
.no-measurement-card p,
.no-info-block p,
.no-legal-content p,
.no-legal-content li {
  color: #222222;
}

.no-support-eyebrow,
.no-support-accordion-subtitle,
.no-grade-label,
.no-contact-note {
  color: #444444;
}

.no-support-card h3,
.no-support-section h2,
.no-support-section h3,
.no-support-note h2,
.no-support-cta h2,
.no-support-accordion-title,
.no-measurement-card h3,
.no-info-block h3,
.no-legal-content h2 {
  color: #111111;
}

.no-support-category-card {
  color: #111111;
}
/* Global support page mobile compression */

@media (max-width: 760px) {
  html body .no-support-page {
    overflow-x: hidden !important;
  }

  html body .no-support-page .no-support-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  html body .no-support-page .no-support-hero {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  html body .no-support-page .no-support-eyebrow {
    margin-bottom: 18px !important;
    font-size: 11px !important;
    letter-spacing: 0.14em !important;
  }

  html body .no-support-page .no-support-hero h1 {
    max-width: 340px !important;
    font-size: 36px !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
  }

  html body .no-support-page .no-support-hero p {
    max-width: 340px !important;
    margin-top: 18px !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
  }

  html body .no-support-page .no-support-actions {
    margin-top: 24px !important;
    gap: 10px !important;
  }

  html body .no-support-page .no-support-button {
    min-height: 44px !important;
    padding: 13px 18px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  html body .no-support-page .no-support-card-row {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  html body .no-support-page .no-support-grid-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  html body .no-support-page .no-support-grid-3 > article:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  html body .no-support-page .no-support-card {
    min-height: auto !important;
    padding: 17px 16px !important;
  }

  html body .no-support-page .no-support-card h3 {
    margin-bottom: 7px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  html body .no-support-page .no-support-card p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }

  html body .no-support-page .no-support-section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  html body .no-support-page .no-support-section h2 {
    margin-bottom: 14px !important;
    font-size: 27px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
  }

  html body .no-support-page .no-support-section h3 {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  html body .no-support-page .no-support-section p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  html body .no-support-page .no-support-grid-2,
  html body .no-support-page .no-info-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  html body .no-support-page .no-info-block {
    min-height: auto !important;
    padding: 20px 18px !important;
  }

  html body .no-support-page .no-info-block h3 {
    margin-bottom: 8px !important;
    font-size: 17px !important;
  }

  html body .no-support-page .no-info-block p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  html body .no-support-page .no-support-category-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  html body .no-support-page .no-support-category-card {
    min-height: auto !important;
    padding: 15px 14px !important;
  }

  html body .no-support-page .no-support-category-card h3 {
    margin-bottom: 8px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  html body .no-support-page .no-support-category-card span,
  html body .no-support-page .no-support-category-card p {
    font-size: 10px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.08em !important;
  }

  html body .no-support-page .no-support-process-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  html body .no-support-page .no-support-process-card {
    min-height: 142px !important;
    padding: 16px 14px !important;
  }

  html body .no-support-page .no-process-number,
  html body .no-support-page .no-support-process-number {
    margin-bottom: 20px !important;
    font-size: 10px !important;
  }

  html body .no-support-page .no-support-process-card h3 {
    margin-bottom: 8px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  html body .no-support-page .no-support-process-card p {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  html body .no-support-page .no-support-process-card a {
    margin-top: 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
  }

  html body .no-support-page .no-support-accordion {
    margin-top: 22px !important;
  }

  html body .no-support-page .no-support-accordion details {
    margin-bottom: 10px !important;
  }

  html body .no-support-page .no-support-accordion summary {
    padding: 18px 18px !important;
  }

  html body .no-support-page .no-support-accordion-title {
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  html body .no-support-page .no-support-accordion-subtitle {
    margin-top: 5px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  html body .no-support-page .no-support-accordion-content {
    padding: 0 18px 18px !important;
  }

  html body .no-support-page .no-support-accordion-content p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  html body .no-support-page .no-support-soft-block,
  html body .no-support-page .no-support-note-inner {
    padding: 22px 20px !important;
    background: #ffffff !important;
    border: 1px solid #dedede !important;
    border-left: 4px solid #111111 !important;
  }

  html body .no-support-page .no-support-soft-block h2,
  html body .no-support-page .no-support-note-inner h2 {
    margin-bottom: 12px !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  html body .no-support-page .no-support-soft-block p,
  html body .no-support-page .no-support-note-inner p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  html body .no-support-page .no-support-note {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  html body .no-support-page .no-support-cta {
    padding-top: 40px !important;
    padding-bottom: 44px !important;
  }

  html body .no-support-page .no-support-cta h2 {
    font-size: 28px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
  }

  html body .no-support-page .no-support-cta p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
}

/* Global support page extra-small mobile refinement */

@media (max-width: 420px) {
  html body .no-support-page .no-support-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  html body .no-support-page .no-support-hero h1 {
    font-size: 33px !important;
  }

  html body .no-support-page .no-support-grid-3,
  html body .no-support-page .no-support-category-grid,
  html body .no-support-page .no-support-process-grid {
    gap: 9px !important;
  }

  html body .no-support-page .no-support-card,
  html body .no-support-page .no-support-category-card,
  html body .no-support-page .no-support-process-card {
    padding: 15px 13px !important;
  }
}

/* Measurement page mobile compression */

@media (max-width: 760px) {
  html body .no-measurements-page .no-measurement-family-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 22px !important;
  }

  html body .no-measurements-page .no-measurement-family {
    padding: 22px 18px !important;
  }

  html body .no-measurements-page .no-measurement-family h3 {
    font-size: 24px !important;
  }

  html body .no-measurements-page .no-measurement-term-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 9px !important;
  }

  html body .no-measurements-page .no-measurement-term {
    min-height: auto !important;
    padding: 14px 12px !important;
  }

  html body .no-measurements-page .no-measurement-term strong {
    font-size: 13.5px !important;
  }

  html body .no-measurements-page .no-measurement-term span {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  html body .no-measurements-page .no-image-guide {
    padding: 18px !important;
  }
}

/* Shipping and returns mobile compression */

@media (max-width: 760px) {
  html body .no-shipping-page .no-shipping-glance,
  html body .no-returns-page .no-return-glance {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  html body .no-shipping-page .no-shipping-glance-card,
  html body .no-returns-page .no-return-glance-card {
    min-height: auto !important;
    padding: 17px 15px !important;
  }

  html body .no-shipping-page .no-shipping-glance-card:nth-child(3),
  html body .no-returns-page .no-return-glance-card:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  html body .no-shipping-page .no-shipping-glance-card::before,
  html body .no-returns-page .no-return-glance-card::before {
    margin-bottom: 18px !important;
  }

  html body .no-shipping-page .no-shipping-policy-grid,
  html body .no-returns-page .no-return-policy-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 22px !important;
  }

  html body .no-shipping-page .no-shipping-policy-card,
  html body .no-returns-page .no-return-policy-card {
    grid-template-columns: 44px 1fr !important;
    gap: 14px !important;
    padding: 20px 18px !important;
  }

  html body .no-shipping-page .no-shipping-policy-number,
  html body .no-returns-page .no-return-policy-number {
    width: 36px !important;
    height: 36px !important;
    font-size: 10px !important;
  }

  html body .no-shipping-page .no-shipping-policy-card h3,
  html body .no-returns-page .no-return-policy-card h3 {
    font-size: 17px !important;
  }

  html body .no-shipping-page .no-shipping-policy-card p,
  html body .no-returns-page .no-return-policy-card p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }
}

/* Contact and legal mobile compression */

@media (max-width: 760px) {
  html body .no-contact-page .no-contact-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 22px !important;
  }

  html body .no-contact-page .no-contact-form {
    padding: 20px 18px !important;
  }

  html body .no-contact-page .no-contact-field {
    margin-bottom: 14px !important;
  }

  html body .no-contact-page .no-contact-field input,
  html body .no-contact-page .no-contact-field textarea {
    padding: 12px 13px !important;
    font-size: 14px !important;
  }

  html body .no-contact-page .no-contact-field textarea {
    min-height: 140px !important;
  }

  html body .no-contact-page .no-contact-side {
    gap: 10px !important;
  }

  html body .no-contact-page .no-contact-link-list {
    gap: 8px !important;
  }

  html body .no-contact-page .no-contact-link-list a {
    padding: 12px 14px !important;
    font-size: 13.5px !important;
  }

  html body .no-legal-page .no-legal-content,
  html body .no-privacy-page .no-legal-content,
  html body .no-terms-page .no-legal-content {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  html body .no-legal-page .no-legal-content h2,
  html body .no-privacy-page .no-legal-content h2,
  html body .no-terms-page .no-legal-content h2 {
    margin-top: 30px !important;
    margin-bottom: 10px !important;
    font-size: 22px !important;
  }
}
/* Condition + Measurement mobile refinements */

@media (max-width: 760px) {

  /* CONDITION GUIDE: reduce long vertical accordion sections */

  html body .no-condition-page .no-support-section,
  html body .no-condition-guide-page .no-support-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  html body .no-condition-page .no-info-grid,
  html body .no-condition-guide-page .no-info-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  html body .no-condition-page .no-info-block,
  html body .no-condition-guide-page .no-info-block {
    padding: 16px 14px !important;
  }

  html body .no-condition-page .no-info-block h3,
  html body .no-condition-guide-page .no-info-block h3 {
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin-bottom: 7px !important;
  }

  html body .no-condition-page .no-info-block p,
  html body .no-condition-guide-page .no-info-block p {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  html body .no-condition-page .no-grade-label,
  html body .no-condition-guide-page .no-grade-label {
    display: inline-block !important;
    margin-bottom: 18px !important;
    padding: 8px 10px !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.1em !important;
  }

  html body .no-condition-page .no-support-accordion,
  html body .no-condition-guide-page .no-support-accordion {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  html body .no-condition-page .no-support-accordion details,
  html body .no-condition-guide-page .no-support-accordion details {
    margin: 0 !important;
  }

  html body .no-condition-page .no-support-accordion summary,
  html body .no-condition-guide-page .no-support-accordion summary {
    min-height: 92px !important;
    padding: 15px 14px !important;
    align-items: flex-start !important;
  }

  html body .no-condition-page .no-support-accordion-title,
  html body .no-condition-guide-page .no-support-accordion-title {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  html body .no-condition-page .no-support-accordion-subtitle,
  html body .no-condition-guide-page .no-support-accordion-subtitle {
    font-size: 10.5px !important;
    line-height: 1.35 !important;
  }

  html body .no-condition-page .no-support-accordion-content,
  html body .no-condition-guide-page .no-support-accordion-content {
    padding: 0 14px 15px !important;
  }

  html body .no-condition-page .no-support-accordion details[open],
  html body .no-condition-guide-page .no-support-accordion details[open] {
    grid-column: 1 / -1 !important;
  }

  html body .no-condition-page .no-support-accordion details[open] summary,
  html body .no-condition-guide-page .no-support-accordion details[open] summary {
    min-height: auto !important;
  }


  /* MEASUREMENT GUIDE: remove ugly nested mini-box look */

  html body .no-measurements-page .no-measurement-family-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 20px !important;
  }

  html body .no-measurements-page .no-measurement-family {
    padding: 20px 18px !important;
    border: 1px solid #dedede !important;
    background: #ffffff !important;
  }

  html body .no-measurements-page .no-measurement-family-kicker {
    margin-bottom: 10px !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
  }

  html body .no-measurements-page .no-measurement-family h3 {
    margin-bottom: 10px !important;
    font-size: 22px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
  }

  html body .no-measurements-page .no-measurement-family > p {
    margin-bottom: 12px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  html body .no-measurements-page .no-measurement-term-grid {
    display: block !important;
  }

  html body .no-measurements-page .no-measurement-term {
    display: grid !important;
    grid-template-columns: 92px 1fr !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 11px 0 !important;
    border: 0 !important;
    border-top: 1px solid #eeeeee !important;
    background: transparent !important;
  }

  html body .no-measurements-page .no-measurement-term:first-child {
    border-top: 0 !important;
  }

  html body .no-measurements-page .no-measurement-term strong {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  html body .no-measurements-page .no-measurement-term span {
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: #444444 !important;
  }


  /* MEASUREMENT TABLES: user-initiated horizontal scroll */

  html body .no-measurements-page .no-table-wrap {
    position: relative !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    border: 1px solid #dedede !important;
    background: #ffffff !important;
    scroll-snap-type: x proximity !important;
  }

  html body .no-measurements-page .no-table-wrap::before {
    content: "Swipe table sideways" !important;
    display: block !important;
    position: sticky !important;
    left: 0 !important;
    z-index: 5 !important;
    padding: 11px 13px !important;
    border-bottom: 1px solid #eeeeee !important;
    background: #ffffff !important;
    color: #555555 !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
  }

  html body .no-measurements-page .no-table-wrap::after {
    content: "" !important;
    position: sticky !important;
    right: 0 !important;
    top: 0 !important;
    display: block !important;
    width: 36px !important;
    height: 1px !important;
    float: right !important;
    pointer-events: none !important;
  }

  html body .no-measurements-page .no-support-table {
    width: max-content !important;
    min-width: 760px !important;
    border-collapse: collapse !important;
  }

  html body .no-measurements-page .no-support-table th,
  html body .no-measurements-page .no-support-table td {
    min-width: 118px !important;
    padding: 14px 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  html body .no-measurements-page .no-support-table th:first-child,
  html body .no-measurements-page .no-support-table td:first-child {
    position: sticky !important;
    left: 0 !important;
    z-index: 4 !important;
    min-width: 132px !important;
  }

  html body .no-measurements-page .no-support-table th:first-child {
    background: #111111 !important;
    color: #ffffff !important;
  }

  html body .no-measurements-page .no-support-table td:first-child {
    background: #ffffff !important;
    color: #111111 !important;
    font-weight: 700 !important;
    box-shadow: 1px 0 0 #e5e5e5 !important;
  }
}

@media (max-width: 420px) {
  html body .no-measurements-page .no-measurement-term {
    grid-template-columns: 84px 1fr !important;
    gap: 10px !important;
  }

  html body .no-condition-page .no-support-accordion summary,
  html body .no-condition-guide-page .no-support-accordion summary {
    min-height: 86px !important;
  }
}
/* Measurement Guide mobile table scroll final override */

@media (max-width: 760px) {
  html body .no-measurements-page .no-table-wrap {
    display: block !important;
    width: 100% !important;
    max-width: calc(100vw - 44px) !important;
    margin: 14px 0 26px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    border: 1px solid #dedede !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  html body .no-measurements-page .no-table-wrap::before {
    content: "Swipe sideways to view full table" !important;
    display: block !important;
    width: 100% !important;
    min-width: 720px !important;
    padding: 11px 14px !important;
    border-bottom: 1px solid #eeeeee !important;
    background: #ffffff !important;
    color: #555555 !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
  }

  html body .no-measurements-page .no-support-table {
    display: table !important;
    width: 760px !important;
    min-width: 760px !important;
    max-width: none !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    margin: 0 !important;
  }

  html body .no-measurements-page .no-support-table thead,
  html body .no-measurements-page .no-support-table tbody,
  html body .no-measurements-page .no-support-table tr {
    display: table-row-group !important;
  }

  html body .no-measurements-page .no-support-table tr {
    display: table-row !important;
  }

  html body .no-measurements-page .no-support-table th,
  html body .no-measurements-page .no-support-table td {
    display: table-cell !important;
    width: 120px !important;
    min-width: 120px !important;
    padding: 14px 10px !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  html body .no-measurements-page .no-support-table th:first-child,
  html body .no-measurements-page .no-support-table td:first-child {
    position: sticky !important;
    left: 0 !important;
    z-index: 3 !important;
    width: 138px !important;
    min-width: 138px !important;
  }

  html body .no-measurements-page .no-support-table th:first-child {
    background: #111111 !important;
    color: #ffffff !important;
  }

  html body .no-measurements-page .no-support-table td:first-child {
    background: #ffffff !important;
    color: #111111 !important;
    font-weight: 700 !important;
    box-shadow: 1px 0 0 #e5e5e5 !important;
  }

  html body .no-measurements-page .no-support-table tbody tr:nth-child(even) td:first-child {
    background: #fafafa !important;
  }
}

@media (max-width: 420px) {
  html body .no-measurements-page .no-table-wrap {
    max-width: calc(100vw - 36px) !important;
  }
}