body {
	color: rgb(47, 47, 47);
}

b, strong {
    font-weight: bold;
}


.site-footer {
  box-sizing: border-box;
}


.layout-content {
	padding: 0 15px;
}

@media (min-width: 600px) {
	.layout-content {
		padding: 0 30px;
	}
}

/* footer fix */

.dialog-off-canvas-main-canvas {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.after-fixed-header {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}


/* pager */

.pager {
  margin: 2rem 0;
}

.pager__items {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.pager__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  text-decoration: none;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pager__item a:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.pager__item.is-active a {
  background-color: rgba(47, 47, 47, 1);
  border-color: rgba(47, 47, 47, 1);
  color: #ffffff;
  cursor: default;
}

.pager__item--first a,
.pager__item--last a {
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pager__item--previous a,
.pager__item--next a {
  font-size: 18px;
}


/*
  ******************************************
  *
  * breadcrumbs
  *
  ******************************************
*/


.breadcrumbs {
    padding: 20px 0;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px; /* Расстояние между элементами */
}

/* Ссылки и текст */
.breadcrumbs li, 
.breadcrumbs a, 
.breadcrumbs span {
    font-size: 14px;
    line-height: 1.2;
    color: #888; /* Приглушенный цвет для второстепенных ссылок */
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Ховер-эффект на ссылки */
.breadcrumbs a:hover {
    color: #333;
}

/* Разделитель */
.breadcrumbs .separator {
    color: #ccc;
    font-weight: 300;
    margin: 0 4px;
    user-select: none; /* Чтобы нельзя было выделить разделитель */
}

/* Текущая страница (последний пункт) */
.breadcrumbs [aria-current="page"] {
    color: #222; /* Темнее и четче, чтобы выделить текущее местоположение */
    font-weight: 500;
    pointer-events: none; /* Отключаем взаимодействие */
}

/* Адаптивность для мобильных */
@media (max-width: 600px) {
    .breadcrumbs ol {
        gap: 4px;
    }
    .breadcrumbs li, .breadcrumbs a, .breadcrumbs span {
        font-size: 13px;
    }
}
