.newsHeader {
  position: relative;
  width: 100%;
  background-color: var(--Protekta-graybg2);
}

.newsHeader__inner {
  position: relative;
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 210px 0 64px 0;
  background-color: var(--Protekta-graybg2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.newsHeader__backWrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.newsHeader__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--Protekta-black);
}

.newsHeader__backIcon {
  width: 11px;
  height: 11px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="11" height="11" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.69878 6.87852L9.41128 3.16602L10.4718 4.22652L5.69878 8.99952L0.925781 4.22652L1.98628 3.16602L5.69878 6.87852Z" fill="black"/></svg>');
  transform: rotate(90deg);
  flex: 0 0 auto;
}

.newsHeader__backLabel {
  font-family: "Inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.6px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.newsHeader__avatar {
  display: flex;
  align-items: center;
  width: 100%;
}

.newsHeader__avatarInner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.newsHeader__avatarImg {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: block;
  object-fit: cover;
  background: #d9d9d9;
}

.newsHeader__avatarImg--placeholder {
  background: #d9d9d9;
}

.newsHeader__avatarMeta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.5;
}

.newsHeader__authorName {
  margin: 0;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  color: var(--Protekta-black);
}

.newsHeader__authorTitle {
  margin: 0;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--Protekta-black);
}

.newsHeader__titleWrap {
  width: 100%;
  padding: 24px 0;
}

.newsHeader__title {
  margin: 0;
  font-family: "Inter";
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: 0.225px;
  color: var(--Protekta-gray);
}

.newsHeader__body {
  width: 100%;
  max-width: 900px;
  font-family: "Inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  color: var(--Protekta-black);
}

.newsHeader__body > * {
  margin: 0;
}

.newsHeader__body > * + * {
  margin-top: 12px;
}

.newsHeader__body a {
  color: inherit;
  text-decoration: underline;
}

/* Responsive (tablet/mobile only) — keep desktop untouched */
@media (max-width: 1024px) {
  .newsHeader__inner {
    padding: 180px 0 48px 0;
    gap: 24px;
  }

  .newsHeader__back {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .newsHeader__backLabel {
    white-space: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.4px;
  }

  .newsHeader__avatarImg {
    width: 48px;
    height: 48px;
  }

  .newsHeader__authorName,
  .newsHeader__authorTitle {
    font-size: 15px;
  }

  .newsHeader__title {
    font-size: 36px;
    line-height: 44px;
  }

  .newsHeader__body {
    font-size: 16px;
    line-height: 28px;
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .newsHeader__inner {
    width: 92%;
    padding: 164px 0 40px 0;
    gap: 20px;
  }

  .newsHeader__back {
    padding: 10px 0;
  }

  .newsHeader__titleWrap {
    padding: 16px 0;
  }

  .newsHeader__title {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.1px;
  }

  .newsHeader__avatarInner {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .newsHeader__body {
    font-size: 15px;
    line-height: 26px;
  }
}
