.newsHeader {
  padding: 112px 0 20px;
  width: 100%;
}

.newsHeader__container {
  margin: 0 auto;
  max-width: 1191px;
  width: min(100% - 128px, 1191px);
}

.newsHeader__breadcrumbs {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  gap: 8px;
  line-height: 1.6;
}

.newsHeader__crumb-link,
.newsHeader__crumb-label {
  color: #ffffff;
  text-decoration: none;
}

.newsHeader__crumb-link:hover {
  text-decoration: underline;
}

.newsHeader__crumb-separator {
  font-size: 18px;
  opacity: 0.8;
}

.newsHeader__title {
  color: #ffffff;
  font-family: "Gilda Display", serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.2;
  margin: 64px 0 40px;
  max-width: 768px;
}

.newsHeader__meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.newsHeader__author {
  align-items: center;
  display: inline-flex;
  gap: 16px;
}

.newsHeader__avatar-wrap {
  align-items: center;
  background: #d9d9d9;
  border-radius: 999px;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  overflow: hidden;
  width: 56px;
}

.newsHeader__avatar {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.newsHeader__avatar-placeholder {
  color: #052027;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.newsHeader__author-content {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  gap: 4px;
}

.newsHeader__author-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.newsHeader__author-time {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.6;
}

.newsHeader__social {
  display: inline-flex;
  gap: 8px;
}

.newsHeader__social-item {
  align-items: center;
  background: #000000;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  height: 32px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: lowercase;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  width: 32px;
}

.newsHeader__social-item:hover {
  background: #0f1f25;
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .newsHeader__container {
    width: min(100% - 80px, 1191px);
  }

  .newsHeader__title {
    font-size: 52px;
    margin-top: 44px;
  }
}

@media (max-width: 992px) {
  .newsHeader {
    padding-top: 92px;
  }

  .newsHeader__container {
    width: min(100% - 48px, 1191px);
  }

  .newsHeader__title {
    font-size: 44px;
    margin-bottom: 28px;
  }

  .newsHeader__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .newsHeader {
    padding-top: 72px;
  }

  .newsHeader__container {
    width: min(100% - 32px, 1191px);
  }

  .newsHeader__breadcrumbs {
    font-size: 15px;
  }

  .newsHeader__title {
    font-size: 40px;
    margin-top: 28px;
  }

  .newsHeader__author-time {
    flex-wrap: wrap;
    font-size: 15px;
  }
}
