
.fa-button-wr {
    display: flex;
    justify-content: space-between;
}
.event:hover {
    background: #f7f6f3;
}
.event {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin: 20px 0;
  transition: all 0.25s ease;
}


.event:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
 
}


.fa-event-img {
  flex: 0 0 200px;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
}

.fa-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fa-event-deatils {
  display: flex;
  flex-direction: column;
  gap: 6px;
}


.fa-event-name {
  font-size: 20px;
  font-weight: 600;
  
  margin-bottom: 2px;
}


.fa-event-deatils p {
  margin: 0;
    line-height: 1.5;
}


.fa-event-desc {
  margin-top: 8px;
    max-width: 700px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


.fa-event-button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #22224a;
  color: white !important;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 0.2s ease;
  width: fit-content;
}

.fa-event-button:hover {
  background: #eae8e1;
  color:#22224a !important;
}


@media (max-width: 700px) {
  .event {
    flex-direction: column;
    padding: 16px;
  }

  .fa-event-img {
    width: 100%;
    height: 190px;
  }
}



.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;             
  padding: 10px 0;
}

.hidden {
  display: none;
}


.filters label {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f7;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  border: 1px solid #ddd;
  transition: 0.2s ease;
}


.filters label:hover {
  background: #eaeaea;
  border-color: #ccc;
}


.filters input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #22224a;
}


.filters input[type="checkbox"]:checked + span,
.filters label:has(input:checked) {
  background: #22224a;
  color: white;
  border-color: #22224a;
}
``
