/*!
Theme Name: putegrad
Theme URI: https://putegrad.ru/
Author: Putegrad.ru
Author URI: https://putegrad.ru/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: putegrad
 */

/* Навигация постов */
section.search-navigation-posts {
    display: grid;
    grid-template-columns: 1fr;
    margin: 60px 0 30px 0;
  }

  section.search-navigation-posts p {
    display: flex;
    justify-content: center;
    align-items: center;
    column-span: all;
    gap: 20px;
  }

  section.search-navigation-posts p a,
  section.search-navigation-posts p a  {
    display: block;
    padding: 16px 16px;
    border-radius: 3px;
    border: none;
    outline: none;
    background-color: #ffca3c;
    cursor: pointer;
    font-size: 16px;
    line-height: 14px;
    color: #ffffff;
    font-family: 'Montserrat Medium', 'San-serif';
    text-align: center;
    border-radius: 3px;
    text-decoration: none;
  }

  section.search-navigation-posts p a:hover,
  section.search-navigation-posts p a:hover {
    background-color: #fbad1e;
  }
  
  section.search-navigation-posts .nav-next a:active,
  section.search-navigation-posts .nav-previous a:active  {
    background-color: #E79814;
  }

  @media(max-width:500px) {
    section.search-navigation-posts p {
      flex-wrap: wrap;
    }
  }

  @media(max-width:300px) {
    section.search-navigation-posts p a,
    section.search-navigation-posts p a {
      font-size: 14px;
      line-height: 12px;
    }
  }