/* =========================================================================
   TV-Tarifrechner - nur das, was es allein hier gibt
   =========================================================================

   Die Optik des Rechners selbst (Filterband, Tabelle, Exportknoepfe ...)
   steht in ../../../public/extern-tarifrechner.css und wird mit dem
   Audio-Rechner geteilt. Hier bleiben die Begleittexte der Originalseite:
   Werbecode-Erklaerung und Ansprechpartner.
   ========================================================================= */

/* =========================================================================
   Begleittexte (Werbecode + Ansprechpartner)
   Standen intern in der Sidebar-Ansicht; auf der Kundenseite laufen sie
   unter dem Rechner mit - so wie auf der Originalseite auch.
   ========================================================================= */

.trv-main { display: flex; flex-direction: column; gap: 24px; }

.tariff-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.tariff-info-card {
  border-radius: 4px;
  padding: 2.5rem 3rem;
  line-height: 1.65;
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.1);
  font-size: 1.5rem;
}
.tariff-info-card h2 { margin: 0 0 1rem; font-size: 2rem; }
.tariff-info-card p { margin: 0 0 1rem; font-size: 1.5rem; }
.tariff-info-card img { max-width: 100%; height: auto; border-radius: 4px; background: #fff; padding: 6px; }
.tariff-info-card--code { background: #003366; color: #fff; }
.tariff-info-card--code h2 { color: #fff; }
.tariff-info-card--contact { background: #ffffff; color: #333; }
.tariff-info-card--contact h2 { color: #003366; }
.tariff-info-card--contact a { color: #1d4f91; }
.tariff-contact-org { font-size: 1.5rem; }

/* Zwei Klassen im Selektor, damit diese Regeln die Tabellenoptik des
   Seitenrahmens schlagen (body.ardm-page table td waere sonst spezifischer
   als .tariff-contact-table td). */
.tariff-info-card .tariff-contact-table { width: 100%; border-collapse: collapse; margin-bottom: 0; }
.tariff-info-card .tariff-contact-table th {
  background: transparent;
  text-align: left;
  color: #003366;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem 0.5rem 0;
  border-bottom: 2px solid #bedcfa;
}
.tariff-info-card .tariff-contact-table td {
  background: transparent;
  text-align: left;
  color: #333;
  font-size: 1.4rem;
  padding: 0.5rem 0.75rem 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

@media (max-width: 1100px) {
  .tariff-info-grid { grid-template-columns: 1fr; }
}
