/*!
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: malstrim
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

/* Сайдбар в записи Достопримечательности России */
.single-attractions-sidebar {
    display: grid;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 7;
    align-self: start;
    margin: 10px 0;
    padding: 30px 30px;
    border-radius: 5px;
/*     border: 1px solid #ddd; */
    background-color: #fff;
 }

.single-attractions-sidebar h4 {
    font-family: 'Montserrat Medium';
  font-style: normal;
  font-weight: 400;
  color: #132C33;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-align: left;
}

.single-attractions-sidebar ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	list-style: none;
	margin: 0;
}

.single-attractions-sidebar ul li {
	padding: 5px 0;
}

.single-attractions-sidebar ul a {
	display: block;
	text-decoration: none;
	/*  */
	font-size: 14px;
	font-family: "Montserrat Medium";
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
	color: #0073aa;
    
}
.single-attractions-sidebar a:hover,
.single-attractions-sidebar a:active {
    color: #44C2FF;
}

@media screen and (max-width: 768px) {
	.single-attractions-sidebar {
		display: none;
	}
}