/*Sponsoring*/
#section_1000151 table,
#section_1000156 table {
  border-collapse: separate !important;
  border-spacing: 20px !important;
}

#section_1000151 td,
#section_1000156 td {
  padding: 0;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

#section_1000151 td img,
#section_1000156 td img {
  display: block;
  width: 220px !important;
  height: 120px !important;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
  object-fit: contain;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

@media (max-width: 700px) {
  #section_1000151 table,
  #section_1000156 table {
    display: block !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100%;
  }

  #section_1000151 thead,
  #section_1000156 thead {
    display: none;
  }

  #section_1000151 tbody,
  #section_1000156 tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #section_1000151 tr,
  #section_1000156 tr {
    display: contents;
  }

  #section_1000151 td,
  #section_1000156 td {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
  }

  #section_1000151 td img,
  #section_1000156 td img {
    width: 160px !important;
    height: 96px !important;
    padding: 8px;
    box-sizing: border-box;
    display: block;
    object-fit: contain;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
  }
}

@media (max-width: 380px) {
  #section_1000151 tbody,
  #section_1000156 tbody {
    grid-template-columns: 1fr;
  }

  #section_1000151 td img,
  #section_1000156 td img {
    width: 180px !important;
    height: 108px !important;
  }
}

/*OK-Seite Boxen*/
.hover-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background-color: #f0f0f0;
}

.hover-box {
  position: relative;
  width: 250px;
  height: 150px;
  background-color: #D1B280;
  color: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hover-box .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  transition: opacity 0.4s ease;
}

.hover-box .role {
  font-weight: bold;
  font-size: 1.1em;
  margin: 0;
}

.hover-box .name {
  margin: 2px 0 0;
}

.hover-box .more {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.hover-box .more a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  margin: 3px 0;
  font-size: 12pt;
}

.hover-box .more a:hover {
  text-decoration: underline;
}

.hover-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hover-box:hover .content {
  opacity: 0;
}

.hover-box:hover .more {
  opacity: 1;
  transform: translateY(0);
}