.native-product {
  background: #ffffff;
  color: #2b2b2b;
  font-family: "PT Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.55;
}

.native-product a {
  color: #2A82C9;
  text-decoration: none;
}
.native-product a:not([href^="tel:"]):not([href^="mailto:"]):not(.native-product__related-item):hover,
.native-product a:not([href^="tel:"]):not([href^="mailto:"]):not(.native-product__related-item):focus-visible {
  text-decoration: underline;
}

.native-product .native-product__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 52px;
}

/* CSS-003d: Zurück-Button — CTA-Back-Tokens aus native-base.css (--hit-cta-back-*) */
.native-product .native-product__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 18px;
  padding: var(--hit-cta-back-padding-block) var(--hit-cta-back-padding-inline);
  border: none;
  border-radius: var(--hit-cta-back-radius);
  box-sizing: border-box;
  background-color: var(--hit-cta-back-bg);
  background-image: none;
  color: var(--hit-cta-back-fg) !important;
  font-family: "PT Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: var(--hit-cta-back-font-size);
  line-height: var(--hit-cta-back-line-height);
  font-weight: var(--hit-cta-back-font-weight);
  text-decoration: none !important;
  text-shadow: none;
  cursor: pointer;
  transition: var(--hit-cta-transition);
}

.native-product .native-product__back:visited {
  color: var(--hit-cta-back-fg) !important;
  background-color: var(--hit-cta-back-bg);
}

.native-product .native-product__back:hover,
.native-product .native-product__back:focus-visible {
  background-color: var(--hit-cta-back-hover-bg);
  color: var(--hit-cta-back-fg) !important;
  text-decoration: none !important;
}

.native-product .native-product__back:active {
  background-color: var(--hit-cta-back-active-bg);
  color: var(--hit-cta-back-fg) !important;
}

.native-product .native-product__back:focus-visible {
  outline: var(--hit-cta-focus-outline-on-light);
  outline-offset: var(--hit-cta-focus-offset-on-light);
  background-color: var(--hit-cta-back-hover-bg);
}

.native-product .native-product__title {
  margin: 0 0 14px;
  color: #2A82C9;
  font-family: "PT Sans Narrow", "PT Sans", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  font-size: 34px;
}

.native-product .native-product__intro p {
  margin: 0 0 10px;
}
.native-product .native-product__intro ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.native-product .native-product__intro li {
  margin: 6px 0;
}

.native-product .native-product__media {
  margin: 18px 0 0;
}
.native-product .native-product__media img {
  display: block;
  max-width: 100%;
  height: auto;
}
.native-product .native-product__media--wide {
  margin-top: 14px;
}

/* Optional: kleinere, zentrierte Hero-/Intro-Grafik (Pilot Meraki; wiederverwendbar) */
.native-product .native-product__media--compact {
  margin-top: 22px;
  margin-bottom: 2px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: fit-content;
}
.native-product .native-product__media--compact img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .native-product .native-product__media--compact {
    max-width: min(50%, 500px);
  }
}

.native-product .native-product__hero:has(.native-product__media--compact) + .native-product__divider {
  margin-top: 28px;
}

.native-product .native-product__divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  margin: 26px 0;
}

.native-product .native-product__h {
  margin: 0 0 14px;
  color: #2A82C9;
  font-family: "PT Sans Narrow", "PT Sans", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: 28px;
}

.native-product .native-product__section,
.native-product .native-product__cta,
.native-product .native-product__contact {
  margin: 0 0 28px;
}

/* FAQ / Accordion (native <details>, z. B. Teams-Telefonie) */
.native-product .native-product__section--faq {
  margin-bottom: 40px;
}

.native-product .native-product__faq {
  margin-top: 6px;
}

.native-product .native-product__faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.native-product .native-product__faq-item:last-child {
  border-bottom: 0;
}

.native-product .native-product__faq-summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
  font-family: "PT Sans Narrow", "PT Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #2A82C9;
  cursor: pointer;
  list-style: none;
}

.native-product .native-product__faq-summary::-webkit-details-marker {
  display: none;
}

.native-product .native-product__faq-summary::before {
  content: "+";
  flex-shrink: 0;
  width: 1.1em;
  font-weight: 700;
  line-height: 1.2;
  color: #2A82C9;
}

.native-product .native-product__faq-item[open] > .native-product__faq-summary::before {
  content: "−";
}

.native-product .native-product__faq-item:not([open]) > .native-product__faq-body {
  display: none;
}

.native-product .native-product__faq-item[open] > .native-product__faq-body {
  display: block;
}

.native-product .native-product__faq-body {
  padding: 0 0 16px 1.6em;
}

.native-product .native-product__faq-body > :last-child {
  margin-bottom: 0;
}

.native-product .native-product__faq-body p {
  margin: 0 0 10px;
}

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

.native-product .native-product__related a.native-product__related-item,
.native-product .native-product__related a.native-product__related-item:link,
.native-product .native-product__related a.native-product__related-item:visited,
.native-product .native-product__related a.native-product__related-item:hover,
.native-product .native-product__related a.native-product__related-item:focus,
.native-product .native-product__related a.native-product__related-item:focus-visible {
  text-decoration: none !important;
}

.native-product .native-product__related-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;
  padding: 16px 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 6px;
  background: #f7f7f7;
  color: inherit;
  text-decoration: none !important;
  transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}
.native-product .native-product__related-item img {
  flex: 0 0 auto;
  max-width: 92px;
  height: auto;
}
.native-product .native-product__related-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  color: #222222;
  text-decoration: none !important;
  transition: color 120ms ease;
}
.native-product .native-product__related a.native-product__related-item:hover *,
.native-product .native-product__related a.native-product__related-item:focus *,
.native-product .native-product__related a.native-product__related-item:focus-visible * {
  text-decoration: none !important;
}
.native-product .native-product__related-item:hover,
.native-product .native-product__related-item:focus,
.native-product .native-product__related-item:focus-visible {
  background: #ffffff;
  border-color: rgba(42, 130, 201, 0.55);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-decoration: none !important;
}
.native-product .native-product__related-item:focus-visible {
  outline: 2px solid #0082cb;
  outline-offset: 2px;
}
.native-product .native-product__related-item:hover .native-product__related-title,
.native-product .native-product__related-item:focus .native-product__related-title,
.native-product .native-product__related-item:focus-visible .native-product__related-title {
  color: #0082cb;
  text-decoration: none !important;
}
.native-product .native-product__related-item:hover::after,
.native-product .native-product__related-item:focus::after,
.native-product .native-product__related-item:focus-visible::after,
.native-product .native-product__related-item::after {
  content: none;
}
.native-product .native-product__related-item--active {
  border-color: rgba(42, 130, 201, 0.65);
  box-shadow: 0 0 0 2px rgba(42, 130, 201, 0.18);
}

/* VQA-007: Marketing-Kontakt — an Referenz-Classic contact-rows angeglichen */
.native-product .native-product__contact-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-family: "PT Sans", sans-serif;
  font-size: 19px;
  line-height: 1.7;
}
.native-product .native-product__contact-list li {
  margin: 0;
  font-weight: 400;
}
.native-product .native-product__contact-list a {
  display: inline;
  color: #2a82c9;
  font-weight: inherit;
}

.native-product .native-product__contact-list a[href^="tel:"],
.native-product .native-product__contact-list a[href^="mailto:"],
.native-product .native-product__contact-list a[href^="tel:"]:visited,
.native-product .native-product__contact-list a[href^="mailto:"]:visited,
.native-product .native-product__contact-list a[href^="tel:"]:hover,
.native-product .native-product__contact-list a[href^="tel:"]:focus,
.native-product .native-product__contact-list a[href^="tel:"]:focus-visible,
.native-product .native-product__contact-list a[href^="tel:"]:active,
.native-product .native-product__contact-list a[href^="mailto:"]:hover,
.native-product .native-product__contact-list a[href^="mailto:"]:focus,
.native-product .native-product__contact-list a[href^="mailto:"]:focus-visible,
.native-product .native-product__contact-list a[href^="mailto:"]:active {
  color: #2a82c9;
  font-weight: inherit;
  text-decoration: none;
  border-bottom: none;
  outline: none;
  outline-offset: 0;
  box-shadow: none;
}

.native-product .native-product__table-wrap {
  margin-top: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 6px;
}

.native-product .native-product__table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 16px;
}

.native-product .native-product__table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: top;
}

.native-product .native-product__table tr.title td {
  background: #f7f7f7;
  font-weight: 700;
  border-bottom: 1px solid rgba(42, 130, 201, 0.35);
}

.native-product .native-product__table td.cell4 {
  text-align: right;
  white-space: nowrap;
}

@media (min-width: 721px) {
  .native-product .native-product__table td.cell1 {
    min-width: 12.5rem;
    max-width: 16rem;
  }
}

.native-product .native-product__table p {
  margin: 0;
}

.native-product .native-product__table .smalltext {
  font-weight: 600;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
}

/* Mehrere Tabellenblöcke in einem Abschnitt (z. B. Teams-Telefonie) */
.native-product .native-product__section--table-groups > h2.native-product__h {
  margin-bottom: 18px;
}

.native-product .native-product__section--table-groups > h3.native-product__h {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

.native-product .native-product__section--table-groups > h3.native-product__h + p {
  margin-top: 0;
  margin-bottom: 12px;
}

.native-product .native-product__media--teams-leistungen-gap {
  margin-top: 24px;
  margin-bottom: 36px;
}

.native-product .native-product__section--table-groups {
  margin-top: 4px;
}

.native-product .native-product__section--table-groups .native-product__table-wrap {
  margin-top: 12px;
  margin-bottom: 28px;
}

.native-product .native-product__section--table-groups > h3.native-product__h {
  margin-top: 8px;
}

.native-product .native-product__section--table-groups > h3#teams-lizenzen {
  margin-top: 0;
}

.native-product .native-product__section--table-groups > h3#teams-m365-basis + p {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .native-product .native-product__section--table-groups .native-product__table td {
    padding: 12px 14px;
  }
}

/* Mobile: Tabellen als Karten (nur mit --mobile-cards) */
@media (max-width: 720px) {
  .native-product .native-product__table-wrap:has(.native-product__table--mobile-cards) {
    overflow-x: visible;
    border: 0;
    background: transparent;
    border-radius: 0;
  }

  .native-product .native-product__table--mobile-cards {
    min-width: 0;
    width: 100%;
    font-size: 16px;
    display: block;
  }

  .native-product .native-product__table--mobile-cards tbody {
    display: block;
  }

  .native-product .native-product__table--mobile-cards > tbody > tr.title:first-child {
    display: none;
  }

  .native-product .native-product__table--mobile-cards tr.title td[colspan] {
    display: block;
    padding: 10px 12px;
    margin: 4px 0 8px;
    background: #e8f4fc;
    color: #2A82C9;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(42, 130, 201, 0.25);
    border-radius: 6px;
    border-bottom: 1px solid rgba(42, 130, 201, 0.25);
  }

  .native-product .native-product__table--mobile-cards tr.title td[colspan]::before {
    display: none;
  }

  .native-product .native-product__table--mobile-cards tr:not(.title) {
    display: block;
    margin: 0 0 12px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

  .native-product .native-product__table--mobile-cards tr:not(.title) td {
    display: block;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 12px;
    text-align: left;
    white-space: normal;
  }

  .native-product .native-product__table--mobile-cards tr:not(.title) td:last-child {
    border-bottom: 0;
  }

  .native-product .native-product__table--mobile-cards tr:not(.title) td.cell4 {
    text-align: left;
    font-weight: 600;
  }

  .native-product .native-product__table--mobile-cards tr:not(.title) td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.58);
    text-transform: none;
  }
}

@media (min-width: 980px) {
  .native-product .native-product__related {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .native-product .native-product__related-item {
    min-height: 148px;
  }
  .native-product .native-product__related-title {
    font-size: 15px;
  }
}

@media (min-width: 681px) and (max-width: 979px) {
  .native-product .native-product__related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .native-product .native-product__title {
    font-size: 28px;
  }
  .native-product .native-product__h {
    font-size: 24px;
  }
  .native-product .native-product__faq-summary {
    font-size: 18px;
    padding: 12px 0;
  }
  .native-product .native-product__faq-body {
    padding: 0 0 14px 1.25em;
  }
  .native-product .native-product__related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .native-product .native-product__related-item img {
    max-width: 84px;
  }
}

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

@media print {
  @page {
    size: A4;
    margin: 14mm;
  }
  .native-product {
    color: #111;
    background: #fff;
  }
  .native-product .native-product__inner {
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .native-product .native-product__back {
    display: none;
  }
  .native-product .native-product__related-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .native-product .native-product__media {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .native-product .native-product__table-wrap {
    overflow: visible;
    border: 0;
  }
  .native-product .native-product__table,
  .native-product .native-product__table--mobile-cards {
    min-width: 0;
    font-size: 12px;
    display: table;
  }
  .native-product .native-product__table--mobile-cards tbody {
    display: table-row-group;
  }
  .native-product .native-product__table--mobile-cards tr {
    display: table-row;
  }
  .native-product .native-product__table--mobile-cards td {
    display: table-cell;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .native-product .native-product__table--mobile-cards > tbody > tr.title:first-child {
    display: table-row;
  }
  .native-product .native-product__table--mobile-cards tr:not(.title) td[data-label]::before {
    display: none;
  }
  .native-product .native-product__table td {
    padding: 6px 8px;
  }
  .native-product a:not([href^="tel:"]):not([href^="mailto:"]) {
    color: #111;
    text-decoration: underline;
  }
}

