.community-page-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  padding: 76px 0;
  background: #f4f6f5;
}

.community-page-hero-poster {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #f4f6f5;
  pointer-events: none;
}

.community-page-hero-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community-page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
}

.community-page-hero-copy {
  max-width: 570px;
}

.community-page-hero-content h1 {
  max-width: 570px;
  margin: 0;
  color: #0c1925;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 820;
  line-height: 1.02;
}

.community-page-hero-content .core-lead {
  max-width: 550px;
  margin-top: 20px;
  color: #304454;
  font-size: 19px;
  font-weight: 580;
  line-height: 1.58;
}

.community-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.community-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid #172536;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 790;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.community-button--primary {
  color: #fff;
  background: #172536;
}

.community-button--primary:hover {
  border-color: #087d8f;
  background: #087d8f;
}

.community-button--secondary {
  color: #172536;
  background: rgba(255, 255, 255, .78);
}

.community-button--secondary:hover {
  color: #fff;
  background: #172536;
}

.community-hero-signals {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  max-width: 570px;
  margin: 25px 0 0;
  padding: 0;
  color: #334457;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.community-hero-signals li {
  position: relative;
  padding-left: 15px;
}

.community-hero-signals li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #147d55;
  content: "";
}

.community-channels .wrap {
  max-width: 1180px;
}

.community-channel-group {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: 46px;
  padding: 38px 0;
  border-top: 1px solid #cfd9df;
}

.community-channel-group:last-child {
  padding-bottom: 0;
}

.community-channel-group:last-child .community-group-heading {
  align-self: center;
}

.community-group-heading .core-kicker {
  margin-bottom: 12px;
}

.community-group-heading h3 {
  margin: 0;
  color: #172536;
  font-size: 27px;
  line-height: 1.16;
}

.community-group-heading > p:last-child {
  margin: 13px 0 0;
  color: #607083;
  font-size: 14px;
  line-height: 1.65;
}

.community-channel-grid {
  display: grid;
  gap: 12px;
}

.community-channel-grid--discussion {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.community-channel-grid--updates {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.community-channel-grid--updates .community-channel-card {
  grid-column: span 2;
}

.community-channel-grid--updates .community-channel-card:nth-child(n + 4) {
  grid-column: span 3;
}

.community-channel-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 13px 14px;
  min-height: 178px;
  padding: 19px;
  border: 1px solid #cbd5dc;
  border-radius: 7px;
  color: #172536;
  background: #fff;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.community-channel-card:hover {
  border-color: #7ca9a5;
  box-shadow: 0 14px 32px rgba(28, 53, 69, .1);
  transform: translateY(-2px);
}

.community-channel-icon {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e1e6;
  border-radius: 7px;
  background: #f5f7f8;
}

.community-channel-icon svg {
  width: 27px;
  height: 27px;
}

.community-channel-card--x .community-channel-icon {
  border-color: #111;
  background: #111;
}

.community-channel-copy {
  min-width: 0;
}

.community-channel-copy strong {
  display: block;
  color: #172536;
  font-size: 18px;
  line-height: 1.3;
}

.community-channel-copy > span {
  display: block;
  margin-top: 7px;
  color: #607083;
  font-size: 13px;
  line-height: 1.55;
}

.community-channel-action {
  grid-column: 1 / -1;
  align-self: end;
  padding-top: 12px;
  border-top: 1px solid #e0e6ea;
  color: #087d8f;
  font-size: 12px;
  font-weight: 800;
}

.community-build .wrap {
  max-width: 1180px;
}

.community-contribution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #40505e;
  border-bottom: 1px solid #40505e;
}

.community-contribution-grid > a {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid #40505e;
  color: #e9f0f4;
  text-decoration: none;
  transition: background-color .18s ease;
}

.community-contribution-grid > a:last-child {
  border-right: 0;
}

.community-contribution-grid > a:hover {
  background: #182632;
}

.community-contribution-grid > a > span {
  color: #7dd5c1;
  font-size: 12px;
  font-weight: 850;
}

.community-contribution-grid h3 {
  margin: 31px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.community-contribution-grid p {
  margin: 13px 0 24px;
  color: #afbbc7;
  font-size: 14px;
  line-height: 1.7;
}

.community-contribution-grid strong {
  margin-top: auto;
  color: #8be1cf;
  font-size: 12px;
}

.community-support-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.community-support-links a {
  color: #c9d4dc;
  font-size: 13px;
  font-weight: 740;
  text-decoration-color: #647785;
  text-underline-offset: 5px;
}

.community-support-links a:hover {
  color: #8be1cf;
}

.community-standards-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(450px, 1.18fr);
  gap: 70px;
  align-items: center;
}

.community-standards-layout .core-section-heading {
  margin-bottom: 0;
}

.community-standard-list {
  border-top: 1px solid #aebfb8;
}

.community-standard-list > a {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #aebfb8;
  color: #172536;
  text-decoration: none;
}

.community-standard-list > a > span:first-child {
  color: #087d8f;
  font-size: 11px;
  font-weight: 850;
}

.community-standard-list strong,
.community-standard-list small {
  display: block;
}

.community-standard-list strong {
  font-size: 16px;
}

.community-standard-list small {
  margin-top: 4px;
  color: #50645d;
  font-size: 12px;
  line-height: 1.5;
}

.community-standard-list b {
  color: #087d8f;
  font-size: 11px;
  text-align: right;
}

@media (max-width: 1050px) {
  .community-page-hero-poster {
    opacity: .3;
  }

  .community-page-hero-content h1,
  .community-page-hero-content .core-lead {
    max-width: 620px;
  }

  .community-channel-grid--updates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-channel-grid--updates .community-channel-card,
  .community-channel-grid--updates .community-channel-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .community-standards-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (min-width: 821px) {
  html[dir="rtl"] .community-page-hero-content {
    direction: ltr;
    text-align: left;
  }

  html[dir="rtl"] .community-page-hero-copy {
    width: min(100%, 500px);
    direction: rtl;
    margin-right: auto;
    margin-left: 0;
    text-align: right;
  }

  html[dir="rtl"] .community-page-hero-copy > .community-hero-facts {
    margin-right: 0;
    margin-left: auto;
  }
}

@media (max-width: 820px) {
  .community-page-hero {
    min-height: 0;
    padding: 68px 0 44px;
  }

  .community-page-hero-poster {
    opacity: .18;
  }

  .community-channel-group {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .community-channel-group:last-child .community-group-heading {
    align-self: auto;
  }

  .community-contribution-grid {
    grid-template-columns: 1fr;
  }

  .community-contribution-grid > a {
    min-height: 0;
    padding: 25px 22px;
    border-right: 0;
    border-bottom: 1px solid #40505e;
  }

  .community-contribution-grid > a:last-child {
    border-bottom: 0;
  }

  .community-support-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .community-page-hero {
    padding: 68px 0 44px;
  }

  .community-page-hero-content h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .community-page-hero-content .core-lead {
    font-size: 17px;
    line-height: 1.52;
  }

  .community-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .community-button {
    width: 100%;
  }

  .community-hero-signals {
    display: grid;
    gap: 10px;
  }

  .community-channel-grid--discussion,
  .community-channel-grid--updates {
    grid-template-columns: 1fr;
  }

  .community-channel-card {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }

  .community-channel-icon {
    width: 42px;
    height: 42px;
  }

  .community-channel-action {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding-top: 10px;
  }

  .community-contribution-grid > a {
    padding: 25px 20px;
  }

  .community-contribution-grid h3 {
    margin-top: 21px;
  }

  .community-standard-list > a {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .community-standard-list b {
    grid-column: 2;
    text-align: left;
  }

  html[dir="rtl"] .community-standard-list b {
    text-align: right;
  }
}

@media (max-width: 360px) {
  .community-page-hero-content h1 {
    font-size: 34px;
  }
}
