.fdc-calendar-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .fdc-calendar-container {
    gap: 15px;
    margin: 15px 0;
  }
}

.fdc-calendar-item {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 280px;
}
@media (max-width: 1024px) {
  .fdc-calendar-item {
    flex: 0 1 calc(50% - 10px);
    min-width: 250px;
  }
}
@media (max-width: 768px) {
  .fdc-calendar-item {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.fdc-calendar-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.fdc-calendar-link:hover {
  text-decoration: none;
  color: inherit;
}

.fdc-calendar-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e1e1e1;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.fdc-calendar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.fdc-calendar-date {
  background: #bb5644;
  color: #fff;
  padding: 12px 15px;
  font-family: "Arial", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin: -1px -1px 0 -1px;
  border-radius: 8px 8px 0 0;
}

.fdc-calendar-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}
.fdc-calendar-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .fdc-calendar-image {
    height: 150px;
  }
}

.fdc-calendar-card:hover .fdc-calendar-image img {
  transform: scale(1.05);
}

.fdc-calendar-title {
  padding: 15px;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .fdc-calendar-title {
    font-size: 16px;
    padding: 12px;
  }
}

.fdc-calendar-description {
  padding: 0 15px 15px;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}
.fdc-calendar-description p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .fdc-calendar-description {
    padding: 0 12px 12px;
  }
  .fdc-calendar-description p {
    font-size: 13px;
  }
}

.fdc-calendar-clear {
  clear: both;
  width: 100%;
  height: 0;
  flex-basis: 100%;
}

.fdc-calendar-error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin: 20px 0;
  text-align: center;
  font-family: "Arial", sans-serif;
}

@supports not (display: flex) {
  .fdc-calendar-container {
    display: block;
  }
  .fdc-calendar-container::after {
    content: "";
    display: table;
    clear: both;
  }
  .fdc-calendar-item {
    float: left;
    width: calc(33.333% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .fdc-calendar-item:nth-child(3n) {
    margin-right: 0;
  }
  @media (max-width: 1024px) {
    .fdc-calendar-item {
      width: calc(50% - 10px);
    }
    .fdc-calendar-item:nth-child(3n) {
      margin-right: 20px;
    }
    .fdc-calendar-item:nth-child(2n) {
      margin-right: 0;
    }
  }
  @media (max-width: 768px) {
    .fdc-calendar-item {
      width: 100%;
      margin-right: 0;
    }
    .fdc-calendar-item:nth-child(n) {
      margin-right: 0;
    }
  }
}/*# sourceMappingURL=frontend.css.map */