/* =========================================================
   APOTHÉA — Bibliothèque activité
========================================================= */

.apothea-activity-library {
  --color-bg: #F2EAE0;
  --color-primary: #9B5241;
  --color-text: #3A3A3A;
  --color-muted: #8C8C8C;
  --color-border: rgba(0, 0, 0, 0.08);

  width: 100%;
}

/* ===== TOOLBAR ===== */

.apothea-activity-library-toolbar {
  background: var(--color-bg);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* ===== SEARCH ===== */

.apothea-activity-library-search {
  width: 100%;
  max-width: 1000px;
}

.apothea-activity-library-search-input {
  width: 100%;
  max-width: 1000px;
  height: 44px;
  padding: 0 24px;
  background: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.apothea-activity-library-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 82, 65, 0.12);
}

.apothea-activity-library-search-input::placeholder {
  color: var(--color-muted);
  opacity: 1;
  text-align: center;
}



/* ===== FILTRES CHECKBOX ===== */

.apothea-activity-library-filters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 1000px;
}

.apothea-activity-library-filter-group {
  width: 100%;
}

.apothea-activity-library-filter-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9B5241;
}

.apothea-activity-library-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.apothea-activity-library-filter-option {
  margin: 0;
  cursor: pointer;
}

.apothea-activity-library-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.apothea-activity-library-filter-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 3px 8px;
  background: #fff;
  min-height: 30px;
}

.apothea-activity-library-filter-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #3A3A3A;
}

.apothea-activity-library-filter-box {
  width: 15px;
  height: 15px;
  background: #D8D8D8;
  flex: 0 0 15px;
}

.apothea-activity-library-checkbox:checked + .apothea-activity-library-filter-label .apothea-activity-library-filter-text {
  color: #9B5241;
}

.apothea-activity-library-checkbox:checked + .apothea-activity-library-filter-label .apothea-activity-library-filter-box {
  background: #9B5241;
}


/* ===== RESET ===== */

.apothea-activity-library-reset {
  height: 36px;
  max-width: 200px;
  padding: 0 20px;
  background: transparent;
  border: 2px solid #9B5241;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #9B5241;
  transition: all 0.2s ease;
  cursor: pointer;
}

.apothea-activity-library-reset:hover {
  border: 2px solid #656B51;
  color: #656B51;
}

/* ===== META / COUNT ===== */

.apothea-activity-library-meta {
  margin-top: 24px;
}

.apothea-activity-library-count {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  text-align: center;
}

/* ===== LOAD MORE ===== */

.apothea-activity-library-load-more-wrap {
  margin-top: 32px;
  text-align: center;
}

.apothea-activity-library-load-more {
  min-height: 44px;
  padding: 0 24px;
  background: transparent;
  border: 2px solid #9B5241;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #9B5241;
  transition: all 0.2s ease;
  cursor: pointer;
}

.apothea-activity-library-load-more:hover {
  border-color: #656B51;
  color: #656B51;
}

/* ===== GRID ===== */

.apothea-activity-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  width: 100%;
}

/* ===== CARD ===== */

.apothea-activity-library-card {
  min-width: 0;
}

.apothea-activity-library-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.25s ease;
}

.apothea-activity-library-card-thumb {
  background: none;
  overflow: hidden;
}

.apothea-activity-library-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apothea-activity-library-card-content {
  padding: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.apothea-activity-library-card-title {
  font-size: 18px;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.apothea-activity-library-card-taxonomies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.apothea-activity-library-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #F5F5F5;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  color: var(--color-text);
}

/* ===== EMPTY ===== */

.apothea-activity-library-empty {
  margin-top: 24px;
  padding: 20px;
  background: transparent;
  border-radius: 0;
  font-size: 14px;
  color: var(--color-muted);
  text-align: center;
}

/* ===== RESPONSIVE ===== */

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

@media (max-width: 767px) {
  .apothea-activity-library-filters {
  width: 100%;
}

.apothea-activity-library-filter-options {
  flex-direction: column;
  align-items: stretch;
}

.apothea-activity-library-filter-option {
  width: 100%;
}

.apothea-activity-library-filter-label {
  width: 100%;
  justify-content: space-between;
}

  .apothea-activity-library-reset {
    width: 100%;
  }

  .apothea-activity-library-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== FILTRES EN LIGNE (VERSION COMPACTE) ===== */

.apothea-activity-library-filter-group {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 20px;
}

.apothea-activity-library-filter-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9B5241;
  white-space: nowrap;
}

.apothea-activity-library-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.apothea-activity-library-filter-label {
  padding: 6px 12px;
  min-height: 36px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 767px) {
  .apothea-activity-library-filter-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


/* ===== FINITIONS FILTRES + META ===== */

/* Barre de recherche : 1000px max et centrée */
.apothea-activity-library-search {
  max-width: 1000px;
  margin: 0 auto;
}

/* Zone filtres : alignée à gauche comme le contenu */
.apothea-activity-library-filters,
.apothea-activity-library-actions,
.apothea-activity-library-meta {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Réduire l'espace entre le nom du filtre et ses checkbox */
.apothea-activity-library-filter-group {
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

/* Ligne meta : compteur + reset sur la même ligne et centrés */
.apothea-activity-library-meta {
  margin-top: 24px;
}

.apothea-activity-library-meta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Reset plus discret */
.apothea-activity-library-reset {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #8C8C8C;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.apothea-activity-library-reset:hover {
  border: none;
  color: #656B51;
}