/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/thematic-categories-block/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Styles pour le bloc Catégories Thématiques
 * Images circulaires sur fond jaune
 */
.wp-block-afo-thematic-categories-block {
  margin: 3rem 0;
}
.wp-block-afo-thematic-categories-block .categories-container {
  display: grid;
  gap: 2rem;
}
.wp-block-afo-thematic-categories-block .categories-container.layout-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.wp-block-afo-thematic-categories-block.layout-grid.columns-desktop-4 .categories-container {
  grid-template-columns: repeat(4, 1fr);
}
.wp-block-afo-thematic-categories-block.layout-grid.columns-desktop-3 .categories-container {
  grid-template-columns: repeat(3, 1fr);
}
.wp-block-afo-thematic-categories-block.layout-grid.columns-desktop-2 .categories-container {
  grid-template-columns: repeat(2, 1fr);
}
.wp-block-afo-thematic-categories-block.layout-horizontal .categories-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.wp-block-afo-thematic-categories-block.layout-horizontal .categories-container .category-card {
  flex: 0 0 300px;
}
.wp-block-afo-thematic-categories-block.layout-carousel .categories-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.wp-block-afo-thematic-categories-block.layout-carousel .categories-container .category-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.wp-block-afo-thematic-categories-block .category-link-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  padding: 1rem 0;
}
.wp-block-afo-thematic-categories-block .category-image {
  position: relative;
  width: 150px;
  height: 150px;
  margin: auto;
  background: linear-gradient(135deg, #FCF6BD 0%, #FCF6BD 100%);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}
.wp-block-afo-thematic-categories-block .category-featured-image {
  width: 95%;
  height: 95%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.wp-block-afo-thematic-categories-block .category-card:hover .category-featured-image {
  transform: scale(1.05);
}
.wp-block-afo-thematic-categories-block .category-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.wp-block-afo-thematic-categories-block .category-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  line-height: 1.2;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  color: #2c3e50;
  transition: color 0.3s ease;
}
.wp-block-afo-thematic-categories-block .category-card:hover .category-title {
  color: #2E4859;
}
.wp-block-afo-thematic-categories-block .category-description {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: #7f8c8d;
  margin: 0;
  max-width: 200px;
}
.wp-block-afo-thematic-categories-block .category-card:hover .category-cta {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 151, 137, 0.4);
}
.wp-block-afo-thematic-categories-block .category-card:hover .category-cta::after {
  transform: translateX(3px);
}
.wp-block-afo-thematic-categories-block.no-categories {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #fff9e6 0%, #fff3d6 100%);
  border: 2px dashed #FFD700;
  border-radius: 20px;
}
.wp-block-afo-thematic-categories-block.no-categories .no-categories-message {
  color: #b8860b;
  font-style: italic;
  font-size: var(--font-size-lg);
}
@media (max-width: 1024px) {
  .wp-block-afo-thematic-categories-block.layout-grid.columns-desktop-4 .categories-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .wp-block-afo-thematic-categories-block.columns-tablet-2 .categories-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-block-afo-thematic-categories-block.columns-tablet-1 .categories-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .wp-block-afo-thematic-categories-block {
    margin: 2rem 0;
  }
  .wp-block-afo-thematic-categories-block .categories-container {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  }
  .wp-block-afo-thematic-categories-block.layout-horizontal .categories-container, .wp-block-afo-thematic-categories-block.layout-carousel .categories-container {
    display: grid;
  }
  .wp-block-afo-thematic-categories-block.layout-horizontal .category-card, .wp-block-afo-thematic-categories-block.layout-carousel .category-card {
    flex: none;
  }
  .wp-block-afo-thematic-categories-block .category-image {
    width: 200px;
    height: 200px;
  }
  .wp-block-afo-thematic-categories-block .category-featured-image {
    width: 95%;
    height: 95%;
  }
  .wp-block-afo-thematic-categories-block .category-placeholder {
    width: 95%;
    height: 95%;
  }
  .wp-block-afo-thematic-categories-block .category-placeholder .placeholder-icon {
    font-size: 2rem;
  }
  .wp-block-afo-thematic-categories-block .category-title {
    font-size: var(--font-size-lg);
  }
  .wp-block-afo-thematic-categories-block .category-cta {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-xs);
  }
}
@media (max-width: 480px) {
  .wp-block-afo-thematic-categories-block .categories-container {
    grid-template-columns: 1fr !important;
  }
  .wp-block-afo-thematic-categories-block .category-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  .wp-block-afo-thematic-categories-block .category-featured-image {
    width: 95%;
    height: 95%;
  }
  .wp-block-afo-thematic-categories-block .category-placeholder {
    width: 95%;
    height: 95%;
  }
  .wp-block-afo-thematic-categories-block .category-placeholder .placeholder-icon {
    font-size: 1.5rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  }
}
.wp-block-afo-thematic-categories-block .category-card {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}
.wp-block-afo-thematic-categories-block .category-card:nth-child(1) {
  animation-delay: 0.1s;
}
.wp-block-afo-thematic-categories-block .category-card:nth-child(2) {
  animation-delay: 0.2s;
}
.wp-block-afo-thematic-categories-block .category-card:nth-child(3) {
  animation-delay: 0.3s;
}
.wp-block-afo-thematic-categories-block .category-card:nth-child(4) {
  animation-delay: 0.4s;
}
.wp-block-afo-thematic-categories-block .category-card .category-image {
  animation: pulse 3s ease-in-out infinite;
}

/*# sourceMappingURL=style-index.css.map*/