a[href="#arenda"] {
  --swiper-theme-color: #007aff;
  --sw-client: css;
  --swiper-navigation-size: 24px !important;
  -webkit-font-smoothing: antialiased;
  font-family: 'Russo One', Arial, sans-serif;
  font-weight: 600;
  line-height: var(--line-height, 1.4);
  cursor: pointer;
  user-select: none;
  --height: 35px;
  font-size: 13px;
  color: #ffffff;
  box-sizing: content-box;
  margin: 0;
  padding: 10px 20px; /* добавим отступы, чтобы выглядело как кнопка */
  border: 0;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  white-space: inherit;
  text-overflow: ellipsis;
  background-color: #da8a23; /* цвет кнопки */
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

a[href="#arenda"]:hover {
  background-color: #EDAC58; /* эффект наведения */
}



/* Для всех блоков с id="feed-cover" */
#feed-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Задает соотношение сторон */
  overflow: hidden;
}

/* Само изображение */
#feed-cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* обрезает и центрирует */
  transform: translate(-50%, -50%);
}

