/* ===== Адаптивная верстка для мобильных (≤768px) ===== */

@media screen and (max-width: 768px) {

  /* Меню: вертикально и удобно */
  .menu_nav {
    width: 100%;
    padding: 10px 0;
  }

  .menu_nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
    align-items: stretch;
  }

  .menu_nav ul li {
    list-style: none;
    width: 100%;
  }

  .menu_nav ul li a {
    display: block;
    background: #336699;
    color: white !important;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
  }

  .menu_nav ul li a:hover {
    background: #224466;
  }

  .header_resize,
  .content_resize,
  .fbg_resize,
  .footer {
    width: 100% !important;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .content .mainbar,
  .content .sidebar {
    float: none;
    width: 100% !important;
    margin: 0 0 20px 0;
    border: none;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea {
    width: 100% !important;
    font-size: 16px;
  }

  .form-button,
  .form-input,
  .form-textarea {
    width: 100% !important;
  }

  h1, h2, h3 {
    font-size: 1.2em;
  }

  .fl {
    float: none !important;
    display: block;
    margin: 10px 0 !important;
  }
}
/* ... остальной код без изменений выше ... */

/* Увеличенный размер текста и заголовков в новостях */
.content .mainbar .article p {
	font-size: 17px;
	line-height: 1.9em;
}

.content .mainbar .article h2,
.content .mainbar .article h3 {
	font-size: 22px;
	color: #444;
}

