@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F.ttf) format('truetype');
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 170%;
  overflow-x: hidden;
  background: linear-gradient(135deg, #F0F4F5 0%, #E8F0F1 50%, #F5F7F8 100%);
  background-attachment: fixed;
  color: #2A4A4C;
  min-height: 100vh;
}
.container {
  display: block;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1350px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1240px) {
  .container {
    max-width: 90%;
  }
}
.container-flex {
  display: flex;
}
@media (max-width: 680px) {
  .container-flex {
    flex-direction: column;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  line-height: 100%;
}
h1 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2A4A4C;
}
@media (max-width: 1025px) {
  h1 {
    font-size: 36px;
  }
}
h2 {
  font-size: 32px;
  line-height: 130%;
  font-weight: 700;
  margin: 32px 0 16px;
  letter-spacing: -0.015em;
  color: #2A4A4C;
}
@media (max-width: 1025px) {
  h2 {
    font-size: 22px;
  }
}
h3 {
  font-size: 26px;
  line-height: 135%;
  font-weight: 600;
  margin: 28px 0 14px;
  letter-spacing: -0.01em;
  color: #B87D6B;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 110%;
}
img {
  object-fit: cover;
  width: 100%;
}
.title {
  font-weight: 600;
  margin-bottom: 32px;
  margin-top: 0;
}
@media (max-width: 680px) {
  .title {
    margin-bottom: 20px;
  }
}
.btn {
  padding: 16px 36px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible {
  outline: 3px solid rgba(109, 140, 142, 0.3);
  outline-offset: 4px;
}
.btn-primary {
  background: #6D8C8E;
  margin-right: 15px;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(109, 140, 142, 0.3);
  border-color: #577071;
}
.btn-primary:hover {
  background: #5b7577;
  color: #ffffff;
  border-color: #526a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 140, 142, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: #ffffff;
  color: #B87D6B;
  border: 2px solid #B87D6B;
  box-shadow: 0 4px 12px rgba(184, 125, 107, 0.15);
}
.btn-secondary:hover {
  background: #B87D6B;
  color: #ffffff;
  border-color: #B87D6B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 125, 107, 0.25);
}
.header {
  margin: 0;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(184, 125, 107, 0.2);
}
.header .container {
  padding: 24px 22px;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  border: none;
}
@media ((max-width: 1025px)) {
  .header .container {
    padding: 20px 0px;
  }
}
.header__logo img {
  width: 220px;
}
@media ((max-width: 1025px)) {
  .header__logo img {
    width: 190px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav__right {
  width: 18%;
}
@media ((max-width: 1025px)) {
  .header__nav__right {
    width: 25%;
  }
}
@media ((max-width: 800px)) {
  .header__nav__right {
    display: none;
  }
}
.header__search {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 12px 20px;
  border-radius: 6px;
  background: #E8F0F1;
  border: 2px solid rgba(184, 125, 107, 0.3);
  transition: all 0.4s ease;
  box-shadow: inset 0 2px 4px rgba(184, 125, 107, 0.1);
}
.header__search:focus-within {
  border-color: #B87D6B;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(184, 125, 107, 0.25);
}
.header__search input {
  border: none;
  width: 100%;
  background-color: transparent;
  font-size: 18px;
  color: #2A4A4C;
}
.header__search input:focus,
.header__search input:focus-visible {
  outline: none;
}
.header__search input::placeholder {
  color: rgba(42, 74, 76, 0.45);
}
.header__search button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  color: #B87D6B;
  transition: transform 0.2s ease, color 0.2s ease;
}
.header__search button:hover,
.header__search button:focus-visible {
  color: #6D8C8E;
  transform: scale(1.1);
}
.header__menu {
  display: flex;
  gap: 28px;
}
@media ((max-width: 800px)) {
  .header__menu {
    display: none;
  }
}
.header__menu li {
  text-transform: none;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 500;
  color: rgba(42, 74, 76, 0.8);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.header__menu li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: #6D8C8E;
  transform: translateX(0);
  transition: width 0.4s ease;
}
.header__menu li:hover,
.header__menu li:focus-within {
  color: #6D8C8E;
}
.header__menu li:hover::after,
.header__menu li:focus-within::after {
  width: 100%;
  background: #6D8C8E;
}
.header__nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
@media ((max-width: 800px)) {
  .header__nav__toggle {
    display: block;
  }
}
.header__nav__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #6D8C8E;
  margin: 8px 0;
  transition: 0.3s;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border-bottom: 3px solid #6D8C8E;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  padding: 25px 0;
}
.mobile-menu.active {
  transform: translateY(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  margin-bottom: 30px;
  padding: 0 20px;
}
.mobile-menu .header__logo img {
  height: auto;
}
.mobile-menu .close-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu .close-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2A4A4C;
  position: relative;
}
.mobile-menu .close-menu span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
}
.mobile-menu .close-menu span:nth-child(2) {
  opacity: 0;
}
.mobile-menu .close-menu span:nth-child(3) {
  transform: rotate(-45deg);
  top: -8px;
}
.mobile-menu__menu {
  list-style: none;
  width: 90%;
  margin: 30px auto 0;
}
.mobile-menu__menu li {
  padding: 15px 0 10px;
  border-bottom: 2px solid rgba(184, 125, 107, 0.3);
  text-transform: uppercase;
  text-align: center;
}
.mobile-menu__menu li a {
  color: #B87D6B;
  font-size: 20px;
  padding: 0 20px;
  transition: color 0.3s ease;
  font-weight: 600;
}
.mobile-menu__menu li a:focus-visible {
  outline: 2px solid #6D8C8E;
  outline-offset: 4px;
}
.mobile-menu__menu li:hover a,
.mobile-menu__menu li a:focus-visible {
  color: #6D8C8E;
}
.posts-section {
  padding: 60px 0;
}
@media (max-width: 1025px) {
  .posts-section {
    padding: 40px 0;
  }
}
@media (max-width: 680px) {
  .posts-section {
    padding: 30px 0;
  }
}
.section-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 130%;
  color: #2A4A4C;
  margin: 0 0 56px 0;
  text-align: center;
  text-transform: none;
  letter-spacing: -0.02em;
}
@media (max-width: 1025px) {
  .section-title {
    font-size: 40px;
    margin-bottom: 48px;
  }
}
@media (max-width: 680px) {
  .section-title {
    font-size: 34px;
    margin-bottom: 40px;
  }
}
.title_h1 {
  text-align: left;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1240px) {
  .posts-grid {
    gap: 25px;
  }
}
@media (max-width: 1025px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 550px) {
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.post-card {
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid rgba(184, 125, 107, 0.3);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(184, 125, 107, 0.15);
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: #B87D6B;
  box-shadow: 0 8px 32px rgba(184, 125, 107, 0.3);
  background: rgba(184, 125, 107, 0.08);
}
.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: #E8F0F1;
  border-bottom: 2px solid rgba(184, 125, 107, 0.3);
}
@media (max-width: 1025px) {
  .post-card__image {
    height: 220px;
  }
}
@media (max-width: 680px) {
  .post-card__image {
    height: 200px;
  }
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  filter: grayscale(20%) contrast(1.05);
}
.post-card:hover .post-card__image img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.1);
}
.post-card__content {
  padding: 32px;
  flex: 1;
}
@media (max-width: 1025px) {
  .post-card__content {
    padding: 28px;
  }
}
@media (max-width: 680px) {
  .post-card__content {
    padding: 24px;
  }
}
.post-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  margin: 0 0 14px 0;
  color: #2A4A4C;
  transition: color 0.4s ease;
  letter-spacing: -0.01em;
}
@media (max-width: 1025px) {
  .post-card__title {
    font-size: 22px;
  }
}
@media (max-width: 680px) {
  .post-card__title {
    font-size: 20px;
  }
}
.post-card:hover .post-card__title {
  color: #B87D6B;
}
.post-card__excerpt {
  font-size: 15px;
  line-height: 160%;
  color: #5A7B7D;
}
@media (max-width: 1025px) {
  .post-card__excerpt {
    font-size: 15px;
  }
}
@media (max-width: 680px) {
  .post-card__excerpt {
    font-size: 14px;
  }
}
.post-card--small {
  grid-column: span 1;
  grid-row: span 1;
}
.post-card--large {
  grid-column: span 1;
  /* та же ширина */
  grid-row: span 2;
  /* только выше */
}
@media (max-width: 550px) {
  .post-card--large {
    grid-row: span 1;
  }
}
.post-card__tags {
  margin: 8px 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.post-card__tags .post-card__tag {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  color: #ffffff;
  background: #B87D6B;
  border: 1px solid #a96651;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(184, 125, 107, 0.25);
}
.post-card__tags .post-card__tag:hover {
  background: #a96651;
  color: #ffffff;
  border-color: #9b5d4b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 125, 107, 0.4);
}
@media (max-width: 680px) {
  .post-card__tags .post-card__tag {
    padding: 8px;
    font-size: 10px;
  }
}
.person-single,
.company-single,
.news-single {
  padding: 40px 0 60px;
}
@media (max-width: 1025px) {
  .person-single,
  .company-single,
  .news-single {
    padding: 30px 0 40px;
  }
}
@media (max-width: 680px) {
  .person-single,
  .company-single,
  .news-single {
    padding: 20px 0 30px;
  }
}
.person-single__wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1025px) {
  .person-single__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 800px) {
  .person-single__wrapper {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .person-single__wrapper {
    gap: 20px;
  }
}
.person-single__content,
.company-single__content,
.news-single__content {
  background: linear-gradient(135deg, #ffffff 0%, #E8F0F1 100%);
  border-radius: 12px;
  padding: 60px;
  border: 1px solid rgba(109, 140, 142, 0.2);
  box-shadow: 0 8px 32px rgba(109, 140, 142, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
@media (max-width: 1025px) {
  .person-single__content,
  .company-single__content,
  .news-single__content {
    padding: 30px;
  }
}
@media (max-width: 800px) {
  .person-single__content,
  .company-single__content,
  .news-single__content {
    padding: 20px;
    width: 100%;
  }
}
.person-single__title,
.company-single__title,
.news-single__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 130%;
  color: #2A4A4C;
  margin: 0;
  letter-spacing: -0.02em;
}
@media (max-width: 1025px) {
  .person-single__title,
  .company-single__title,
  .news-single__title {
    font-size: 36px;
  }
}
@media (max-width: 680px) {
  .person-single__title,
  .company-single__title,
  .news-single__title {
    font-size: 30px;
  }
}
.person-single__image,
.company-single__image,
.news-single__image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #6D8C8E;
  box-shadow: 0 12px 40px rgba(109, 140, 142, 0.2), 0 4px 12px rgba(74, 107, 109, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #E8F0F1;
  position: relative;
}
.person-single__image::before,
.company-single__image::before,
.news-single__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(109, 140, 142, 0) 0%, rgba(109, 140, 142, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}
.person-single__image:hover,
.company-single__image:hover,
.news-single__image:hover {
  box-shadow: 0 16px 56px rgba(109, 140, 142, 0.3), 0 8px 24px rgba(74, 107, 109, 0.15);
  border-color: #6D8C8E;
  transform: translateY(-4px) scale(1.01);
}
.person-single__image:hover::before,
.company-single__image:hover::before,
.news-single__image:hover::before {
  opacity: 1;
}
.person-single__image img,
.company-single__image img,
.news-single__image img {
  width: 100%;
  height: 100%;
  display: block;
}
@media ((max-width: 800px)) {
  .person-single__image img,
  .company-single__image img,
  .news-single__image img {
    height: 100%;
  }
}
.person-single__excerpt,
.company-single__excerpt,
.news-single__excerpt {
  font-size: 19px;
  line-height: 160%;
  color: #5A7B7D;
  margin-bottom: 40px;
}
@media (max-width: 1025px) {
  .person-single__excerpt,
  .company-single__excerpt,
  .news-single__excerpt {
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
@media (max-width: 680px) {
  .person-single__excerpt,
  .company-single__excerpt,
  .news-single__excerpt {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.person-single__description,
.company-single__description,
.news-single__description {
  font-size: 18px;
  line-height: 170%;
  color: #2A4A4C;
  margin-bottom: 40px;
}
@media (max-width: 1025px) {
  .person-single__description,
  .company-single__description,
  .news-single__description {
    font-size: 17px;
    margin-bottom: 30px;
  }
}
@media (max-width: 680px) {
  .person-single__description,
  .company-single__description,
  .news-single__description {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.person-single__description p,
.company-single__description p,
.news-single__description p {
  margin-bottom: 20px;
  word-break: break-word;
}
.person-single__description p:last-child,
.company-single__description p:last-child,
.news-single__description p:last-child {
  margin-bottom: 0;
}
.person-single__description ul,
.company-single__description ul,
.news-single__description ul,
.person-single__description ol,
.company-single__description ol,
.news-single__description ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
.person-single__description ul li,
.company-single__description ul li,
.news-single__description ul li,
.person-single__description ol li,
.company-single__description ol li,
.news-single__description ol li {
  margin-bottom: 10px;
}
.person-single__description a,
.company-single__description a,
.news-single__description a {
  color: #6D8C8E;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.person-single__description a:hover,
.company-single__description a:hover,
.news-single__description a:hover {
  color: #6D8C8E;
}
.person-single__body,
.company-single__body,
.news-single__body {
  margin-top: 40px;
}
@media (max-width: 1025px) {
  .person-single__body,
  .company-single__body,
  .news-single__body {
    margin-top: 30px;
  }
}
@media (max-width: 680px) {
  .person-single__body,
  .company-single__body,
  .news-single__body {
    margin-top: 20px;
  }
}
.person-single__section,
.company-single__section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 3px solid #6D8C8E;
  position: relative;
}
.person-single__section::before,
.company-single__section::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #6D8C8E;
}
@media (max-width: 1025px) {
  .person-single__section,
  .company-single__section {
    margin-top: 36px;
    padding-top: 36px;
  }
}
@media (max-width: 680px) {
  .person-single__section,
  .company-single__section {
    margin-top: 28px;
    padding-top: 28px;
  }
}
.person-single__section:first-of-type,
.company-single__section:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.person-single__section:first-of-type::before,
.company-single__section:first-of-type::before {
  display: none;
}
.person-single__section-title,
.company-single__section-title {
  font-size: 30px;
  font-weight: 700;
  color: #6D8C8E;
  margin-bottom: 32px;
  letter-spacing: -0.015em;
  position: relative;
  padding-left: 20px;
}
.person-single__section-title::before,
.company-single__section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 32px;
  background: #6D8C8E;
  border-radius: 2px;
}
@media (max-width: 1025px) {
  .person-single__section-title,
  .company-single__section-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media (max-width: 680px) {
  .person-single__section-title,
  .company-single__section-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.person-single__section-content,
.company-single__section-content {
  font-size: 17px;
  line-height: 160%;
  color: #2A4A4C;
}
@media (max-width: 680px) {
  .person-single__section-content,
  .company-single__section-content {
    font-size: 16px;
  }
}
.person-single__section-content p,
.company-single__section-content p {
  margin-bottom: 15px;
}
.person-single__section-content p:last-child,
.company-single__section-content p:last-child {
  margin-bottom: 0;
}
.person-single__section-content ul,
.company-single__section-content ul,
.person-single__section-content ol,
.company-single__section-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
}
.person-single__section-content ul li,
.company-single__section-content ul li,
.person-single__section-content ol li,
.company-single__section-content ol li {
  margin-bottom: 8px;
}
.person-single__meta,
.company-single__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company-single__meta {
  gap: 20px;
}
@media (max-width: 680px) {
  .company-single__meta {
    gap: 10px;
  }
}
.person-single__meta-item,
.company-single__meta-item {
  display: flex;
  gap: 8px;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 680px) {
  .person-single__meta-item,
  .company-single__meta-item {
    font-size: 15px;
  }
}
.person-single__meta-label,
.company-single__meta-label {
  font-weight: 600;
  color: #6D8C8E;
  flex-shrink: 0;
}
.person-single__meta-value,
.company-single__meta-value {
  color: #2A4A4C;
}
.person-single__meta-value a,
.company-single__meta-value a {
  color: #6D8C8E;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.person-single__meta-value a:hover,
.company-single__meta-value a:hover {
  color: #6D8C8E;
}
.person-single__meta-value.post-card__tags,
.company-single__meta-value.post-card__tags {
  margin: 0;
}
.person-single__meta-text {
  font-size: 16px;
  line-height: 150%;
  color: #2A4A4C;
  margin: 0;
}
@media (max-width: 680px) {
  .person-single__meta-text {
    font-size: 15px;
  }
}
.person-single__info,
.company-single__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.person-single__header {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1025px) {
  .person-single__header {
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .person-single__header {
    gap: 20px;
  }
}
@media ((max-width: 680px)) {
  .person-single__header {
    flex-direction: column;
  }
}
.person-single__image {
  flex: 0 0 45%;
}
.company-single__header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1025px) {
  .company-single__header {
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .company-single__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.news-single__content {
  max-width: 900px;
  margin: 0 auto;
}
.news-single__header {
  margin-bottom: 30px;
}
@media (max-width: 1025px) {
  .news-single__header {
    margin-bottom: 25px;
  }
}
@media (max-width: 680px) {
  .news-single__header {
    margin-bottom: 20px;
  }
}
.news-single__title {
  margin-bottom: 20px;
}
@media (max-width: 680px) {
  .news-single__title {
    margin-bottom: 15px;
  }
}
.news-single__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: #2A4A4C;
  opacity: 0.7;
}
@media (max-width: 680px) {
  .news-single__meta {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.news-single__date {
  color: inherit;
}
.news-single__image {
  margin-bottom: 30px;
}
@media (max-width: 1025px) {
  .news-single__image {
    margin-bottom: 25px;
  }
}
@media (max-width: 680px) {
  .news-single__image {
    margin-bottom: 20px;
  }
}
.news-single__body {
  margin-top: 30px;
}
@media (max-width: 1025px) {
  .news-single__body {
    margin-top: 25px;
  }
}
@media (max-width: 680px) {
  .news-single__body {
    margin-top: 20px;
  }
}
.news-single__description img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 28px 0;
  box-shadow: 0 8px 32px rgba(109, 140, 142, 0.08);
  border: 2px solid rgba(109, 140, 142, 0.1);
}
.news-single__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 36px;
  border-top: 2px solid rgba(109, 140, 142, 0.1);
  font-size: 16px;
}
@media (max-width: 680px) {
  .news-single__tags {
    font-size: 15px;
    padding-top: 28px;
  }
}
.news-single__tags-label {
  font-weight: 500;
  color: #6D8C8E;
}
.news-single__tags a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 22px;
  background: #6D8C8E;
  border: 1px solid #577071;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 2px 6px rgba(74, 107, 109, 0.2);
}
.news-single__tags a:hover {
  background: #C99A8A;
  color: #2A4A4C;
  border-color: #6D8C8E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 140, 142, 0.3);
}
.post-navigation {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 3px solid #6D8C8E;
  position: relative;
}
.post-navigation::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 120px;
  height: 3px;
  background: #6D8C8E;
}
@media (max-width: 1025px) {
  .post-navigation {
    margin-top: 40px;
    padding-top: 30px;
  }
}
@media (max-width: 680px) {
  .post-navigation {
    margin-top: 30px;
    padding-top: 20px;
  }
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 680px) {
  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: block;
  padding: 20px 28px;
  background: #ffffff;
  border: 2px solid #6D8C8E;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 24px rgba(109, 140, 142, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #E8F0F1 100%);
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background: linear-gradient(135deg, rgba(109, 140, 142, 0.1) 0%, rgba(109, 140, 142, 0.05) 100%);
  border-color: #6D8C8E;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(109, 140, 142, 0.25);
}
.post-navigation .nav-previous a:hover .nav-title,
.post-navigation .nav-next a:hover .nav-title {
  color: #6D8C8E;
}
.nav-subtitle {
  display: block;
  font-size: 13px;
  color: #6D8C8E;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-title {
  display: block;
  font-size: 18px;
  color: #2A4A4C;
  font-weight: 600;
  line-height: 140%;
  transition: color 0.3s ease;
}
.author-box {
  margin-top: 50px;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #E8F0F1 100%);
  border: 2px solid #6D8C8E;
  box-shadow: 0 8px 32px rgba(109, 140, 142, 0.12);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 1025px) {
  .author-box {
    padding: 20px;
    gap: 25px;
  }
}
@media (max-width: 680px) {
  .author-box {
    padding: 15px;
    gap: 15px;
  }
}
.author-box__avatar {
  flex-shrink: 0;
}
.author-box__avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #6D8C8E;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(109, 140, 142, 0.2);
  transition: all 0.4s ease;
}
.author-box__avatar-img:hover {
  border-color: #6D8C8E;
  box-shadow: 0 12px 32px rgba(109, 140, 142, 0.3);
  transform: scale(1.08) rotate(5deg);
}
@media (max-width: 1025px) {
  .author-box__avatar-img {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 680px) {
  .author-box__avatar-img {
    width: 80px;
    height: 80px;
  }
}
.author-box__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.author-box__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: #2A4A4C;
  margin: 0!important;
}
@media (max-width: 1025px) {
  .author-box__title {
    font-size: 22px;
  }
}
@media (max-width: 680px) {
  .author-box__title {
    font-size: 20px;
  }
}
.author-box__description {
  font-size: 17px;
  line-height: 160%;
  color: #2A4A4C;
  opacity: 0.9;
}
@media (max-width: 680px) {
  .author-box__description {
    font-size: 16px;
  }
}
.author-box__description p {
  margin-bottom: 15px;
}
.author-box__description p:last-child {
  margin-bottom: 0;
}
.person-single__sidebar {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 2px solid #6D8C8E;
  box-shadow: 0 12px 48px rgba(109, 140, 142, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1025px) {
  .person-single__sidebar {
    position: static;
    padding: 25px;
  }
}
@media (max-width: 680px) {
  .person-single__sidebar {
    padding: 20px;
  }
}
.person-single__sidebar-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 120%;
  color: #6D8C8E;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}
@media (max-width: 680px) {
  .person-single__sidebar-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.person-single__sidebar-news {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 680px) {
  .person-single__sidebar-news {
    gap: 15px;
  }
}
.person-single__sidebar-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 12px;
  background: #E8F0F1;
  border: 1px solid rgba(109, 140, 142, 0.15);
  transition: all 0.4s ease;
}
.person-single__sidebar-item:hover {
  background: rgba(109, 140, 142, 0.08);
  border-color: rgba(109, 140, 142, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(109, 140, 142, 0.15);
}
.person-single__sidebar-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 680px) {
  .person-single__sidebar-item {
    gap: 12px;
    padding-bottom: 15px;
  }
}
.person-single__sidebar-image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  border: 2px solid #6D8C8E;
  box-shadow: 0 6px 20px rgba(109, 140, 142, 0.2);
  transition: all 0.4s ease;
}
.person-single__sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(15%) contrast(1.05);
}
.person-single__sidebar-image:hover {
  border-color: #6D8C8E;
  box-shadow: 0 8px 28px rgba(109, 140, 142, 0.25);
  transform: scale(1.05) rotate(2deg);
}
.person-single__sidebar-image:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) contrast(1.1);
}
@media (max-width: 680px) {
  .person-single__sidebar-image {
    width: 70px;
    height: 70px;
  }
}
.person-single__sidebar-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.person-single__sidebar-item-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 140%;
  color: #2A4A4C;
  margin: 0;
}
.person-single__sidebar-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.person-single__sidebar-item-title a:hover {
  color: #6D8C8E;
}
@media (max-width: 680px) {
  .person-single__sidebar-item-title {
    font-size: 15px;
  }
}
.person-single__sidebar-date {
  font-size: 14px;
  color: #6D8C8E;
  font-weight: 500;
  opacity: 0.8;
}
@media (max-width: 680px) {
  .person-single__sidebar-date {
    font-size: 13px;
  }
}
.single-card__tags {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-card__tags .single-card__tag {
  color: #ffffff;
  background: #6D8C8E;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 2px 6px rgba(74, 107, 109, 0.2);
  border: 1px solid #577071;
}
.single-card__tags .single-card__tag:hover {
  background: #C99A8A;
  color: #2A4A4C;
  border-color: #6D8C8E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 140, 142, 0.3);
}
.dashicons-chart-bar:before {
  content: "\f177";
  font-size: 18px;
}
.table-of-contents {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border: 2px solid #4A6B6D;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(74, 107, 109, 0.15);
}
.table-of-contents:hover {
  border-color: #6D8C8E;
  box-shadow: 0 6px 24px rgba(74, 107, 109, 0.2);
}
.table-of-contents.active {
  margin-bottom: 30px;
}
.table-of-contents.active .toc-list {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  padding: 28px;
  border-top: 2px solid rgba(109, 140, 142, 0.3);
}
.table-of-contents.active .toc-title__arrow {
  transform: rotate(180deg);
}
@media (max-width: 680px) {
  .table-of-contents {
    margin-bottom: 20px;
  }
  .table-of-contents.active {
    margin-bottom: 20px;
  }
}
.toc-header {
  padding: 20px;
}
@media (max-width: 680px) {
  .toc-header {
    padding: 15px;
  }
}
.toc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  color: #2A4A4C;
  margin: 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.4s ease;
}
.toc-title:hover {
  color: #6D8C8E;
}
@media (max-width: 680px) {
  .toc-title {
    font-size: 18px;
  }
}
.toc-title__text {
  flex: 1;
}
.toc-title__arrow {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  transition: transform 0.3s ease;
  color: #6D8C8E;
}
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.toc-list {
  list-style: none;
  margin: 0!important;
  padding: 0;
}
.toc-item {
  margin-bottom: 10px;
}
.toc-item:last-child {
  margin-bottom: 0;
}
.toc-link {
  display: block;
  padding: 12px 20px;
  color: #6D8C8E;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: all 0.4s ease;
  margin-bottom: 6px;
}
.toc-link:hover {
  background: rgba(201, 154, 138, 0.15);
  color: #6D8C8E;
  border-left-color: #6D8C8E;
  transform: translateX(4px);
  font-weight: 600;
}
@media (max-width: 680px) {
  .toc-link {
    font-size: 14px;
  }
}
.breadcrumbs {
  display: flex;
  margin: 35px 0 ;
}
.breadcrumbs__item {
  margin-right: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(42, 74, 76, 0.7);
  transition: color 0.25s ease-in;
}
.breadcrumbs__item:not(:last-child):after {
  content: '/';
  margin-left: 6px;
  color: #B87D6B;
}
.breadcrumbs__item a {
  transition: color 0.25s ease;
}
.breadcrumbs__item a:focus-visible {
  outline: 2px solid #B87D6B;
  outline-offset: 2px;
}
.breadcrumbs__item:hover a,
.breadcrumbs__item a:focus-visible {
  color: #B87D6B;
}
@media (max-width: 600px) {
  .breadcrumbs {
    flex-wrap: wrap;
    gap: 5px 0 ;
  }
}
.site-footer {
  background: #E8F0F1;
  border-top: 3px solid #6D8C8E;
  color: #2A4A4C;
  padding: 68px 0 40px;
  margin-top: 80px;
}
@media (max-width: 1025px) {
  .site-footer {
    padding: 40px 0 25px;
    margin-top: 40px;
  }
}
@media (max-width: 680px) {
  .site-footer {
    padding: 30px 0 20px;
    margin-top: 30px;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1025px) {
  .footer__content {
    gap: 30px;
  }
}
@media (max-width: 680px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__logo a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.footer__logo a:hover {
  opacity: 0.8;
}
.footer__logo img {
  height: 70px;
  width: auto;
}
@media (max-width: 1025px) {
  .footer__logo img {
    height: 55px;
  }
}
.footer__menu {
  display: flex;
  justify-content: center;
}
@media (max-width: 550px) {
  .footer__menu {
    width: 100%;
  }
}
.footer__menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1025px) {
  .footer__menu ul {
    gap: 25px;
  }
}
@media (max-width: 800px) {
  .footer__menu ul {
    gap: 20px;
    justify-content: flex-start;
  }
}
@media (max-width: 680px) {
  .footer__menu ul {
    gap: 15px;
  }
}
@media (max-width: 550px) {
  .footer__menu ul {
    align-items: flex-start;
  }
}
.footer__menu li {
  position: relative;
}
.footer__menu li::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6D8C8E;
  transition: width 0.3s ease;
}
.footer__menu li:hover::after {
  width: 100%;
}
.footer__menu a {
  color: rgba(42, 74, 76, 0.75);
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media (max-width: 680px) {
  .footer__menu a {
    font-size: 14px;
  }
}
.footer__menu a:hover {
  color: #a2624e;
}
.footer__menu .link.current {
  color: #B87D6B;
}
.footer__email {
  text-transform: uppercase;
  color: #B87D6B;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.footer__email:hover {
  color: #B87D6B;
}
.footer__copyright {
  margin-top: 20px;
}
@media (max-width: 1025px) {
  .footer__copyright {
    text-align: center;
  }
}
.footer__copyright p {
  font-size: 13px;
  color: #2A4A4C;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 680px) {
  .footer__copyright p {
    font-size: 13px;
    text-align: left;
  }
}
.archive-section {
  padding: 40px 0 60px;
}
@media (max-width: 1025px) {
  .archive-section {
    padding: 30px 0 40px;
  }
}
@media (max-width: 680px) {
  .archive-section {
    padding: 20px 0 30px;
  }
}
.archive-header {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1025px) {
  .archive-header {
    margin-bottom: 30px;
  }
}
@media (max-width: 680px) {
  .archive-header {
    margin-bottom: 25px;
  }
}
.archive-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 130%;
  color: #2A4A4C;
  margin: 0 0 28px 0;
  letter-spacing: -0.02em;
}
@media (max-width: 1025px) {
  .archive-title {
    font-size: 40px;
  }
}
@media (max-width: 680px) {
  .archive-title {
    font-size: 34px;
  }
}
.archive-description {
  font-size: 18px;
  line-height: 150%;
  color: #2A4A4C;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto 30px auto;
}
@media (max-width: 680px) {
  .archive-description {
    font-size: 16px;
  }
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1240px) {
  .archive-grid {
    gap: 25px;
  }
}
@media (max-width: 1025px) {
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 680px) {
  .archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.archive-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(184, 125, 107, 0.3);
  box-shadow: 0 4px 16px rgba(184, 125, 107, 0.15);
}
.archive-card:hover {
  transform: translateY(-6px);
  border-color: #B87D6B;
  box-shadow: 0 8px 32px rgba(184, 125, 107, 0.3);
  background: rgba(184, 125, 107, 0.08);
}
.archive-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.archive-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: #E8F0F1;
  border-bottom: 2px solid rgba(184, 125, 107, 0.3);
}
@media (max-width: 1025px) {
  .archive-card__image {
    height: 220px;
  }
}
@media (max-width: 680px) {
  .archive-card__image {
    height: 200px;
  }
}
.archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%) contrast(1.05);
}
.archive-card:hover .archive-card__image img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.1);
}
.archive-card__content {
  padding: 20px;
}
@media (max-width: 1025px) {
  .archive-card__content {
    padding: 18px;
  }
}
@media (max-width: 680px) {
  .archive-card__content {
    padding: 15px;
  }
}
.archive-card__title {
  font-size: 21px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 10px 0;
  color: #2A4A4C;
  transition: color 0.25s ease;
}
@media (max-width: 1025px) {
  .archive-card__title {
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .archive-card__title {
    font-size: 18px;
  }
}
.archive-card:hover .archive-card__title {
  color: #B87D6B;
}
.archive-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(42, 74, 76, 0.7);
}
.archive-card__date {
  color: inherit;
}
.archive-card__excerpt {
  font-size: 15px;
  line-height: 150%;
  color: rgba(42, 74, 76, 0.82);
}
@media (max-width: 1025px) {
  .archive-card__excerpt {
    font-size: 15px;
  }
}
@media (max-width: 680px) {
  .archive-card__excerpt {
    font-size: 14px;
  }
}
.archive-empty {
  text-align: center;
  padding: 60px 20px;
}
.archive-empty p {
  font-size: 18px;
  color: #2A4A4C;
  opacity: 0.7;
}
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1025px) {
  .pagination {
    margin-top: 40px;
  }
}
@media (max-width: 680px) {
  .pagination {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.pagination .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 10px 18px;
  background-color: #ffffff;
  color: #B87D6B;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(184, 125, 107, 0.3);
  box-shadow: 0 2px 6px rgba(184, 125, 107, 0.1);
  font-weight: 600;
}
.pagination .page-numbers:hover {
  background: #B87D6B;
  color: #ffffff;
  border-color: #B87D6B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 125, 107, 0.3);
}
.pagination .page-numbers.current {
  background: #B87D6B;
  color: #ffffff;
  border-color: #a2624e;
  box-shadow: 0 4px 12px rgba(184, 125, 107, 0.3);
}
.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
}
.pagination .page-numbers.dots:hover {
  background: transparent;
  color: #2A4A4C;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  grid-auto-flow: dense;
}
@media (max-width: 550px) {
  .news-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}
.post-card__relations {
  display: flex;
  align-items: center;
  margin-top: 14px;
  border-top: 1px solid #F5F7F8;
  padding-top: 14px;
}
.post-card__relations .relation-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border: 2px solid #fff;
  position: relative;
  transition: transform 0.2s ease;
}
.post-card__relations .relation-circle + .relation-circle {
  margin-left: -10px;
}
.post-card__relations .relation-circle:hover {
  transform: translateY(-2px);
  z-index: 5;
}
.post-card__relations .relation-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card__relations .relation-placeholder {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
.archive-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width: 680px) {
  .archive-filters {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.archive-filter-btn {
  padding: 14px 32px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(232, 240, 241, 0.3) 100%);
  color: #2A4A4C;
  border: 2px solid rgba(109, 140, 142, 0.18);
  border-radius: 28px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 6px 18px rgba(109, 140, 142, 0.08);
}
.archive-filter-btn:hover {
  background: linear-gradient(180deg, rgba(109, 140, 142, 0.1) 0%, rgba(184, 125, 107, 0.15) 100%);
  border-color: rgba(109, 140, 142, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(109, 140, 142, 0.12);
}
.archive-filter-btn.active {
  background: linear-gradient(135deg, #6D8C8E 0%, #8fa8a9 100%);
  color: #ffffff;
  border-color: #6D8C8E;
  box-shadow: 0 12px 32px rgba(109, 140, 142, 0.28);
}
@media (max-width: 680px) {
  .archive-filter-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}
.archive-post-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
}
.contacts__block p:not(:last-child) {
  margin-bottom: 8px;
}
.contacts__block a {
  color: #B87D6B;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 15px;
  transition: all 0.4s ease;
}
.contacts__block a:hover {
  color: #6D8C8E;
  text-decoration: underline;
}
.feedback {
  margin-top: 50px;
}
.feedback__form {
  width: 65%;
}
@media ((max-width: 800px)) {
  .feedback__form {
    width: 100%;
  }
}
.feedback__form__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
@media ((max-width: 800px)) {
  .feedback__form__wrap {
    flex-direction: column;
  }
}
.feedback__form label {
  color: #2A4A4C;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 50%;
}
@media ((max-width: 800px)) {
  .feedback__form label {
    gap: 8px;
  }
}
.feedback__form input,
.feedback__form textarea {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  background: #E8F0F1;
  border: 2px solid rgba(184, 125, 107, 0.3);
  border-radius: 6px;
  color: #2A4A4C;
  transition: all 0.4s ease;
  box-shadow: inset 0 2px 4px rgba(184, 125, 107, 0.1);
}
.feedback__form input:focus,
.feedback__form textarea:focus {
  border-color: #B87D6B;
  box-shadow: 0 4px 12px rgba(184, 125, 107, 0.25);
  background: #ffffff;
  outline: none;
}
.feedback__form input::placeholder,
.feedback__form textarea::placeholder {
  color: #5A7B7D;
}
.feedback__form textarea {
  height: 160px;
  resize: vertical;
}
.feedback__form .btn {
  max-width: 180px;
  width: 100%;
  margin-top: 24px;
  color: #ffffff;
  border: none;
}
.feedback__form__btns {
  margin-top: 24px;
}
@media ((max-width: 800px)) {
  .feedback__form__btns {
    display: flex;
  }
}
@media ((max-width: 800px)) {
  .feedback__form button {
    padding: 18px;
    flex: 1;
  }
}
.search-section {
  padding: 40px 0 60px;
}
@media (max-width: 1025px) {
  .search-section {
    padding: 30px 0 40px;
  }
}
@media (max-width: 680px) {
  .search-section {
    padding: 20px 0 30px;
  }
}
.search-header {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1025px) {
  .search-header {
    margin-bottom: 30px;
  }
}
@media (max-width: 680px) {
  .search-header {
    margin-bottom: 25px;
  }
}
.search-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 120%;
  color: #2A4A4C;
  margin: 0 0 28px 0;
}
@media (max-width: 1025px) {
  .search-title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
@media (max-width: 680px) {
  .search-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.search-query {
  color: #6D8C8E;
  font-weight: 700;
}
.search-form__wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 680px) {
  .search-form__wrapper {
    flex-direction: column;
  }
}
.search-form__label {
  display: none;
}
.search-form__field {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1.5;
  background: #E8F0F1;
  border: 2px solid #C99A8A;
  border-radius: 6px;
  outline: none;
  color: #2A4A4C;
  transition: all 0.4s ease;
  box-shadow: inset 0 2px 4px rgba(184, 125, 107, 0.1);
}
@media (max-width: 680px) {
  .search-form__field {
    font-size: 15px;
    padding: 12px 18px;
  }
}
.search-form__field:focus {
  border-color: #B87D6B;
  box-shadow: 0 4px 12px rgba(184, 125, 107, 0.2);
  background: #ffffff;
}
.search-form__field::placeholder {
  color: #5A7B7D;
}
.search-form__submit {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: #6D8C8E;
  border: 2px solid #577071;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(109, 140, 142, 0.25);
}
@media (max-width: 680px) {
  .search-form__submit {
    padding: 12px 32px;
    font-size: 15px;
    width: 100%;
  }
}
.search-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 140, 142, 0.35);
  background: #5b7577;
}
.search-form__submit:active {
  transform: translateY(0);
}
.search-form__submit:focus-visible {
  outline: 3px solid rgba(109, 140, 142, 0.3);
  outline-offset: 4px;
}
.search-form__submit-text {
  display: inline-block;
}
.search-results {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}
@media (max-width: 1025px) {
  .search-results {
    gap: 25px;
  }
}
@media (max-width: 680px) {
  .search-results {
    gap: 20px;
  }
}
.search-result-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px;
  border: 2px solid rgba(184, 125, 107, 0.3);
  box-shadow: 0 4px 16px rgba(184, 125, 107, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1025px) {
  .search-result-item {
    padding: 36px;
  }
}
@media (max-width: 680px) {
  .search-result-item {
    padding: 32px;
  }
}
.search-result-item:hover {
  transform: translateY(-6px);
  border-color: #B87D6B;
  box-shadow: 0 8px 32px rgba(184, 125, 107, 0.3);
  background: rgba(184, 125, 107, 0.08);
}
.search-result-item__content {
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 1025px) {
  .search-result-item__content {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .search-result-item__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.search-result-item__image {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #B87D6B;
  box-shadow: none;
  height: 100%;
}
@media (max-width: 800px) {
  .search-result-item__image {
    max-width: 300px;
    margin: 0 auto;
  }
}
.search-result-item__image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.search-result-item__image a:hover img {
  transform: scale(1.05);
}
.search-result-item__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  margin-top: 20px;
}
.search-result-item__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-result-item__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: #2A4A4C;
  margin: 0;
}
@media (max-width: 1025px) {
  .search-result-item__title {
    font-size: 22px;
  }
}
@media (max-width: 680px) {
  .search-result-item__title {
    font-size: 20px;
  }
}
.search-result-item__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.search-result-item__title a:hover {
  color: #C99A8A;
}
.search-result-item__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #2A4A4C;
  opacity: 0.7;
}
@media (max-width: 680px) {
  .search-result-item__meta {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.search-result-item__date {
  color: inherit;
}
.search-result-item__type {
  padding: 4px 10px;
  background-color: #ffffff;
  border: 1px solid #B87D6B;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2A4A4C;
}
.search-result-item__excerpt {
  font-size: 17px;
  line-height: 160%;
  color: #2A4A4C;
  opacity: 0.9;
}
@media (max-width: 680px) {
  .search-result-item__excerpt {
    font-size: 16px;
  }
}
.search-result-item__excerpt p {
  margin: 0;
}
.search-result-item__footer {
  margin-top: auto;
  padding-top: 15px;
}
.search-result-item__link {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #B87D6B;
  border: 2px solid #a2624e;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(184, 125, 107, 0.2);
}
.search-result-item__link:hover {
  background-color: #6D8C8E;
  border-color: #6D8C8E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 140, 142, 0.3);
}
.search-result-item__link:focus-visible {
  outline: 2px solid #B87D6B;
  outline-offset: 2px;
}
.search-result-item.type-companies .search-result-item__image {
  height: 100%;
}
@media (max-width: 1025px) {
  .search-result-item.type-companies .search-result-item__image {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 800px) {
  .search-result-item.type-companies .search-result-item__image {
    height: 300px;
    aspect-ratio: 16/9;
    max-width: 100%!important;
  }
}
@media (max-width: 680px) {
  .search-result-item.type-companies .search-result-item__image {
    height: 150px;
    aspect-ratio: 16/9;
  }
}
.search-result-item.type-companies .search-result-item__content {
  grid-template-columns: 400px 1fr;
}
@media (max-width: 1025px) {
  .search-result-item.type-companies .search-result-item__content {
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 800px) {
  .search-result-item.type-companies .search-result-item__content {
    grid-template-columns: 1fr;
  }
}
.no-results {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  border: 2px solid rgba(184, 125, 107, 0.3);
  box-shadow: 0 4px 16px rgba(184, 125, 107, 0.15);
}
@media (max-width: 1025px) {
  .no-results {
    padding: 50px 30px;
  }
}
@media (max-width: 680px) {
  .no-results {
    padding: 40px 20px;
  }
}
.no-results .page-header {
  margin-bottom: 30px;
}
@media (max-width: 680px) {
  .no-results .page-header {
    margin-bottom: 20px;
  }
}
.no-results .page-title {
  font-size: 32px;
  font-weight: 700;
  color: #2A4A4C;
  margin: 0 0 20px 0;
}
@media (max-width: 1025px) {
  .no-results .page-title {
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .no-results .page-title {
    font-size: 24px;
  }
}
.no-results .page-content {
  font-size: 18px;
  line-height: 160%;
  color: #2A4A4C;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .no-results .page-content {
    font-size: 16px;
  }
}
.no-results .page-content p {
  margin-bottom: 30px;
}
.no-results .page-content p:last-child {
  margin-bottom: 0;
}
.no-results .page-content .search-form {
  margin-top: 30px;
}
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 1025px) {
  .pagination {
    margin-top: 40px;
  }
}
@media (max-width: 680px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: #6D8C8E;
  background-color: #ffffff;
  border: 2px solid #C99A8A;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(184, 125, 107, 0.1);
}
@media (max-width: 680px) {
  .pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
  }
}
.pagination .page-numbers:hover {
  background-color: #C99A8A;
  color: #2A4A4C;
  border-color: #C99A8A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 154, 138, 0.25);
}
.pagination .page-numbers.current {
  background-color: #B87D6B;
  color: #ffffff;
  border-color: #a2624e;
  box-shadow: 0 4px 12px rgba(184, 125, 107, 0.25);
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  padding: 0 20px;
}
@media (max-width: 680px) {
  .pagination .page-numbers.prev,
  .pagination .page-numbers.next {
    padding: 0 15px;
  }
}
.error {
  text-align: center;
}
.error__title {
  font-size: 330px;
  color: #B87D6B;
  margin: 0 auto;
  line-height: 100%;
  padding-top: 40px;
}
@media (max-width: 800px) {
  .error__title {
    font-size: 250px;
  }
}
@media (max-width: 680px) {
  .error__title {
    font-size: 150px;
    padding-top: 200px;
  }
}
.error__text {
  font-size: 40px;
  display: inline-block;
  padding-bottom: 60px;
}
@media (max-width: 680px) {
  .error__text {
    line-height: 100%;
    padding-bottom: 180px;
  }
}
