﻿.feature-block {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #f8f9fa; /* фоновый цвет для случая, если картинка не загружена */
}

.feature-block .feature-image {
  display: block;
  width: 100%;
  height: auto;
}

.feature-block .feature-label {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #28a745; /* зелёный */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 3px;
  line-height: 1;
}

.feature-block .feature-report {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #007bff; /* синий */
  border-radius: 3px;
}

.feature-block .feature-report a {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  padding: 3px 6px;
  display: inline-block;
  line-height: 1;
}

.feature-block .feature-report a:hover {
  text-decoration: underline;
}

/* Мобильная адаптация */
@media (max-width: 575.98px) {
  .feature-block .feature-label,
  .feature-block .feature-report a {
    font-size: 10px;
    padding: 4px 8px;
  }
}
