*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
      font-family: 'Mont SemiBold', sans-serif, sans-serif;
      font-size: 18px;
  color: #222;
  line-height: 1.6;
}

.page-bg {
  background-color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  padding-left: 20px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: #1c1c23;
  display: flex;
  align-items: center;
  z-index: 9999;
  transition: height 0.25s ease, background 0.25s ease;
}

.site-header.shrink {
  height: 60px;
  background-color: #1c1c23;
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}



.blog-header-video {
  position: relative;
  width: 100%;
  height: 320px; /* как у About, можно менять */
  margin-top: 80px; /* чтобы видео не залезло под fixed header */
  overflow: hidden;
}

.blog-header-video .header-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-header-video .header-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}





.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #000 0, #000 40%, transparent 40%);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 60%;
  height: 3px;
  background: #000;
  transform: translateY(-50%);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.18em;
}

.logo-sub {
  font-weight: 400;
  letter-spacing: 0.14em;
}


.burger-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.burger-lines span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.burger-label {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}




.mobile-menu-right {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 85vw);
  height: 100%;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  z-index: 99990;
  display: flex;
  flex-direction: column;
}

.mobile-menu-right.active {
  transform: translateX(0);
}

.mobile-menu-header-right {
  background: #3b3b3b;
  border-bottom: 2px solid #b8862f;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.close-btn-right {
  font-size: 40px;
  background: none;
  border: none;
  color: #ffcc66;
  cursor: pointer;
}

.close-title-right {
  font-size: 16px;
  color: #ffcc66;
}

.mobile-menu-nav-right {
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  gap: 34px;
}

.mobile-menu-nav-right a {
  font-size: 17px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 12px;
}


.page-hero {
  padding: 40px 0 28px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-title {
  font-size: 52px;
  font-weight: 300;
  text-transform: lowercase;
}

.hero-icon-box {
  width: 110px;
  height: 110px;
  background-color: #ff7f32;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-lines {
  width: 60px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 4px;
  box-shadow: inset 0 -8px 0 #fff;
}

.search-bar {
  background-color: #fde1cf;
  padding: 20px 0;
}

.search-bar-inner {
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

.search-bar-inner input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
}

.search-icon {
  font-size: 16px;
  opacity: 0.6;
}

.page-main {
  padding: 40px 0 0;
}

.posts-grid-section {
  padding-bottom: 50px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}

.post-card {
  background-color: #2d545e;
  display: flex;
  flex-direction: column;
}

.post-thumb-wrap {
  display: block;
}

.post-card-body {
  padding: 16px 10px 10px;
}

.post-title-link {
  font-size: 18px;
  font-weight: 400;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

.meta-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c7c7c7;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin: 35px 0 40px;
}

.btn-primary {
 display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-family: montbold;
    background: #0887EB;
    border-radius: 100px;
    padding: 17px 40px;
    text-decoration: none;
    max-width: 372px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border:0;
}

.btn-primary--small {
  padding: 10px 26px;
  font-size: 14px;
}

.breadcrumbs {
  padding: 18px 0;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.crumb {
  color: #000;
  text-decoration: none;
  opacity: 0.85;
}

.crumb:hover {
  opacity: 1;
}

.crumb-sep {
  color: #000;
  opacity: 0.6;
}

.crumb-current {
  color: #000;
  text-decoration: underline;
  opacity: 1;
}



.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 10px;
  border: 1px solid #555;
  background: #191919;
  color: #f5f5f5;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
}





/* single post */

.single-hero {
  padding: 30px 0 18px;
}

.single-hero-inner {
  display: grid;
/*  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);*/
  gap: 34px;
}

.single-hero-image-wrap {
/*  background-color: #fff;*/
}

.single-hero-sidebar {
  display: none;
  background-color: #f9f0e6;
  padding: 26px 22px;
}

.sidebar-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 18px;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  margin-bottom: 14px;
}

.sidebar-link {
  font-size: 15px;
  display: block;
}

.sidebar-date {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

.single-content-section {
  padding: 10px 0 60px;
}

.single-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #888;
  margin-bottom: 26px;
}

.single-body h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 14px;
}

.single-body h3 {
  font-size: 20px;
  margin-top: 26px;
  margin-bottom: 10px;
}

.single-body p {
  margin-top: 10px;
}

.single-body p:first-child {
  margin-top: 0;
}

.single-body img,
.single-image-block img {
  display: block;
  width: 100%;
  margin: 24px auto;
}


.single-body p + p {
  margin-top: 16px;
}

.single-body em {
  font-style: italic;
}

.single-share {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.single-share-label {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 13px;
}

.single-share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  background-color: #2d545e;
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
}

.single-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.single-nav-prev,
.single-nav-next {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.nav-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #999;
}

.nav-title {
  max-width: 260px;
}

.nav-arrow {
  font-size: 18px;
}

p {
  margin: 0 0 18px;
}

footer {
    background-color: #000000;
    padding: 40px 30px 40px 30px;
    height: auto;
    color:#a1a1a1;
    font-size: 16px;
      line-height: 1.5;
          font-family: 'Mont SemiBold', sans-serif, sans-serif;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-size: 13px;
  text-align: center;
}

.footer-links a {
  color: #ccc;
  text-decoration: underline;

}


.single-hero .container.single-hero-inner {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.single-hero-image-wrap {
  width: 100%;
}

.single-hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}



/* responsive */

@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-social {
    margin-left: 0;
  }
  .single-nav {
    flex-direction: column;
  }
}
