.thema-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(to right, #17a7ba, rgba(23, 167, 186, 0.95), rgba(23, 167, 186, 0.85));
}
.thema-hero h1 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.thema-hero .subtitle {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
}
.thema-hero .discover-link {
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}
.thema-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px;
  max-width: 800px;
}
.discover-link {
  opacity: 0.8;
}
.scroll-arrow {
  margin-top: 16px;
  color: white;
  opacity: 0.8;
  animation: bounce 1.5s ease-in-out infinite;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll-arrow svg {
  display: block;
}
@keyframes bounce {
  0%,
  20%,
  90%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.thema-meta-bar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
  font-size: 0.85rem;
  color: #666;
}
.thema-meta-bar .meta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.thema-meta-bar .meta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.thema-meta-bar .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.thema-meta-bar .meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.thema-meta-bar .share-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  color: #666;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.thema-meta-bar .share-btn:hover {
  color: #008B8B;
}
.thema-meta-bar .likes {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
}
.thema-quick-nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.thema-quick-nav .nav-content {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.thema-quick-nav .nav-content::-webkit-scrollbar {
  display: none;
}
.thema-quick-nav .nav-item {
  padding: 14px 20px;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.thema-quick-nav .nav-item:hover {
  color: #008B8B;
  background: #f9f9f9;
}
.thema-quick-nav .nav-item.active {
  color: #008B8B;
  border-bottom-color: #008B8B;
  font-weight: 500;
}
.thema-section-header {
  border-radius: 6px;
  margin: 32px 0 20px 0;
  display: flex;
  align-items: center;
}
.thema-section-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 80px 0;
}
.thema-article-card {
  display: flex;
  gap: 16px;
  border: 0.5px solid #008B8B;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.thema-article-card:last-child {
  border-bottom: none;
}
.thema-article-card .card-image {
  flex-shrink: 0;
  width: 220px;
  align-self: stretch;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f5f5;
}
.thema-article-card .card-image a {
  display: block;
  height: 100%;
}
.thema-article-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thema-article-card .card-image .placeholder-image {
  width: 100%;
  height: 100%;
  min-height: 80px;
  background: linear-gradient(135deg, #e8f4f4 0%, #d0ebeb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thema-article-card .card-image .placeholder-image svg {
  width: 32px;
  height: 32px;
  color: #008B8B;
  opacity: 0.5;
}
.thema-article-card .card-content {
  flex: 1;
  min-width: 0;
  padding: 1rem;
}
.thema-article-card .card-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.thema-article-card .badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 3px;
  background: #e8f4f4;
  color: #008B8B;
  font-weight: 500;
}
.thema-article-card .card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
}
.thema-article-card .card-title a {
  color: inherit;
  text-decoration: none;
}
.thema-article-card .card-title a:hover {
  color: #008B8B;
}
.thema-article-card .card-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.thema-article-card .card-meta {
  font-size: 0.75rem;
  color: #999;
}
.card-badges {
  margin-top: 20px;
  justify-content: space-between;
}
.card-meta {
  margin-bottom: 0.8rem;
}
.thema-definition {
  border-radius: 8px;
  margin: 24px 0;
}
.thema-definition .def-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 1rem;
}
.thema-definition .def-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.thema-definition .def-header .toggle-icon {
  transition: transform 0.3s;
}
.thema-definition.expanded .def-header .toggle-icon {
  transform: rotate(180deg);
}
.thema-definition .def-content {
  padding-top: 16px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}
.def-content {
  padding: 20px 24px;
  background-color: #fffbeb;
  border-left: 4px solid #ecda93;
}
.thema-horizontal-section {
  margin: 20px 0;
}
.thema-horizontal-section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.thema-horizontal-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.thema-horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}
.thema-horizontal-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.thema-horizontal-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.thema-scroll-card {
  flex-shrink: 0;
  width: 180px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.thema-scroll-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.thema-scroll-card .scroll-card-image {
  height: 100px;
  background: #f5f5f5;
  overflow: hidden;
}
.thema-scroll-card .scroll-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thema-scroll-card .scroll-card-content {
  padding: 10px;
}
.thema-scroll-card .scroll-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.thema-scroll-card .scroll-card-title a {
  color: inherit;
  text-decoration: none;
}
.thema-promo-banner {
  background: linear-gradient(to right, #17a7ba, rgba(23, 167, 186, 0.95), rgba(23, 167, 186, 0.85));
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 70%;
  margin: auto;
  margin-top: 3rem;
}
.thema-promo-banner .promo-content {
  color: white;
}
.thema-promo-banner .promo-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.thema-promo-banner .promo-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}
.thema-promo-banner .promo-cta {
  color: #17a7ba;
  background-color: white;
  border-radius: 3rem;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.thema-promo-banner .promo-cta:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
.promo-anzeige {
  color: rgba(255, 255, 255, 0.7);
}
.promo-arrow {
  display: inline-flex;
  align-items: center;
}
.promo-arrow svg {
  display: block;
}
.thema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.thema-grid-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.thema-grid-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.thema-grid-card .grid-card-image {
  height: 120px;
  background: #f5f5f5;
  overflow: hidden;
}
.thema-grid-card .grid-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thema-grid-card .grid-card-content {
  padding: 12px;
}
.thema-grid-card .grid-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.thema-grid-card .grid-card-title a {
  color: inherit;
  text-decoration: none;
}
.thema-sub-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  background-color: rgba(243, 245, 247, 0.5);
}
.thema-sub-tabs .sub-tab {
  padding: 10px 16px;
  color: #666;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.thema-sub-tabs .sub-tab:hover {
  color: #008B8B;
}
.sub-tab {
  font-weight: 600;
  border-bottom: none;
}
.sub-tab.active {
  color: #008B8B;
  border-bottom: 2px solid #008B8B;
}
.subtab-content {
  display: none;
  margin-top: 20px;
}
.subtab-content.active {
  display: block;
}
.thema-simple-list {
  padding: 0;
  margin: 0;
  list-style: inside;
}
.thema-simple-list li {
  padding: 12px 0;
  gap: 16px;
}
.thema-simple-list li::marker {
  color: #17a7ba;
}
.thema-simple-list li:last-child {
  border-bottom: none;
}
.thema-simple-list li a {
  color: #1a1a1a;
  font-weight: 500;
  flex: 1;
}
.thema-simple-list li a:hover {
  color: #008B8B;
}
.thema-simple-list .list-date {
  color: #999;
  font-size: 0.85rem;
  white-space: nowrap;
}
.thema-three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
}
.thema-column {
  border-radius: 8px;
  padding: 16px;
}
.thema-column .column-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
}
.thema-column .thema-simple-list li {
  padding: 8px 0;
  flex-direction: column;
  gap: 4px;
}
.thema-column .thema-simple-list li a {
  font-size: 0.9rem;
}
.thema-column .thema-simple-list .list-date {
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .thema-three-columns {
    grid-template-columns: 1fr;
  }
}
.thema-faq {
  margin: 40px 0;
}
.thema-faq .faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.faq-list {
  border-top: 1px solid #e5e5e5;
}
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-item.expanded .faq-chevron {
  transform: rotate(180deg);
}
.faq-item.expanded .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  gap: 16px;
}
.faq-question span {
  flex: 1;
}
.faq-question-link a {
  text-decoration: none;
  flex: 1;
}
.faq-question-link a:hover {
  text-decoration: underline;
}
.faq-chevron {
  flex-shrink: 0;
  color: #999;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.themenseiten-links-box {
  margin: 40px 0;
}
.themenseiten-links-box h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 600;
}
.themenseiten-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.themenseiten-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: #e8fafc;
  color: #117a88;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 3rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e5e5e5;
}
.themenseiten-tag:hover {
  background-color: #008B8B;
  color: #ffffff !important;
  border-color: #008B8B;
}
.themenseiten-tag-hidden {
  display: none !important;
}
.btn-themenseiten-expand {
  display: block;
  margin-top: 20px;
  padding: 8px 20px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}
.btn-themenseiten-expand:hover {
  background-color: #e8e8e8;
  border-color: #ccc;
}
.sofortstart-section {
  margin: 32px 0;
}
.sofortstart-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}
.sofortstart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sofortstart-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.sofortstart-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
  color: inherit;
  text-decoration: none;
}
.sofortstart-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.sofortstart-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(23, 167, 186, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sofortstart-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}
.sofortstart-card-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex: 1;
}
.sofortstart-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sofortstart-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #444;
  font-weight: 400;
}
@media (max-width: 768px) {
  .sofortstart-grid {
    grid-template-columns: 1fr;
  }
}
.thema-bildwelt {
  margin-top: 32px;
  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 12px;
}
.bildwelt-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}
.bildwelt-icon {
  font-size: 1.2rem;
}
.bildwelt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bildwelt-card {
  display: block;
  aspect-ratio: 1;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bildwelt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.bildwelt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bildwelt-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}
.bildwelt-placeholder svg {
  width: 40px;
  height: 40px;
  color: #999;
}
@media (max-width: 992px) {
  .bildwelt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .bildwelt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.thema-seminarmarkt-box {
  margin: 40px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, #e8f6f8 0%, #d4eef2 100%);
  border-radius: 12px;
  border: 1px solid #c8e6eb;
}
.thema-seminarmarkt-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}
.thema-seminarmarkt-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin: 0 0 20px 0;
}
.seminarmarkt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #008B8B;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.2s;
}
.seminarmarkt-btn:hover {
  background-color: #007070;
  color: #ffffff;
  transform: translateY(-1px);
}
.seminarmarkt-btn svg {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .thema-hero {
    border-radius: 6px;
  }
  .thema-hero h1 {
    font-size: 1.5rem;
  }
  .thema-article-card {
    flex-direction: column;
  }
  .thema-article-card .card-image {
    width: 100%;
    height: 160px;
  }
  .thema-meta-bar .meta-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .thema-promo-banner {
    flex-direction: column;
    text-align: center;
  }
  .thema-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
