/*
Theme Name: child_twentytwentyfour
Description: Theme enfant de TwentyTwentyFour
Author: Rebeton
Author URI: https://www.wpserveur.net
Template: twentytwentyfour
Version: 0.1.0
*/

.footer-tight {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-logos img {
  max-height: 60px; /* taille uniforme */
  width: auto;
  object-fit: contain;
}

.filter-block {
  width: 250px;
  background: #ddd;
  font-family: sans-serif;
  padding: 10px;
  position: relative;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-current {
  font-weight: 500;
  font-size: 14px;
}

.filter-arrow {
  background: #666;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: relative;
}

.filter-arrow::after {
  content: "▼";
  color: white;
  position: absolute;
  top: 3px;
  left: 7px;
  font-size: 14px;
}

.filter-dropdown {
  background: white;
  padding: 10px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.filter-dropdown.active {
  display: block;
}

.filter-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.filter-remove {
  cursor: pointer;
  color: #444;
}