body{
  font-family: 'Inter';
}
.image-bg img{
  height: 300px;
  object-fit: cover;
  width: 100%;
}
.headingforpost{
  position: relative;
  top:-160px;
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 30px;
}
.bg-body-tertiary{
  display: flex;
  justify-content: center;
  background: white !important;
}
.bg-body-tertiary .col{
  font-weight: bold;
}
.active>.page-link, .page-link.active {
  background-color: #68afe2 !important;
  color: white !important;
  border-color:#dee2e6 !important;
}
.page-link{
  color: #68afe2 !important;
  font-weight: bold;
}

/* Бейджі категорій */
.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 6px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.media-badge {
  background: #68afe2;
  color: white;
}

.news-badge {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

/* Стилі для карток */
.card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-img-top {
  height: 225px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-text {
  flex: 1;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
  /* Обмеження кількості рядків */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4rem;
}

.d-flex.justify-content-between {
  margin-top: auto;
}
