@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800&display=swap");

:root {
  --pg-orange: #f97316;
  --pg-orange-dark: #d95d08;
  --pg-ink: #17211d;
  --pg-muted: #66736d;
  --pg-line: #dde5e1;
  --pg-soft: #f5f8f6;
  --pg-green: #174f42;
  --pg-white: #fff;
  --pg-shadow: 0 18px 50px rgba(23, 33, 29, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: #eef2ef;
  color: var(--pg-ink);
  font-family: Roboto, Arial, sans-serif;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
.posting-guide__mobile-only,
.posting-guide__step--mobile-only {
  display: none;
}
.posting-guide {
  max-width: 1440px;
  margin: auto;
  background: var(--pg-white);
  overflow: clip;
}
.posting-guide__hero {
  position: relative;
  padding: 0 6.5% 78px;
  color: #fff;
  background: linear-gradient(125deg, #123d34 0%, #1a604e 58%, #0e342c 100%);
}
.posting-guide__hero:after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}
.posting-guide__topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.posting-guide__brand {
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 700;
}
.posting-guide__brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
}
.posting-guide__start,
.posting-guide__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--pg-orange);
  font-weight: 700;
  transition:
    transform 0.2s,
    background 0.2s;
}
.posting-guide__start:hover,
.posting-guide__primary:hover {
  background: var(--pg-orange-dark);
  transform: translateY(-2px);
}
.posting-guide__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 70px;
  align-items: center;
  padding-top: 70px;
}
.posting-guide__eyebrow {
  margin: 0 0 14px;
  color: #fca86d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.posting-guide__hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.posting-guide__hero h1 strong {
  display: inline;
  white-space: nowrap;
  color: var(--pg-orange);
  font-weight: 800;
}
.posting-guide__hero h1 span {
  display: block;
  margin-top: 8px;
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.posting-guide__hero h1 em {
  color: var(--pg-orange);
  font-size: 1.08em;
  font-style: normal;
  font-weight: 700;
}
.posting-guide__lead {
  max-width: 680px;
  margin: 25px 0 0;
  color: #d7e6e0;
  font-size: 17px;
  line-height: 1.7;
}
.posting-guide__hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  color: #c8dbd4;
  font-size: 14px;
}
.posting-guide__journey {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 55px rgba(4, 25, 20, 0.25);
  backdrop-filter: blur(8px);
  transform: rotate(1deg);
}
.posting-guide__journey-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  padding: 3px 4px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}
.posting-guide__journey-head b {
  color: #ffc59c;
}
.posting-guide__journey-item {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin-top: 9px;
  border-radius: 11px;
  background: #fff;
  color: var(--pg-ink);
}
.posting-guide__journey-item > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #fff1e8;
  color: var(--pg-orange-dark);
  font-weight: 800;
}
.posting-guide__journey-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.posting-guide__journey-item small {
  color: var(--pg-muted);
}
.posting-guide__journey-item i {
  color: #55a789;
  font-style: normal;
}
.posting-guide__rail {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: -28px auto 0;
  border: 1px solid var(--pg-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(20, 45, 36, 0.12);
  overflow: hidden;
}
.posting-guide__rail a {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 64px;
  padding: 10px 17px;
  border-right: 1px solid var(--pg-line);
  color: var(--pg-muted);
  transition:
    background 0.2s,
    color 0.2s;
}
.posting-guide__rail a:last-child {
  border: 0;
}
.posting-guide__rail a span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--pg-soft);
  font-size: 13px;
}
.posting-guide__rail a b {
  font-size: 14px;
}
.posting-guide__rail a.is-active {
  background: #fff5ed;
  color: var(--pg-orange-dark);
}
.posting-guide__rail a.is-active span {
  background: var(--pg-orange);
  color: #fff;
}
.posting-guide__essentials {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  max-width: 1180px;
  margin: 92px auto;
  padding: 44px;
  border-radius: 18px;
  background: var(--pg-soft);
}
.posting-guide__essentials h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.03em;
}
.posting-guide__essentials-intro > p:not(.posting-guide__eyebrow) {
  color: var(--pg-muted);
  line-height: 1.65;
}
.posting-guide__time {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 25px;
  padding: 16px;
  border-left: 3px solid var(--pg-orange);
  background: #fff;
}
.posting-guide__time b {
  color: var(--pg-orange-dark);
}
.posting-guide__time span {
  color: var(--pg-muted);
  font-size: 13px;
}
.posting-guide__essentials ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.posting-guide__essentials li {
  display: flex;
  gap: 13px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--pg-line);
  border-radius: 12px;
  background: #fff;
}
.posting-guide__essentials li > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #fff1e8;
  color: var(--pg-orange-dark);
  font-size: 20px;
  font-weight: 700;
}
.posting-guide__essentials li div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.posting-guide__essentials small {
  color: var(--pg-muted);
  line-height: 1.5;
}
.posting-guide__chapter {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 30px;
  scroll-margin-top: 72px;
}
.posting-guide__chapter + .posting-guide__chapter {
  border-top: 1px solid var(--pg-line);
}
.posting-guide__chapter-head {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 30px;
}
.posting-guide__chapter-number {
  display: grid;
  height: 70px;
  place-items: center;
  border-radius: 12px;
  background: var(--pg-green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.posting-guide__chapter-head h3 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.03em;
}
.posting-guide__chapter-head p {
  margin: 0;
  color: var(--pg-muted);
  line-height: 1.55;
}
.posting-guide__chapter-head > span {
  padding: 8px 12px;
  border-radius: 20px;
  background: #fff1e8;
  color: var(--pg-orange-dark);
  font-size: 13px;
  font-weight: 700;
}
.posting-guide__steps {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 70px 0;
}
.posting-guide__step {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.6fr);
  gap: 60px;
  align-items: center;
  opacity: 0.32;
  transform: translateY(45px) scale(0.985);
  transition:
    opacity 0.28s,
    transform 0.28s;
}
.posting-guide__step.is-visible {
  opacity: 1;
  transform: none;
}
.posting-guide__step.is-past {
  opacity: 0.42;
  transform: translateY(-26px) scale(0.99);
}
.posting-guide__step--reverse {
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
}
.posting-guide__step--reverse .posting-guide__copy {
  order: 2;
}
.posting-guide__step--reverse .posting-guide__media {
  order: 1;
}
.posting-guide__copy {
  position: relative;
  padding: 0;
}
.posting-guide__step-index {
  position: absolute;
  z-index: 0;
  top: -72px;
  left: -12px;
  color: #edf3f1;
  font-size: 118px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.posting-guide__copy > *:not(.posting-guide__step-index) {
  position: relative;
  z-index: 1;
}
.posting-guide__kicker {
  margin: 0 0 10px !important;
  color: var(--pg-orange-dark) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.posting-guide__copy h4 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.posting-guide__copy > p:last-child {
  margin: 0;
  color: var(--pg-muted);
  font-size: 16px;
  line-height: 1.7;
}
.posting-guide__media {
  margin: 0;
  border: 1px solid #dbe4df;
  border-radius: 18px;
  background: #edf2ef;
  box-shadow: var(--pg-shadow);
  overflow: hidden;
}
.posting-guide__media picture {
  display: block;
}
.posting-guide__media img {
  display: block;
  width: 100%;
  height: auto;
  background: #e8eeeb;
}
.posting-guide__media figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 8px 16px;
  background: #fff;
  color: var(--pg-muted);
  font-size: 13px;
}
.posting-guide__full-button {
  border: 0;
  background: transparent;
  color: var(--pg-orange-dark);
  font-weight: 700;
  cursor: pointer;
}
.posting-guide__notice {
  display: flex;
  gap: 16px;
  max-width: 1180px;
  margin: 50px auto;
  padding: 22px 25px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  background: #fff7ed;
  color: #7c3d12;
}
.posting-guide__notice > span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--pg-orange);
  color: #fff;
  font-weight: 800;
}
.posting-guide__notice p {
  margin: 2px 0;
  line-height: 1.65;
}
.posting-guide__notice b {
  display: block;
  margin-bottom: 3px;
}
.posting-guide__finish {
  padding: 90px 24px;
  text-align: center;
  background: var(--pg-green);
  color: #fff;
}
.posting-guide__finish h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.04em;
  margin: 4rem 0;
  color: #fff;
  line-height: 1;
}
.posting-guide__finish h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.28s,
    transform 0.28s;
}
.posting-guide__finish.is-visible h2 span {
  opacity: 1;
  transform: none;
}
.posting-guide__finish h2 span:nth-child(2) {
  transition-delay: 0.07s;
}
.posting-guide__finish h2 span:nth-child(3) {
  transition-delay: 0.14s;
}
.posting-guide__finish h2 span:nth-child(4) {
  transition-delay: 0.21s;
}
.posting-guide__finish h2 span:nth-child(5) {
  transition-delay: 0.28s;
}
.posting-guide__finish h2 span:nth-child(6) {
  transition-delay: 0.35s;
}
.posting-guide__finish h2 span:nth-child(7) {
  transition-delay: 0.42s;
}
.posting-guide__finish > p:not(.posting-guide__eyebrow) {
  margin: 20px auto;
  color: #cfe0da;
}
.posting-guide__finish > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 26px;
  border-radius: 8px;
  background: var(--pg-orange);
  font-weight: 800;
  opacity: 0;
  transform: translateX(-45px);
  transition:
    opacity 0.28s 0.62s,
    transform 0.28s 0.62s;
}
.posting-guide__finish.is-visible > a {
  opacity: 1;
  transform: none;
}
.posting-guide__lightbox {
  width: min(94vw, 1280px);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #101512;
  color: #fff;
}
.posting-guide__lightbox::backdrop {
  background: rgba(4, 10, 7, 0.82);
}
.posting-guide__lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 16px;
}
.posting-guide__lightbox-bar button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.posting-guide__lightbox > img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}
.posting-guide__lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 44px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}
.posting-guide__lightbox-nav--prev {
  left: 12px;
}
.posting-guide__lightbox-nav--next {
  right: 12px;
}
@media (max-width: 1023px) {
  .posting-guide__hero {
    padding-inline: 32px;
  }
  .posting-guide__hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .posting-guide__journey {
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: none;
  }
  .posting-guide__journey-head {
    grid-column: 1/-1;
  }
  .posting-guide__rail {
    margin-inline: 20px;
  }
  .posting-guide__rail a b {
    display: none;
  }
  .posting-guide__rail a {
    justify-content: center;
  }
  .posting-guide__essentials {
    margin: 70px 28px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .posting-guide__steps {
    gap: 80px;
  }
  .posting-guide__step,
  .posting-guide__step--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .posting-guide__step--reverse .posting-guide__copy,
  .posting-guide__step--reverse .posting-guide__media {
    order: initial;
  }
  .posting-guide__copy {
    padding: 6px;
  }
  .posting-guide__media img {
    max-height: none;
  }
}
@media (max-width: 767px) {
  .posting-guide__desktop-only {
    display: none !important;
  }
  .posting-guide__mobile-only {
    display: inline;
  }
  .posting-guide__step--mobile-only {
    display: grid;
  }
  html {
    scroll-padding-top: 70px;
  }
  .posting-guide__hero {
    padding: 0 20px 55px;
  }
  .posting-guide__topbar {
    min-height: 68px;
  }
  .posting-guide__brand span {
    font-size: 14px;
    color: #fff;
  }
  .posting-guide__start {
    display: none;
  }
  .posting-guide__hero-grid {
    padding-top: 42px;
  }
  .posting-guide__hero h1 {
    font-size: 40px;
  }
  .posting-guide__hero h1 strong {
    display: block;
    margin-top: 5px;
  }
  .posting-guide__lead {
    font-size: 15px;
  }
  .posting-guide__hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .posting-guide__journey {
    display: block;
    padding: 14px;
  }
  .posting-guide__journey-item {
    padding: 9px;
  }
  .posting-guide__rail {
    top: 0;
    margin: -20px 10px 0;
    border-radius: 11px;
  }
  .posting-guide__rail a {
    min-height: 56px;
    padding: 7px;
  }
  .posting-guide__rail a span {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .posting-guide__essentials {
    margin: 55px 16px;
    padding: 25px 20px;
  }
  .posting-guide__essentials h2 {
    font-size: 28px;
  }
  .posting-guide__essentials ul {
    grid-template-columns: 1fr;
  }
  .posting-guide__chapter {
    padding: 42px 16px;
  }
  .posting-guide__chapter-head {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }
  .posting-guide__chapter-head > span {
    display: none;
  }
  .posting-guide__chapter-number {
    height: 58px;
  }
  .posting-guide__chapter-head h3 {
    font-size: 25px;
  }
  .posting-guide__chapter-head p {
    font-size: 14px;
  }
  .posting-guide__steps {
    gap: 68px;
    padding-top: 55px;
  }
  .posting-guide__step {
    gap: 22px;
    opacity: 1;
    transform: none;
  }
  .posting-guide__copy h4 {
    font-size: 23px;
  }
  .posting-guide__step-index {
    top: -48px;
    left: 0;
    font-size: 78px;
  }
  .posting-guide__notice {
    margin: 35px 16px;
  }
  .posting-guide__finish {
    padding-block: 70px;
  }
}
@media (min-width: 768px) {
  .posting-guide__step.posting-guide__step--mobile-only {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .posting-guide__step,
  .posting-guide__finish h2 span,
  .posting-guide__finish > a {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .posting-guide__start,
  .posting-guide__primary {
    transition: none;
  }
}
