/* ============================================================
   home-mfo.css — блок «Справочник МФО» на главной
   Добавлен 2026-08-17: вход в раздел /mfo с главной страницы.
   Mobile-first, палитра сайта (жёлтый акцент + тёмный текст).
   ============================================================ */

.home-mfo {
  padding: 40px 0;
  background: #f7f8fa;
}

.home-mfo__head {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.home-mfo__head h2 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #14161a;
}

.home-mfo__head p {
  font-size: 15px;
  line-height: 1.55;
  color: #4a5058;
  margin: 0;
}

/* --- плитка логотипов --- */
.home-mfo__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 20px;
}

.home-mfo__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 10px;
}

.home-mfo__logo img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* --- список готовых страниц --- */
.home-mfo__pages {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.home-mfo__pages a {
  display: block;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 10px;
  color: #14161a;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
}

.home-mfo__pages a:hover,
.home-mfo__pages a:focus {
  border-color: #ffd400;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.home-mfo__pages span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

/* --- кнопка в каталог --- */
.home-mfo__cta {
  text-align: center;
}

.home-mfo__cta .btn {
  display: inline-block;
  padding: 14px 26px;
  background: #ffd400;
  color: #14161a;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
}

.home-mfo__cta .btn:hover,
.home-mfo__cta .btn:focus {
  background: #ffdf3d;
}

.home-mfo__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  text-align: center;
}

/* --- планшет и выше --- */
@media (min-width: 640px) {
  .home-mfo { padding: 56px 0; }
  .home-mfo__head h2 { font-size: 30px; }
  .home-mfo__logos { grid-template-columns: repeat(5, 1fr); }
  .home-mfo__pages { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-mfo__head h2 { font-size: 34px; }
  .home-mfo__pages { grid-template-columns: repeat(3, 1fr); }
}
