/* ===== Блок "Головне" ===== */
.gov-main-block {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
}

/* Заголовок */
.gov-main-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #cfcfcf;
}

/* Один пункт */
.gov-main-item {
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.gov-main-item:last-child {
  border-bottom: none;
}

/* Посилання */
.gov-main-item a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

/* Зображення */
.gov-main-item img {
  width: 120px;
  height: auto;
  max-height: 80px;
  object-fit: contain; /* ❗ без обрізання */
  flex-shrink: 0;
}

/* Текст */
.gov-main-item span {
  font-size: 15px;
  line-height: 1.45;
}

/* Hover — мінімальний */

.gov-main-item a:hover p,
.gov-main-item a:hover span,
.gov-main-item a:focus-visible p,
.gov-main-item a:focus-visible span {
  color: #004c99 !important;
  text-decoration: underline !important;
}

.gov-main-item a:focus-visible {
  outline: 2px solid #004c99;
  outline-offset: 2px;
}


/* ===== Мобільна адаптація ===== */
@media (max-width: 768px) {
  .gov-main-item a {
    flex-direction: column;
  }

  .gov-main-item img {
    width: 100%;
    max-height: none;
  }
}
