/*!
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
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
--------------------------------------------- */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

/* Хлебные крошки Десктоп до 1024px*/
.breadcrumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 30px 30px;
}

.breadcrumbs ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    margin-right: 3px;
    display: flex;
    align-items: center; /* Выровнять элементы по вертикали */
}

.breadcrumbs li:not(:last-child)::after {
    content: "›"; /* Символ разделителя */
    margin-left: 3px;
    align-self: center; /* Выровнять разделитель по вертикали */
    font-family: 'Montserrat Medium';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;  /* Размер разделителя */
    line-height: 25px;
    letter-spacing: 0.02em;
    color: #0073aa; /* Цвет разделителя */
}

.breadcrumbs li:last-child::after {
    content: ""; /* Убираем ">" у последнего элемента */
}

.breadcrumbs ul li a {
    font-family: 'Montserrat Medium';
    font-style: normal;
    font-weight: 400;
    color: #0073aa;
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
}

.breadcrumbs ul li a:hover,
.breadcrumbs ul li a:active {
    color: #44C2FF;  /* Цвет ссылки при наведении */
}

.breadcrumbs ul li p {
    font-family: 'Montserrat Medium';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.breadcrumbs li.active > p {
    cursor: auto;
    color: #002E44;  /* Цвет текущего элемента */
}
/*********************************************/
/* Адаптивные стили */
@media (max-width: 768px) {
    .breadcrumbs {
        grid-template-columns: 1fr;
    }
}