/* Aktuelles Boxes - Complete Styles */

/* Wrapper */
.ab-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Tabs - Rounded Design */
.ab-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
  justify-content: center;
}

.ab-tab {
  min-width: 187px;
  height: 38.21px;
  padding: 10px 20px;
  border: 2px solid #053D67;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  background: #ffffff;
  color: #053D67;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-tab:hover {
  border: 2px solid #053D67;
  background: #f0f8ff;
}

.ab-tab.active {
  background: #88d498;
  border-color: #88d498;
  color: #ffffff;
  font-weight: 600;
}

/* Links Container */
.ab-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Link Items - Accordion Design */
.ab-link-item {
  max-width: 1240px;
  width: 100%;
  min-height: 77px;
  background: #FFFFFF;
  border: 1px solid rgba(139, 197, 63, 1);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ab-link-item:hover {
  background: rgba(248, 255, 249, 1);
  box-shadow: 0 3px 6px rgba(0,0,0,0.06);
}

/* Header Section */
.ab-link-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  min-height: 77px;
}

.ab-link-title {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -1%;
  color: rgba(17, 42, 79, 1);
  flex: 1;
}

.ab-link-title a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: rgba(17, 42, 79, 1);
  transition: color 0.2s ease;
}

.ab-link-title a:hover {
  color: rgba(139, 197, 63, 1);
}

/* Content Section */
.ab-link-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ab-link-item.ab-open .ab-link-content {
  max-height: 1000px;
}

.ab-link-description {
  padding: 0 24px 24px 24px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17, 42, 79, 0.8);
}

.ab-link-description p {
  margin: 0 0 12px 0;
}

.ab-link-description p:last-child {
  margin-bottom: 0;
}

.ab-link-url {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .ab-tabs {
    gap: 0.75rem;
  }
  
  .ab-tab {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 680px) {
  .ab-wrap {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .ab-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ab-tab {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
  }

  .ab-link-header {
    padding: 16px 20px;
    min-height: 60px;
  }

  .ab-link-title {
    font-size: 16px;
  }

  .ab-link-description {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
}