/* ═══════════════════════════════════════════════
   Berners Bravoure – Gezondheid & Shows
   ═══════════════════════════════════════════════ */

/* ── BASIS ── */
.bb-sectie {
  width: 100%;
  padding: 0 0 48px;
}

.bb-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: 40px;
}

.bb-accent-bar {
  display: none;
}

.bb-section-title h2 {
  margin: 0;
  font-weight: 700;
  color: #1a2633;
}

/* ── GEZONDHEID ── */
.bb-health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.bb-health-card {
  background: #fff;
  border: 1.5px solid #e2f7f3;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(62, 207, 181, 0.07);
}

.bb-health-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8ba3a0;
  margin-bottom: 6px;
}

.bb-health-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1a2633;
}

.bb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecfb5;
  flex-shrink: 0;
  display: inline-block;
}

/* ── DESKTOP TABEL ── */
.bb-table-wrap {
  display: none;
  overflow-x: auto;
}

.bb-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.bb-table thead th {
  text-align: left;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8ba3a0;
}

.bb-table tbody tr {
  background: #fff;
}

.bb-table tbody td {
  padding: 12px 14px;
  border-top: 1.5px solid #f0f5f4;
  border-bottom: 1.5px solid #f0f5f4;
  font-size: 14px;
  color: #4a5568;
  vertical-align: middle;
}

.bb-table tbody td:first-child {
  border-left: 1.5px solid #f0f5f4;
  border-radius: 10px 0 0 10px;
  font-weight: 600;
  color: #1a2633;
}

.bb-table tbody td:last-child {
  border-right: 1.5px solid #f0f5f4;
  border-radius: 0 10px 10px 0;
}

.bb-td-naam {
  min-width: 200px;
}

/* ── MOBILE KAARTJES ── */
.bb-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bb-card {
  background: #fff;
  border: 1.5px solid #e8f3f1;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(62, 207, 181, 0.05);
}

.bb-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.bb-card-naam {
  font-size: 14px;
  font-weight: 700;
  color: #1a2633;
  line-height: 1.4;
}

.bb-card-medal {
  flex-shrink: 0;
}

.bb-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.bb-card-jury {
  margin-top: 8px;
  font-size: 12px;
  color: #6b8080;
}

/* ── BADGES ── */
.bb-datum {
  font-size: 12px;
  color: #8ba3a0;
}

.bb-type-badge {
  background: #e8f5f3;
  color: #2c8a75;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.bb-klasse-badge {
  background: #f5f7f9;
  color: #4a5568;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.bb-oordeel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.bb-oordeel::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.bb-oordeel--excellent          { background: #e8faf6; color: #1a9e7e; }
.bb-oordeel--excellent::before  { background: #2dd4a8; }

.bb-oordeel--very-good          { background: #e8faf6; color: #1a9e7e; }
.bb-oordeel--very-good::before  { background: #3ecfb5; }

.bb-oordeel--very-promising          { background: #e8f0ff; color: #3b5fd4; }
.bb-oordeel--very-promising::before  { background: #6b8ef5; }

.bb-plaats {
  text-align: center;
}

.bb-plaats-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9f5f3;
  color: #2c8a75;
  font-size: 13px;
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (min-width: 700px) {
  .bb-table-wrap { display: block; }
  .bb-cards      { display: none;  }
}

/* ═══════════════════════════════════════════════
   DIENSTEN GRID
   ═══════════════════════════════════════════════ */

.bb-diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.bb-dienst-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e8f3f1;
  box-shadow: 0 2px 12px rgba(62, 207, 181, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bb-dienst-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(62, 207, 181, 0.14);
}

.bb-dienst-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8f3f1;
}

.bb-dienst-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bb-dienst-card:hover .bb-dienst-img {
  transform: scale(1.04);
}

.bb-dienst-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bb-dienst-titel {
  margin: 0 0 10px;
  font-weight: 700;
  color: #1a2633;
  line-height: 1.3;
}

.bb-dienst-tekst {
  margin: 0 0 16px;
  line-height: 1.65;
  color: #4a5568;
  flex: 1;
}

.bb-dienst-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2aab95;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}

.bb-dienst-link::after {
  content: '→';
  transition: transform 0.2s;
}

.bb-dienst-link:hover::after {
  transform: translateX(4px);
}

/* ── RESPONSIVE DIENSTEN ── */
@media (max-width: 900px) {
  .bb-diensten-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .bb-diensten-grid {
    grid-template-columns: 1fr;
  }
}
