* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 20%;
}

body {
  font-family:
    "SRG SSR Type Text",
    "Source Sans Pro",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #1a1a1a;
  background: #fff;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.15s ease;
}

a[href]:hover {
  color: #af001d;
  text-decoration: underline;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

.skiplink {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skiplink:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: #af001d;
  color: #fff;
  z-index: 9999;
}

.srf-header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 100;
}

.srf-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.srf-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.srf-logo:hover {
  text-decoration: none;
}

.srf-nav-rubriken {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
}

.srf-header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.srf-search-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
}

.srf-search-icon svg {
  width: 22px;
  height: 22px;
  fill: #1a1a1a;
}

.srf-menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
}

.srf-menu-btn svg {
  width: 22px;
  height: 22px;
  fill: #1a1a1a;
}

@media (max-width: 768px) {
  .srf-header-inner {
    height: 56px;
    padding: 0 16px;
    gap: 16px;
  }
}

.srf-subnav {
  background: #f5f5f5;
  border-bottom: 1px solid #e6e6e6;
}

.srf-subnav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  min-height: 48px;
  height: max-content;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.srf-subnav-inner::-webkit-scrollbar {
  display: none;
}

.srf-subnav-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid #d0d0d0;
}

.srf-subnav-links {
  display: flex;
  overflow-x: scroll;
  gap: 22px;
  span {
    min-width: fit-content;
  }
}
.srf-subnav-links::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1330px) {
  .srf-subnav-links {
    overflow-x: scroll;
  }
}
@media (max-width: 768px) {
  .srf-subnav-inner {
    height: 44px;
    padding: 0 16px;
  }
}

.srf-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.srf-breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: #6d6d6d;
  max-width: 740px;
}

.srf-breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.srf-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.srf-breadcrumb li:not(:last-child)::after {
  content: "›";
  color: #b0b0b0;
  margin-left: 8px;
}

.srf-article {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 0 60px;
}

/* HEADLINE */
.srf-article-header {
  margin: 24px 0 20px;
}

.srf-article-headline {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin: 0;
}

.srf-article-headline .kicker {
  display: inline;
  font-weight: 800;
}

.srf-article-headline .kicker::after {
  content: " – ";
}

@media (max-width: 600px) {
  .srf-article-headline {
    font-size: 27px;
  }
}

/* AUTHOR + DATE */
.srf-article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
  color: #4a4a4a;
}

.srf-article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.srf-article-author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.srf-article-author-text {
  display: flex;
  flex-direction: column;
}

.srf-article-author-label {
  font-size: 12px;
  color: #6d6d6d;
}

.srf-article-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.srf-article-author-title {
  font-size: 12px;
  color: #6d6d6d;
  margin-top: 1px;
}

.srf-article-date {
  margin-left: auto;
  color: #6d6d6d;
}

/* SHARE BAR */
.srf-share {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 0 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e6e6e6;
  flex-wrap: wrap;
}

.srf-share-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-right: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.srf-share-label svg {
  width: 18px;
  height: 18px;
  fill: #1a1a1a;
}

.srf-share-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.srf-share-btn:hover {
  background: #af001d;
  border-color: #af001d;
  text-decoration: none;
}

.srf-share-btn svg {
  width: 17px;
  height: 17px;
  fill: #1a1a1a;
  transition: fill 0.15s ease;
}

.srf-share-btn:hover svg {
  fill: #fff;
}

/* LEAD BULLETS */
.srf-lead {
  margin: 0 0 28px;
  padding: 0;
}

.srf-lead ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.srf-lead li {
  position: relative;
  padding-left: 22px;
  margin: 14px 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a1a;
}

.srf-lead li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
}

@media (max-width: 600px) {
  .srf-lead li {
    font-size: 17px;
  }
}

/* ARTICLE BODY */
.srf-article-body p {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.srf-article-body strong {
  font-weight: 800;
}

.srf-article-body a {
  color: #af001d;
  text-decoration: underline;
}

.srf-article-body h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin: 40px 0 16px;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

@media (max-width: 600px) {
  .srf-article-body p {
    font-size: 17px;
  }
  .srf-article-body h2 {
    font-size: 22px;
  }
}

/* DIALOGUE */
.srf-dialogue {
  margin: 16px 0 22px;
}

.srf-dialogue p {
  margin: 12px 0;
}

.srf-speaker {
  font-weight: 800;
  color: #1a1a1a;
}

/* FIGURE / IMAGES */
.srf-figure {
  margin: 32px 0;
}

.srf-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.srf-figcaption {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
  margin-top: 12px;
  padding: 8px 0 8px 14px;
  border-left: 3px solid #af001d;
  background: #fafafa;
}

.srf-figcaption .legende-label {
  font-weight: 800;
  color: #1a1a1a;
}

/* BLOCKQUOTE — реальный стиль SRF */
.srf-quote {
  margin: 32px 0;
  padding: 24px 28px 24px 28px;
  background: #f5f5f5;
  border-left: 4px solid #af001d;
  position: relative;
}

.srf-quote::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 60px;
  font-weight: 900;
  color: #af001d;
  line-height: 1;
  font-family: Georgia, serif;
}

.srf-quote-text {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px;
  padding-left: 36px;
  font-style: italic;
}

.srf-quote-author {
  display: flex;
  flex-direction: column;
  padding-left: 36px;
  font-size: 14px;
}

.srf-quote-author-label {
  color: #6d6d6d;
  font-weight: 600;
}

.srf-quote-author-name {
  color: #1a1a1a;
  font-weight: 800;
}

.srf-quote-author-title {
  color: #6d6d6d;
  font-style: italic;
}

@media (max-width: 600px) {
  .srf-quote {
    padding: 18px 20px;
  }
  .srf-quote::before {
    font-size: 44px;
    top: 4px;
    left: 12px;
  }
  .srf-quote-text {
    font-size: 18px;
    padding-left: 24px;
  }
  .srf-quote-author {
    padding-left: 24px;
  }
}

/* INFO BOX (UBS Stellungnahme) */
.srf-info-box {
  background: #f5f5f5;
  border-left: 4px solid #1a1a1a;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: #1a1a1a;
}

.srf-info-box-label {
  display: block;
  font-style: normal;
  font-weight: 800;
  color: #1a1a1a;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* BOX AUFKLAPPEN — раскрывающаяся секция SRF */

/* EXPERT BOX — мелкий аватар + цитата */
.srf-expert {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f5f5f5;
  padding: 20px 22px;
  border-left: 4px solid #af001d;
  margin: 22px 0;
}

.srf-expert-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: #d0d0d0;
}

.srf-expert-body {
  flex: 1;
  min-width: 0;
}

.srf-expert-name {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  color: #1a1a1a;
}

.srf-expert-title {
  font-size: 13px;
  color: #6d6d6d;
  font-style: italic;
  margin: 2px 0 10px;
}

.srf-expert-quote {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #1a1a1a;
}

@media (max-width: 600px) {
  .srf-expert {
    flex-direction: column;
    padding: 18px;
  }
  .srf-expert-avatar {
    width: 64px;
    height: 64px;
  }
}

/* CTA SECTION + REGISTRATION STEPS */
.srf-cta {
  background: #f5f5f5;
  border-top: 4px solid #af001d;
  padding: 28px;
  margin: 36px 0;
}

.srf-cta h2 {
  margin-top: 0 !important;
  font-size: 24px;
}

.srf-cta-warning {
  background: #fff8d6;
  border-left: 4px solid #af001d;
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
}

.srf-cta-warning strong {
  color: #af001d;
  font-weight: 800;
}

/* ARTICLE SOURCE LINE */
.srf-article-source {
  font-size: 13px;
  color: #6d6d6d;
  margin: 32px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid #e6e6e6;
}

/* MEHR ZUM THEMA */
.srf-mehr-zum-thema {
  margin: 48px 0 36px;
  padding-top: 28px;
  border-top: 2px solid #1a1a1a;
}

.srf-mehr-zum-thema h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 22px;
  color: #1a1a1a;
}

.srf-mehr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.srf-mehr-card {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 14px;
}

.srf-mehr-card:hover {
  text-decoration: none;
}

.srf-mehr-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e0e0e0;
  margin-bottom: 12px;
}

.srf-mehr-card-kicker {
  font-size: 12px;
  font-weight: 700;
  color: #af001d;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 6px;
}

.srf-mehr-card-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
}

.srf-mehr-card:hover .srf-mehr-card-title {
  color: #af001d;
}

@media (max-width: 768px) {
  .srf-mehr-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.srf-meistgelesen {
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.srf-meistgelesen h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 18px;
  color: #1a1a1a;
}

.srf-meistgelesen-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.srf-meistgelesen-item {
  flex: 0 0 280px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 12px;
}

.srf-meistgelesen-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e0e0e0;
  margin-bottom: 10px;
}

.srf-meistgelesen-item .kicker {
  font-size: 11px;
  font-weight: 700;
  color: #af001d;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 4px;
}

.srf-meistgelesen-item h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
}

.srf-comments {
  margin: 40px 0;
  padding-top: 28px;
  border-top: 2px solid #1a1a1a;
}

.srf-comments-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.srf-comments h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.srf-comments-count {
  font-size: 14px;
  color: #6d6d6d;
}

.srf-comment {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
}

.srf-comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6d6d6d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.srf-comment-avatar-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e5e5;
}

.srf-comment-body {
  flex: 1;
  min-width: 0;
}

.srf-comment-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.srf-comment-author {
  font-weight: 800;
  font-size: 15px;
  color: #1a1a1a;
}

.srf-comment-time {
  font-size: 13px;
  color: #6d6d6d;
}

.srf-comment-text {
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.srf-comment-text strong {
  background: #fff8d6;
  padding: 2px 6px;
  font-weight: 800;
  color: #af001d;
}

.srf-comment-screenshot {
  margin: 10px 0;
  max-width: 380px;
  width: 100%;
  border: 1px solid #e0e0e0;
}

.srf-comment-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: #6d6d6d;
}

.srf-comment-likes {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: #af001d;
}

.srf-comment-action {
  color: #6d6d6d;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 13px;
}

.srf-comment-action:hover {
  color: #af001d;
}

.srf-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 50px 0 30px;
  margin-top: 60px;
}

.srf-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.srf-footer-logo {
  margin-bottom: 30px;
}

.srf-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.srf-footer-col h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444;
}

.srf-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.srf-footer-col li {
  margin: 10px 0;
}

.srf-footer-radio {
  margin: 30px 0;
  padding: 24px 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

.srf-footer-radio-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #aaa;
  margin: 0 0 16px;
}

.srf-footer-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.srf-footer-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d0d0d0;
  font-size: 13px;
  font-weight: 600;
}

.srf-footer-radio-item:hover {
  color: #fff;
  text-decoration: none;
}

.srf-footer-radio-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #fff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.srf-footer-srgssr {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #444;
  flex-wrap: wrap;
}

.srf-footer-srgssr-logo {
  width: 70px;
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.srf-footer-srgssr-text {
  font-size: 12px;
  color: #aaa;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.srf-footer-partners {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.srf-footer-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #444;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

@media (max-width: 900px) {
  .srf-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .srf-footer {
    padding: 36px 0 24px;
  }
  .srf-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

::selection {
  background: #af001d;
  color: #fff;
}

@media (max-width: 800px) {
  .srf-nav-rubriken {
    display: none;
  }
  .srf-header-inner {
    justify-content: space-between;
  }
}
