.newsroom-shell {
  padding-top: 75px;
}

.newsroom-panel {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(36, 53, 30, 0.12);
  overflow: hidden;
}

.newsroom-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 300px;
  background: linear-gradient(
    265deg,
    #1d100a 65.04%,
    rgb(102 102 102 / 90%) 74%
  );
}

.newsroom-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0b1d0a 49.04%,
    rgba(102, 102, 102, 0) 100%
  );
  pointer-events: none;
}

.newsroom-hero__content,
.newsroom-hero__visual {
  position: relative;
  z-index: 1;
}

.newsroom-hero__content {
  padding: 58px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  text-align: center;
}

.blog-page .newsroom-hero__content {
  align-items: flex-start;
  text-align: left;
}

.newsroom-pill,
.newsroom-section__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 18px;
  border-radius: 999px;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 600;
}

.newsroom-pill {
  background: #e7f2e7;
  box-shadow: 0 0 1.9px 0 #00000040;
  color: #197415;
  margin: 0 auto;
}

.blog-page .newsroom-pill {
  margin: 0;
}

.newsroom-hero__title {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  color: #ffffff;
  font-weight: 500;
  max-width: 560px;
}

.newsroom-hero__desc {
  max-width: 560px;
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
  color: #d6d6d6;
}

.blog-page .newsroom-hero__desc {
  text-align: left;
}

.newsroom-hero__visual {
  min-height: 100%;
  overflow: hidden;
}

.newsroom-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 140px;
  background: linear-gradient(
    90deg,
    #0b1d0a 0%,
    rgba(11, 29, 10, 0.78) 34%,
    rgba(11, 29, 10, 0.24) 68%,
    rgba(11, 29, 10, 0) 100%
  );
  pointer-events: none;
}

.newsroom-hero__visual img,
.newsroom-hero__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.newsroom-searchbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  padding: 22px 36px;
  background: #ffffff;
}

.newsroom-searchbar__intro small {
  display: block;
  margin-bottom: 6px;
  color: #4fa349;
  font-weight: 700;
  font-size: 13px;
}

.newsroom-searchbar__intro h2 {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 28px;
  font-weight: 600;
  color: #1d231d;
}

.newsroom-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  background: #ffffff;
  border: 1px solid #d8d6cf;
  border-radius: 8px;
  overflow: hidden;
}

.newsroom-search input {
  border: 0;
  padding: 14px 18px;
  font: inherit;
  color: #343434;
  background: transparent;
  outline: none;
}

.newsroom-search button {
  border: 0;
  background: #101010;
  color: #ffffff;
  padding: 0 24px;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-weight: 600;
  cursor: pointer;
}

.newsroom-section {
  padding: 36px;
  margin: 40px;
  background: #f6f6f6;
  border-radius: 6px;
}

.newsroom-grid {
  display: grid;
}

.blog-page .newsroom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.newsroom-page:not(.blog-page) .newsroom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  background: #ffffff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-3px);
}

.blog-page .news-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 184px;
  padding: 16px 16px 14px;
  border: 1px solid #d9dde2;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(31, 43, 29, 0.04);
}

.blog-page .news-card:hover {
  box-shadow: 0 12px 24px rgba(31, 43, 29, 0.08);
}

.blog-page .news-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.blog-page .news-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.blog-page .news-card__category {
  font-size: 12px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  color: #4fa349;
}

.blog-page .news-card__share {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: #3b3b3b;
  font-size: 11px;
  line-height: 1.1;
  flex-shrink: 0;
}

.blog-page .news-card__share i {
  font-size: 12px;
}

.blog-page .news-card__title {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #222222;
}

.blog-page .news-card__text {
  font-size: 13px;
  font-family: "Mulish", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: #4c4c4c;
}

.blog-page .news-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 0;
  color: #4fa349;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 600;
}

.blog-page .news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  color: #7c7c7c;
  font-size: 11px;
}

.blog-page .news-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-page .news-card__meta-item i {
  color: #4fa349;
  font-size: 11px;
}

.newsroom-page:not(.blog-page) .news-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 25px;
  padding: 18px;
  border: 1px solid #efeee8;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(31, 43, 29, 0.05);
}

.newsroom-page:not(.blog-page) .news-card:hover {
  box-shadow: 0 18px 30px rgba(31, 43, 29, 0.1);
}

.newsroom-page:not(.blog-page) .news-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.newsroom-page:not(.blog-page) .news-card__date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Mulish", sans-serif;
  color: #343434;
}

.newsroom-page:not(.blog-page) .news-card__title {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: #197415;
}

.newsroom-page:not(.blog-page) .news-card__text {
  font-size: 14px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  color: #000000;
}

.newsroom-page:not(.blog-page) .news-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 8px;
  background: #4fa349;
  color: #ffffff;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 600;
}

.newsroom-page:not(.blog-page) .news-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 180px;
  max-height: 180px;
  background: #132016;
}

.newsroom-page:not(.blog-page) .news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newsroom-awards {
  margin: 0 36px 36px;
  padding: 34px 28px 30px;
  background: linear-gradient(180deg, #f3efe5 0%, #f7f3ea 100%);
  border-radius: 18px;
}

.newsroom-section__heading {
  text-align: center;
  margin-bottom: 26px;
}

.newsroom-section__pill {
  margin: 0 auto 12px;
  background: #ffffff;
  color: #4fa349;
  box-shadow: 0 8px 16px rgba(53, 73, 47, 0.07);
}

.newsroom-section__heading h2 {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 32px;
  font-weight: 600;
  color: #252824;
  margin-bottom: 8px;
}

.newsroom-section__heading p {
  color: #6b6d66;
  font-size: 14px;
}

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

.award-card {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  border: 1px solid rgba(79, 163, 73, 0.12);
  padding: 25px;
  min-height: 148px;
}

.award-card__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 8px 20px 8px 18px;
  margin-left: -25px;
  border-radius: 0 999px 999px 0;
  background: #4fa349;
  color: #ffffff;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.award-card h3 {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  color: #232622;
  margin-bottom: 10px;
}

.award-card p {
  font-size: 16px;
  color: #197415;
  font-weight: 500;
}

.newsroom-cta {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 24px;
  padding: 0;
  background: #2f2f2f;
  overflow: hidden;
}

.newsroom-cta::before,
.newsroom-cta::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(87, 182, 80, 0.32);
  border-radius: 30%;
}

.newsroom-cta::before {
  left: -90px;
  bottom: -80px;
  transform: rotate(22deg);
  background: linear-gradient(
    180deg,
    rgba(132, 205, 34, 0.18),
    rgba(132, 205, 34, 0)
  );
}

.newsroom-cta::after {
  right: -105px;
  top: -60px;
  border-radius: 50%;
}

.newsroom-cta__art {
  min-height: 220px;
  position: relative;
}

.newsroom-cta__art--left::before,
.newsroom-cta__art--left::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #97c61d 0%, #5da51b 100%);
  border-radius: 22px;
  opacity: 0.9;
}

.newsroom-cta__art--left::before {
  width: 108px;
  height: 190px;
  left: 22px;
  bottom: -42px;
  transform: rotate(22deg);
}

.newsroom-cta__art--left::after {
  width: 92px;
  height: 92px;
  left: 90px;
  bottom: 28px;
  transform: rotate(22deg);
}

.newsroom-cta__art--right::before,
.newsroom-cta__art--right::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(87, 182, 80, 0.35);
  border-radius: 50%;
}

.newsroom-cta__art--right::before {
  width: 160px;
  height: 160px;
  right: -42px;
  top: 26px;
}

.newsroom-cta__art--right::after {
  width: 108px;
  height: 108px;
  right: 8px;
  top: 52px;
}

.newsroom-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 42px 0;
  color: #ffffff;
}

.newsroom-cta__content h2 {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsroom-cta__content p {
  max-width: 620px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.newsroom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.newsroom-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 14px;
  font-weight: 600;
}

.newsroom-cta__btn--solid {
  background: linear-gradient(90deg, #3daa33 0%, #63c35a 100%);
  color: #ffffff;
}

.newsroom-cta__btn--ghost {
  background: #ffffff;
  color: #3c9a38;
}

.blog-subscribe {
  width: min(460px, 100%);
  margin: 0 auto;
}

.blog-subscribe__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 12px;
  width: 100%;
}

.blog-subscribe__input {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #4a4a4a;
  color: #ffffff;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

.blog-subscribe__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.blog-subscribe__button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: #43a535;
  color: #ffffff;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .newsroom-hero {
    grid-template-columns: 1fr;
  }

  .newsroom-hero__visual {
    min-height: 220px;
  }

  .newsroom-searchbar,
  .newsroom-cta {
    grid-template-columns: 1fr;
  }

  .newsroom-cta__art {
    display: none;
  }
}

@media (max-width: 900px) {
  .award-grid {
    grid-template-columns: 1fr;
  }

  .blog-page .newsroom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsroom-page:not(.blog-page) .newsroom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .newsroom-shell {
    padding-top: 70px;
  }

  .newsroom-panel {
    width: 100%;
  }

  .newsroom-hero__content,
  .newsroom-searchbar,
  .newsroom-section,
  .newsroom-awards {
    padding-left: 20px;
    padding-right: 20px;
  }

  .newsroom-hero__content {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .blog-page .newsroom-hero__content {
    padding: 20px;
  }

  .newsroom-section {
    margin: 0;
  }

  .newsroom-searchbar__intro h2,
  .newsroom-section__heading h2,
  .newsroom-cta__content h2 {
    font-size: 26px;
  }

  .blog-page .newsroom-grid,
  .newsroom-page:not(.blog-page) .newsroom-grid {
    grid-template-columns: 1fr;
  }

  /* .blog-subscribe__form {
        grid-template-columns: 1fr;
    } */
}

.support-plans {
  padding: 40px;
  background: #f7f7f3;
}

.support-plans__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 34px;
}

.support-plans__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #197415;
  font-family: var(--font-mulish, "Mulish", sans-serif);
  font-size: 16px;
  font-weight: 700;
}

.support-plans .section-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  color: #343434;
  margin-bottom: 10px;
}

.support-plans .section-desc {
  max-width: 420px;
  margin: 0 auto;
  font-weight: 500;
  font-family: "Mulish", serif;
  font-size: 14px;
  color: #343434;
  text-align: center;
}

.support-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 20px 40px;
}

.support-plan-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #dfe6db;
  border-left: 3px solid #66a462;
  border-radius: 14px;
  padding: 24px 24px 22px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 18px rgba(52, 61, 49, 0.04);
  overflow: hidden;
}

.support-plan-card + .support-plan-card {
  margin-left: -1px;
}

.support-plan-card__ribbon {
  position: absolute;
  padding: 10px;
  top: -8px;
  right: -47px;
  width: 150px;
  height: 72px;
  background: #4fa349;
  transform: rotate(45deg);
  display: flex;
  align-items: end;
  justify-content: space-around;
  color: #ffffff;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.support-plan-card__label {
  color: #197415;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.support-plan-card__price {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  line-height: 1.05;
  margin-bottom: 4px;
}

.support-plan-card__price-note {
  font-size: 13px;
  color: #515151;
  margin-bottom: 14px;
}

.support-plan-card__desc {
  font-size: 13px;
  color: #757575;
  margin-bottom: 18px;
}

.support-plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-left: 16px;
  color: #343434;
  font-weight: 500;
  font-size: 14px;
  flex: 1;
  list-style: disc;
}

.support-plan-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 6px;
  background: #4fa349;
  color: #ffffff;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 600;
}

.doc-title {
  font-size: 36px;
}

@media (max-width: 991px) {
  .support-plans__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-plan-card + .support-plan-card {
    margin-left: 0;
  }

  .support-plan-card {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .support-plans {
    padding: 52px 0 60px;
  }

  .support-plans .section-title {
    font-size: 30px;
  }

  .support-plan-card {
    padding: 20px 18px 18px;
  }
}
