.noedra-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  flex: 1;
}

.noedra-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1728px;
  margin: 0 auto;
}

.noedra-tab {
  flex: 1;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: none;
  border-bottom: 3px solid transparent !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  color: #111;
  background-color: #f4f4f5;
}

.noedra-content-inner {
  background: #f4f4f5;
  padding: 0 24px 24px;
  border-width: 3px;
  border-style: solid;
  margin-top: 3px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.noedra-tab img {
  height: 48px;
}

.noedra-tab-icon-mobile {
  display: none;
}

.noedra-tab span {
  display: block;
}

.noedra-tab p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}

.noedra-tabs-tab:hover,
.noedra-tabs-tab:focus {
  background-color: rgba(0, 0, 0, 0.85);
  border-bottom-color: var(--tab-border-color, #fff);
  text-decoration: none;
  color: #fff;
}

.noedra-tabs-label {
  white-space: nowrap;
}

/* Noedra Content */
.noedra-content {
  padding: 32px 0;
  max-width: 1728px;
  margin: 0 auto;
  color: #1a1a1a;
}

.noedra-content-header {
  margin-bottom: 32px;
}

.noedra-content-headline {
  font-size: 32px;
  font-weight: 700;
  margin-top: 0px;
  color: #111;
  padding-top: 24px;
  text-decoration: none;
}

.noedra-content-headline a {
  text-decoration: none;
  color: inherit;
}

.noedra-content-headline a:hover {
  opacity: 0.75;
  cursor: pointer;
}

.noedra-content-subtitle {
  font-size: 24px;
  color: #111;
  margin: 0;
}

.noedra-content-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.noedra-content-bottom-image {
  width: 100%;
  margin-top: 32px;
}

.noedra-content-bottom-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Noedra Card */
.noedra-card {
  flex: 1 1 calc((100% - 32px) / 3);
  min-width: calc((100% - 32px) / 3);
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
}

.noedra-card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  padding: 0 0 16px;
  color: #111;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: block;
}

.noedra-card-title:hover {
  opacity: 0.8;
}

.noedra-card-title:visited {
  color: #111;
}

.noedra-card-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.noedra-card-icon {
  width: auto;
  max-width: 256px;
  border-radius: 12px;
  object-fit: contain;
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  word-break: break-word;
  text-decoration: none;
  color: inherit;
}

.noedra-card-icon:hover {
  transform: translateY(-4px);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.noedra-card-icon img {
  border-radius: 8px;
  height: 80px;
}

@media (max-width: 768px) {
  .noedra-tab {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 12px 8px;
  }

  .noedra-tab-icon-desktop,
  .noedra-tab-text {
    display: none;
  }

  .noedra-tab-icon-mobile {
    display: block;
  }

  .noedra-tabs-nav {
    flex-direction: column;
  }

  .noedra-tabs-tab {
    padding: 12px 24px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .noedra-tabs-tab:hover,
  .noedra-tabs-tab:focus {
    border-left-color: var(--tab-border-color, #fff);
    border-bottom: none;
  }

  .noedra-content {
    padding: 24px 15px;
  }

  .noedra-content-subtitle {
    font-size: 16px;
    color: #1a1a1a;
  }

  .noedra-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

