.custom-link {
  text-decoration: none;
  position: relative;
}

.custom-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: rgb(58, 158, 216);
  transition: width 0.3s ease;
}

.custom-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .tabdatacontainer table tr {
    display: block;
    margin-bottom: 1em;
  }

  .tabdatacontainer table td {
    display: block;
    width: 100% !important;
  }

  .tabdatacontainer table td:first-child {
    font-weight: bold;
  }
}

.africa-container {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  padding: 20px 12px 40px;
  border-radius: 4px 4px 8px 8px;
  position: relative;
}

.africa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 32px;
  padding: 5px;
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.africa-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: transparent;
}

.africa-column h3 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 15px;
}

.africa-column h3.highlight {
  color: #6f641b;
}

.africa-column ul {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-weight: 400;
  font-size: 12px;
  color: #3f3d1c;
  list-style-type: none;
  padding-left: 0;        
  margin: 0;
}

.africa-column ul li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;     
  gap: 8px;
  text-decoration:none;                  
}

.africa-img-wrapper {
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.12);
}

.africa-img-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 150px;
  border-radius: 8px;
  transition: none;
}



.africa-summary {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.3;
}


.africa-summary strong {
  display: block;
  margin-bottom: 4px;
  color: #333;
}

.africa-summary ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  margin-top: 8px;	
}
.africa-summary ul li a {
  text-decoration: none;
  color: inherit;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .africa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .africa-grid {
    grid-template-columns: 1fr;
  }

  .africa-highlight-left,
  .africa-highlight-right {
    display: none;
  }
}

.small-screen {
  display: none;
}

@media (max-width: 768px) {
  .large-screen {
    display: none;
  }

  .small-screen {
    display: table-row;
  }

  /* Hide Dauer and Flug ONLY in large-screen rows on mobile */
  .table tbody tr.large-screen td:nth-child(3), 
  .table tbody tr.large-screen td:nth-child(4) {
    display: none;
  }

  /* Ensure all td in .small-screen rows are shown */
  .table tbody tr.small-screen td {
    display: table-cell !important;
  }
}
