/* =========================================================
   Activiteiten icoontjes — aoo-activiteiten
   assets/css/aoo/components/activiteiten.css
   ========================================================= */
.aoo-activiteiten {
  padding: 24px;
  padding-top: 52px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
  margin: 24px 0 8px;
}

.aoo-activiteiten__list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================================================
   Individueel item
   ========================================================= */
.aoo-activiteiten__item {
  position: relative;
}

.aoo-activiteiten__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-radius: 14px;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  min-width: 0;
  width: 100%;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.aoo-activiteiten__link:hover {
  background: #f5f0eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: #b03a2e;
}

/* =========================================================
   Icoon
   ========================================================= */
.aoo-activiteiten__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #f5f0eb;
  color: #b03a2e;
  transition: background 0.15s, color 0.15s;
}

.aoo-activiteiten__icon .ti {
  font-size: 32px;
}

.aoo-activiteiten__link:hover .aoo-activiteiten__icon {
  background: #b03a2e;
  color: #fff;
}

/* =========================================================
   Label
   ========================================================= */
.aoo-activiteiten__label {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: #444;
  letter-spacing: 0.01em;
}

.aoo-activiteiten__link:hover .aoo-activiteiten__label {
  color: #b03a2e;
}

/* =========================================================
   Podcast item
   ========================================================= */
.aoo-activiteiten__item--podcast .aoo-activiteiten__link {
  color: #b03a2e;
  border-color: #e8b4b0;
  background: #fdecea;
}

.aoo-activiteiten__item--podcast .aoo-activiteiten__link:hover {
  background: #f5f0eb;
}

.aoo-activiteiten__item--podcast .aoo-activiteiten__icon {
  background: #fff;
  border: 1px solid #e8b4b0;
  color: #b03a2e;
}

.aoo-activiteiten__item--podcast .aoo-activiteiten__link:hover .aoo-activiteiten__icon {
  background: #b03a2e;
  color: #fff;
}

.aoo-activiteiten__item--podcast .ti-microphone {
  animation: bounce-mic 1.8s ease infinite;
  display: inline-block;
}

@keyframes bounce-mic {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-5px); }
  50%       { transform: translateY(0); }
  65%       { transform: translateY(-3px); }
  80%       { transform: translateY(0); }
}

/* =========================================================
   "Nieuw!" label
   ========================================================= */
.aoo-activiteiten__nieuw {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-40%);
  pointer-events: none;
  white-space: nowrap;
}

/* =========================================================
   Mobiel
   ========================================================= */
@media (max-width: 640px) {
  .aoo-activiteiten {
    padding: 16px;
    padding-top: 16px;
    border-radius: 14px;
  }

  .aoo-activiteiten__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Podcast gewoon meedoen in het grid, niet meer full-width */
  .aoo-activiteiten__item--podcast {
    grid-column: auto;
    margin-bottom: 0;
  }

  .aoo-activiteiten__item--podcast .aoo-activiteiten__link {
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }

  .aoo-activiteiten__item--podcast .aoo-activiteiten__label {
    font-size: 0.75rem;
  }

  /* "Nieuw!" label aanpassen */
  .aoo-activiteiten__nieuw {
    top: -32px;
    left: 8px;
    right: auto;
    transform: none;
  }

  .aoo-activiteiten__link {
    padding: 14px 16px;
  }

  .aoo-activiteiten__icon {
    width: 48px;
    height: 48px;
  }

  .aoo-activiteiten__icon .ti {
    font-size: 26px;
  }

  .aoo-activiteiten__label {
    font-size: 0.75rem;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .aoo-activiteiten__list {
    flex-wrap: wrap;
  }

  .aoo-activiteiten__link {
    min-width: 0;
    padding: 16px 18px;
  }

  .aoo-activiteiten__icon {
    width: 52px;
    height: 52px;
  }

  .aoo-activiteiten__icon .ti {
    font-size: 28px;
  }

  .aoo-activiteiten__label {
    font-size: 0.78rem;
  }
}