@media (min-width: 480px) {
	.news-min {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: .9rem;
  }
}
@media (width < 768px) {
  .logo {
    display: none;
  }

  .header-right {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    padding: .7rem 0;
  }

  .header-nav {
    order: 2;
  }

  .header-menu {
    display: flex;
    justify-content: space-between;
    gap: .3rem;
    overflow-x: scroll;
    white-space: nowrap;
  }

  .header-menu a {
    background: var(--link-color);
    border-radius: 20px;
    padding: .3rem .6rem;
    color: #fff;
    display: block;
    margin: .3rem 0;
  }

  .current-menu-item a {
    background: var(--hover-color);
  }

  .header-search {
    order: 1;
  }

  .header-search input {
    height: 40px;
  }

  .breadcrumbs {
    display: none;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }

  html {
    font-size: 93.75%;
  }

  .top-line .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
  }
   .logo-link {
    display: flex;
  }
  .header-right {
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
  }

  .header-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: .8rem;
  }

  .current-menu-item a {
    color: var(--hover-color);
  }

  .header-menu a {
    display: block;
    padding: .8rem 0;
    font-weight: bold;
  }

  .menu-icon {
    display: none;
  }

  .breadcrumbs-list {
    display: flex;
    gap: .5rem;
  }

  .breadcrumbs li+li::before {
    content: "›";
    margin-right: .5rem;
    color: var(--link-color);
  }
  .news-title {
    font-size: 1.2rem;
  }

  .news-info {
    flex-grow: 1;
  }

  .article-title {
    font-size: 1.8rem;
  }

  .article-full_meta {
    justify-content: flex-start;
  }

  .article-body h2 {
    font-size: 1.4rem;
  }
  .post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
	align-items: stretch;
    gap: var(--space);
  }
   .nav-next, .nav-prev {
	display: flex;
    flex-direction: column;
    justify-content: center;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background: var(--bg-color);
	padding: .5rem 1rem;
  }
  .nav-next {
    grid-column: 1;
  }
  .nav-prev {
    grid-column: 2;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding-bottom: .9rem;
  }

  .footer-ad {
    flex: 2;
    min-height: 52px;
    padding: 6px 14px;
    border: 1px dashed #97b29b;
    border-radius: 8px;
    background: #edf5ea;
    color: #3b6a40;
    font-weight: 700;
    text-align: center;
  }

  .footer-nav {
    flex: 3;
  }

  .footer-links {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
	font-size: .8rem;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

}

@media (min-width: 1024px) {
  .hidden-block {
    display: block;
  }

  .container {
    max-width: 1140px;
  }

  html {
    font-size: 100%;
  }

  .logo-link {
    flex-wrap: nowrap;
    align-items: center;
    gap: .5rem;
    font-size: 1.5rem;
  }

  .logo-link span {
    display: block;
  }

  .header-menu a {
    font-size: 1.1rem;
  }

  .main {
    flex-direction: row;
  }

  .content {
    flex: 3;
  }

  .article-title {
    font-size: 1.9rem;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .aside {
    flex: 1;
  }

  .news-title {
    font-size: 1.4rem;
  }

  .popular-list a {
    grid-template-columns: 1fr 2fr;
    font-size: .9rem;
  }
	.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
	font-size: 1rem;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  html {
    font-size: 106.25%;
  }
}