@charset "UTF-8";
/* Calendrier d'Événements Technolution - Frontend Styles */
.wp-block-technolution-events-calendar {
  width: 100%;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wp-block-technolution-events-calendar .events-calendar-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.wp-block-technolution-events-calendar .events-calendar-title:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.wp-block-technolution-events-calendar .events-calendar-description {
  line-height: 1.6;
  margin-bottom: 2rem;
}
.wp-block-technolution-events-calendar .events-calendar-description:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.wp-block-technolution-events-calendar .events-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.wp-block-technolution-events-calendar .events-grid[data-view=list] {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.wp-block-technolution-events-calendar .events-grid[data-view=list] .event-item {
  display: flex;
  align-items: stretch;
}
.wp-block-technolution-events-calendar .events-grid[data-view=list] .event-item .event-image-container {
  flex: 0 0 200px;
}
@media (max-width: 768px) {
  .wp-block-technolution-events-calendar .events-grid[data-view=list] .event-item .event-image-container {
    flex: 0 0 150px;
  }
}
.wp-block-technolution-events-calendar .events-grid[data-view=list] .event-item .event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wp-block-technolution-events-calendar .event-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
}
.wp-block-technolution-events-calendar .event-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.wp-block-technolution-events-calendar .event-item:hover .event-image {
  transform: scale(1.05);
}
.wp-block-technolution-events-calendar .event-item:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.wp-block-technolution-events-calendar .event-image-container {
  position: relative;
  overflow: hidden;
}
.wp-block-technolution-events-calendar .event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.wp-block-technolution-events-calendar .event-content {
  padding: 1.25rem;
}
.wp-block-technolution-events-calendar .event-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}
.wp-block-technolution-events-calendar .event-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.wp-block-technolution-events-calendar .event-title a:hover, .wp-block-technolution-events-calendar .event-title a:focus {
  color: var(--primary-color);
}
.wp-block-technolution-events-calendar .event-title a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}
.wp-block-technolution-events-calendar .event-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}
.wp-block-technolution-events-calendar .event-category {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.wp-block-technolution-events-calendar .event-category:hover {
  background: color-mix(in srgb, var(--accent-color) 80%, black);
}
.wp-block-technolution-events-calendar .event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.wp-block-technolution-events-calendar .event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.wp-block-technolution-events-calendar .event-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary-color);
}
.wp-block-technolution-events-calendar .event-meta-item span {
  line-height: 1.2;
}
.wp-block-technolution-events-calendar .event-excerpt {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wp-block-technolution-events-calendar .event-more-button {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.wp-block-technolution-events-calendar .event-more-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.wp-block-technolution-events-calendar .event-more-button:hover, .wp-block-technolution-events-calendar .event-more-button:focus {
  background: color-mix(in srgb, var(--primary-color) 85%, black);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.wp-block-technolution-events-calendar .event-more-button:hover svg, .wp-block-technolution-events-calendar .event-more-button:focus svg {
  transform: translateX(2px);
}
.wp-block-technolution-events-calendar .event-more-button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.wp-block-technolution-events-calendar .events-filters {
  background: var(--secondary-color);
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}
.wp-block-technolution-events-calendar .filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: end;
}
.wp-block-technolution-events-calendar .filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 150px;
}
.wp-block-technolution-events-calendar .filter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}
.wp-block-technolution-events-calendar .filter-control {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: white;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wp-block-technolution-events-calendar .filter-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}
.wp-block-technolution-events-calendar .filter-control::placeholder {
  color: #9ca3af;
}
.wp-block-technolution-events-calendar .calendar-month {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.wp-block-technolution-events-calendar .calendar-header {
  background: var(--primary-color);
  color: white;
  padding: 1.25rem;
  text-align: center;
}
.wp-block-technolution-events-calendar .calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}
.wp-block-technolution-events-calendar .calendar-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.875rem;
}
.wp-block-technolution-events-calendar .calendar-nav button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.wp-block-technolution-events-calendar .calendar-nav button:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.wp-block-technolution-events-calendar .calendar-month-year {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.wp-block-technolution-events-calendar .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.wp-block-technolution-events-calendar .calendar-day-header {
  background: var(--secondary-color);
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}
.wp-block-technolution-events-calendar .calendar-day-header:last-child {
  border-right: none;
}
.wp-block-technolution-events-calendar .calendar-day {
  min-height: 100px;
  padding: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  position: relative;
  background: white;
  transition: background-color 0.2s ease;
}
.wp-block-technolution-events-calendar .calendar-day:nth-child(7n) {
  border-right: none;
}
.wp-block-technolution-events-calendar .calendar-day.other-month {
  background: #f8f9fa;
  color: #adb5bd;
}
.wp-block-technolution-events-calendar .calendar-day.today {
  background: rgba(37, 99, 235, 0.1);
}
.wp-block-technolution-events-calendar .calendar-day.today .calendar-day-number {
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-technolution-events-calendar .calendar-day:hover:not(.other-month) {
  background: rgba(37, 99, 235, 0.05);
}
.wp-block-technolution-events-calendar .calendar-day-number {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
.wp-block-technolution-events-calendar .calendar-event {
  background: var(--primary-color);
  color: white;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.6875rem;
  margin-bottom: 0.125rem;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: block;
}
.wp-block-technolution-events-calendar .calendar-event a {
  color: inherit;
  text-decoration: none;
}
.wp-block-technolution-events-calendar .calendar-event:hover {
  background: color-mix(in srgb, var(--primary-color) 85%, black);
  transform: translateY(-1px);
}
.wp-block-technolution-events-calendar .calendar-event:focus, .wp-block-technolution-events-calendar .calendar-event:focus-within {
  outline: 2px solid white;
  outline-offset: 1px;
}
.wp-block-technolution-events-calendar .event-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  max-width: 300px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.wp-block-technolution-events-calendar .event-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}
.wp-block-technolution-events-calendar .event-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.9);
}
.wp-block-technolution-events-calendar .event-tooltip .tooltip-field {
  margin-bottom: 0.5rem;
}
.wp-block-technolution-events-calendar .event-tooltip .tooltip-field:last-child {
  margin-bottom: 0;
}
.wp-block-technolution-events-calendar .event-tooltip .tooltip-field strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}
.wp-block-technolution-events-calendar .events-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.wp-block-technolution-events-calendar .pagination-button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  min-width: 40px;
  text-align: center;
}
.wp-block-technolution-events-calendar .pagination-button:hover, .wp-block-technolution-events-calendar .pagination-button.current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-1px);
}
.wp-block-technolution-events-calendar .pagination-button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.wp-block-technolution-events-calendar .pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wp-block-technolution-events-calendar .pagination-button:disabled:hover {
  transform: none;
  background: white;
  color: var(--text-color);
  border-color: var(--border-color);
}
.wp-block-technolution-events-calendar .no-events-message,
.wp-block-technolution-events-calendar .error-message {
  text-align: center;
  padding: 2.5rem 1.25rem;
  color: #6b7280;
  font-style: italic;
}
.wp-block-technolution-events-calendar .error-message {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}
.wp-block-technolution-events-calendar .error-message p {
  margin: 0 0 0.5rem 0;
}
.wp-block-technolution-events-calendar .error-message p:last-child {
  margin-bottom: 0;
}
.wp-block-technolution-events-calendar .error-message strong {
  color: #b91c1c;
}
.wp-block-technolution-events-calendar .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: 12px;
  backdrop-filter: blur(2px);
}
.wp-block-technolution-events-calendar .loading-spinner {
  text-align: center;
}
.wp-block-technolution-events-calendar .loading-spinner p {
  margin-top: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .wp-block-technolution-events-calendar .events-calendar-title {
    font-size: 2rem;
  }
  .wp-block-technolution-events-calendar .events-grid {
    gap: 1.25rem;
  }
  .wp-block-technolution-events-calendar .event-tooltip {
    max-width: 250px;
    font-size: 0.8125rem;
  }
}
@media (max-width: 768px) {
  .wp-block-technolution-events-calendar .events-calendar-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .wp-block-technolution-events-calendar .events-calendar-description {
    margin-bottom: 1.5rem;
  }
  .wp-block-technolution-events-calendar .events-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .wp-block-technolution-events-calendar .event-item {
    border-radius: 8px;
  }
  .wp-block-technolution-events-calendar .event-item:hover {
    transform: translateY(-4px);
  }
  .wp-block-technolution-events-calendar .event-image {
    height: 160px;
  }
  .wp-block-technolution-events-calendar .event-content {
    padding: 1rem;
  }
  .wp-block-technolution-events-calendar .events-filters {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  .wp-block-technolution-events-calendar .filters-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .wp-block-technolution-events-calendar .filter-group {
    min-width: auto;
  }
  .wp-block-technolution-events-calendar .calendar-day {
    min-height: 80px;
    padding: 0.25rem;
  }
  .wp-block-technolution-events-calendar .calendar-day-number {
    font-size: 0.8125rem;
  }
  .wp-block-technolution-events-calendar .calendar-event {
    font-size: 0.625rem;
    padding: 0.0625rem 0.25rem;
  }
  .wp-block-technolution-events-calendar .calendar-nav {
    flex-direction: column;
    gap: 0.625rem;
  }
  .wp-block-technolution-events-calendar .calendar-nav button {
    padding: 0.375rem 0.5rem;
    font-size: 0.8125rem;
  }
  .wp-block-technolution-events-calendar .calendar-month-year {
    font-size: 1.25rem;
  }
  .wp-block-technolution-events-calendar .event-tooltip {
    max-width: 200px;
    font-size: 0.75rem;
    padding: 0.5rem;
  }
  .wp-block-technolution-events-calendar .events-pagination {
    margin-top: 2rem;
    gap: 0.375rem;
  }
  .wp-block-technolution-events-calendar .pagination-button {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    min-width: 36px;
  }
}
@media (max-width: 480px) {
  .wp-block-technolution-events-calendar .events-calendar-title {
    font-size: 1.5rem;
  }
  .wp-block-technolution-events-calendar .event-item:hover {
    transform: translateY(-2px);
  }
  .wp-block-technolution-events-calendar .event-image {
    height: 140px;
  }
  .wp-block-technolution-events-calendar .event-content {
    padding: 0.875rem;
  }
  .wp-block-technolution-events-calendar .event-title {
    font-size: 1rem;
  }
  .wp-block-technolution-events-calendar .event-meta-item {
    font-size: 0.8125rem;
  }
  .wp-block-technolution-events-calendar .event-meta-item svg {
    width: 14px;
    height: 14px;
  }
  .wp-block-technolution-events-calendar .event-excerpt {
    font-size: 0.8125rem;
  }
  .wp-block-technolution-events-calendar .event-more-button {
    font-size: 0.8125rem;
    padding: 0.375rem 0.875rem;
  }
  .wp-block-technolution-events-calendar .calendar-day {
    min-height: 60px;
  }
  .wp-block-technolution-events-calendar .events-filters {
    padding: 0.875rem;
  }
  .wp-block-technolution-events-calendar .filter-control {
    font-size: 0.8125rem;
  }
}
@media (prefers-color-scheme: dark) {
  .wp-block-technolution-events-calendar .event-item {
    background: #1f2937;
    border-color: #374151;
  }
  .wp-block-technolution-events-calendar .filter-control {
    background: #1f2937;
    border-color: #374151;
    color: #f9fafb;
  }
  .wp-block-technolution-events-calendar .filter-control::placeholder {
    color: #6b7280;
  }
  .wp-block-technolution-events-calendar .calendar-day {
    background: #1f2937;
  }
  .wp-block-technolution-events-calendar .calendar-day.other-month {
    background: #111827;
  }
  .wp-block-technolution-events-calendar .calendar-day-header {
    background: #374151;
    color: #f9fafb;
  }
  .wp-block-technolution-events-calendar .no-events-message {
    color: #9ca3af;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.wp-block-technolution-events-calendar .event-item {
  animation: slideInUp 0.6s ease-out;
}
.wp-block-technolution-events-calendar .calendar-event {
  animation: fadeIn 0.4s ease-out;
}
@media print {
  .wp-block-technolution-events-calendar .events-filters,
.wp-block-technolution-events-calendar .events-pagination,
.wp-block-technolution-events-calendar .event-tooltip,
.wp-block-technolution-events-calendar .loading-overlay {
    display: none !important;
  }
  .wp-block-technolution-events-calendar .event-item {
    box-shadow: none;
    border: 1px solid #000;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
  .wp-block-technolution-events-calendar .calendar-month {
    box-shadow: none;
    border: 1px solid #000;
  }
  .wp-block-technolution-events-calendar .event-more-button {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-technolution-events-calendar * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .wp-block-technolution-events-calendar .event-item:hover {
    transform: none;
  }
  .wp-block-technolution-events-calendar .event-more-button:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .wp-block-technolution-events-calendar .event-item {
    border: 2px solid;
  }
  .wp-block-technolution-events-calendar .event-more-button {
    border: 2px solid;
  }
  .wp-block-technolution-events-calendar .filter-control {
    border: 2px solid;
  }
}

/*# sourceMappingURL=block-frontend.css.map */
