/* HEADER BOTTOM — СОВМЕСТИМО С ДРУГИМ САЙТОМ */

.header__bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.js-fixed .header__bottom {
  transform: translateY(0);
}

.header-bottom__container {
  margin: 0 auto;
  padding: 15px 20px;
  display: block;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  
}

.header-bottom__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.header-bottom__item {
  display: flex;
  align-items: center;
  font-size: inherit;
  color: #333;
}

.header-bottom__item_btn {
  flex-direction: column;
  align-items: flex-start;
}

.header-bottom__item_btn .btn {
  padding: 8px 16px;
  
}

.header-bottom__item_btn .text-btn__text {
  
  color: #888;
  margin-top: 5px;
}

.header-bottom__item_pdf {
  flex-direction: column;
  
  color: #444;
}

.text-pdf {
  text-decoration: none;
  color: inherit;
  line-height: 1.4;
}

.header-bottom__author {
  display: flex;
  align-items: center;
  font-size: inherit;
  line-height: 1.4;
}

.author__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}
.author__img img {
  width: 100%;
  height: auto;
  display: block;
}
.author__name {
  font-weight: 600;
}
.author__descr {
  
  color: #666;
}

.header-bottom__item_socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.socials-label {
  
  margin-bottom: 6px;
}
.socials {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.socials__item {
  margin: 0;
}
.socials__link {
  display: inline-flex;
  width: 36px;
  height: 36px;
}
.socials__link svg {
  width: 100%;
  height: 100%;
}

.header-bottom__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: transparent url('../img/icons/close.svg') no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

/* АДАПТИВ */

@media (max-width: 1230px) {
  .header-bottom__item_author {
    display: none;
  }
}

@media (max-width:576px) {
  .header-bottom__item_socials {
    display: none;
  }
  .header-bottom__items {
    justify-content: center;
  }
}