@charset "UTF-8";
.event-card {
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: 1px solid #f0f0f0 !important;
}
.event-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}
.event-card:hover .hy-title {
  color: #005f8d;
}
.event-card .event-card-image-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.event-card .event-card-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.event-card:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.event-card .hy-title {
  font-family: "Noto Serif Armenian", serif;
  line-height: 1.3;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.event-card .tr-title {
  border-top: 1px solid #eee;
  margin-top: 8px;
  padding-top: 8px;
  display: block;
}

/* Pager konteynırı */
nav.pager {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Pager listesinin başındaki noktaları kaldırır ve yan yana dizer */
.pager__items {
  list-style: none !important; /* Noktaları kesin olarak kaldırır */
  padding-left: 0 !important; /* Varsayılan girintiyi sıfırlar */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

/* Eğer noktalar hala gitmiyorsa, liste elemanlarını hedef alalım */
.pager__items li,
.pager__item {
  list-style-type: none !important;
  background-image: none !important; /* Bazı temalar ikon koyabiliyor */
  margin: 0;
  padding: 0;
}

/* Daha temiz bir görünüm için linkleri kutulaştıralım */
.pager__item a {
  display: block;
  padding: 8px 16px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  text-decoration: none;
  color: #2c3e50;
  line-height: 1;
}

/* Aktif sayfa stili (Kırmızı kutu) */
.pager__item.is-active a {
  background-color: #b02a37;
  color: white;
  border-color: #b02a37;
}/*# sourceMappingURL=event-card.css.map */