/* CHILL-visual-board-Control v1.0.0 */
.chill-visual,
.chill-visual * {
  box-sizing: border-box;
}

.chill-visual-debug {
  width: min(100% - 28px, 1240px);
  margin: 14px auto !important;
  padding: 10px !important;
  background: #eef1f5 !important;
  border: 1px solid #d7dde6 !important;
  white-space: pre-wrap !important;
  color: #111 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.chill-visual {
  width: min(100% - 28px, 1240px);
  margin: 28px auto 34px;
  color: #f2f6e8;
}

.chill-visual a {
  text-decoration: none !important;
}

.chill-visual__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.chill-visual__panel {
  position: relative;
  min-height: 320px;
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(160, 255, 60, 0.05), transparent 28%),
    linear-gradient(180deg, #10120c 0%, #080906 100%);
  border: 1px solid rgba(164, 220, 62, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.33);
  overflow: hidden;
}

.chill-visual__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035);
}

.chill-visual__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 14px;
}

.chill-visual__heading-wrap {
  min-width: 0;
}

.chill-visual__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px !important;
  color: #f7fbe8 !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.02em !important;
}

.chill-visual__heading-icon {
  display: inline-flex;
  color: #ff4fd8;
  filter: drop-shadow(0 0 10px rgba(255, 79, 216, 0.45));
}

.chill-visual__heading-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}

.chill-visual__subtitle {
  margin: 0 !important;
  color: rgba(238, 245, 220, 0.72) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

.chill-visual__tag {
  margin: 4px 0 0 !important;
  color: #a8dc32 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.chill-visual__thumbs {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: repeat(2, 112px);
  gap: 8px;
}

.chill-visual__thumb {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #0b0d08;
  border: 1px solid rgba(172, 225, 55, 0.14);
  isolation: isolate;
}

.chill-visual__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 -34px 56px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(255,255,255,0.03);
}

.chill-visual__thumb:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) brightness(1.04);
}

.chill-visual__thumb--large {
  grid-row: span 2;
}

.chill-visual__thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.chill-visual__empty {
  min-height: 236px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px dashed rgba(172, 225, 55, 0.25);
  color: rgba(247, 251, 232, 0.58);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.chill-visual__button-row {
  margin-top: 14px;
}

.chill-visual__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(168, 220, 50, 0.72);
  color: #a8dc32 !important;
  background: rgba(168, 220, 50, 0.05);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035);
}

.chill-visual__button:hover {
  background: rgba(168, 220, 50, 0.11);
}

.chill-visual__insta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 112px);
  gap: 8px;
}

.chill-visual__insta-item {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0b0d08;
  border: 1px solid rgba(255, 79, 216, 0.12);
}

.chill-visual__insta-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 -28px 48px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(255,255,255,0.03);
}

.chill-visual__insta-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) brightness(1.04);
}

.chill-visual__insta-item img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.28s ease, filter 0.28s ease;
}

@media (max-width: 1024px) {
  .chill-visual__grid {
    grid-template-columns: 1fr;
  }

  .chill-visual__panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .chill-visual {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin: 10px 0 18px;
    padding: 16px 0 18px;
    transform: translateX(-50%);
    color: #f2f6e8;
    background:
      radial-gradient(circle at 18% 0%, rgba(168, 220, 50, 0.10), transparent 42%),
      linear-gradient(180deg, #080906 0%, #050604 100%);
    overflow: hidden;
  }

  @supports (width: 100dvw) {
    .chill-visual {
      width: 100dvw;
      max-width: 100dvw;
    }
  }

  .chill-visual__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .chill-visual__panel {
    min-height: auto;
    padding: 14px 12px 15px;
    border-radius: 16px;
    border-color: rgba(172, 225, 55, 0.16);
    background:
      radial-gradient(circle at 16% 0%, rgba(168, 220, 50, 0.07), transparent 36%),
      linear-gradient(180deg, #11140f 0%, #080a06 100%);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.42);
  }

  .chill-visual__panel::after {
    border-radius: 16px;
  }

  .chill-visual__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 10px;
  }

  .chill-visual__heading {
    font-size: 20px !important;
    line-height: 1.15 !important;
    margin-bottom: 4px !important;
  }

  .chill-visual__subtitle {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
    max-width: 250px;
  }

  .chill-visual__tag {
    margin-top: 3px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }

  .chill-visual__heading-icon svg {
    width: 22px;
    height: 22px;
  }

  .chill-visual__thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 158px 88px 88px;
    gap: 8px;
  }

  .chill-visual__thumb--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .chill-visual__thumb {
    border-radius: 12px;
    border-color: rgba(172, 225, 55, 0.16);
  }

  .chill-visual__thumb::after {
    box-shadow: inset 0 -34px 56px rgba(0,0,0,0.34), inset 0 0 0 1px rgba(255,255,255,0.035);
  }

  .chill-visual__insta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 96px);
    gap: 8px;
  }

  .chill-visual__insta-item {
    border-radius: 12px;
    border-color: rgba(255, 79, 216, 0.13);
  }

  .chill-visual__button-row {
    margin-top: 12px;
  }

  .chill-visual__button {
    width: 100%;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(168, 220, 50, 0.075) !important;
  }

  .chill-visual__empty {
    min-height: 160px;
    border-radius: 12px;
    font-size: 12px;
    padding: 16px;
  }
}

@media (max-width: 380px) {
  .chill-visual {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .chill-visual__grid {
    gap: 10px;
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }

  .chill-visual__panel {
    padding: 13px 10px 14px;
    border-radius: 15px;
  }

  .chill-visual__panel::after {
    border-radius: 15px;
  }

  .chill-visual__heading {
    font-size: 19px !important;
  }

  .chill-visual__subtitle {
    max-width: 220px;
  }

  .chill-visual__thumbs {
    grid-template-rows: 148px 82px 82px;
    gap: 7px;
  }

  .chill-visual__insta-grid {
    grid-template-rows: repeat(4, 90px);
    gap: 7px;
  }

  .chill-visual__button {
    min-height: 35px;
  }
}


/* v1.2.1 LOOKBOOK archive skin - mockup aligned */
/* v1.2.7 LOOKBOOK archive skin - content-only scope.
   Do not style body, Astra wrappers, header, footer, or global containers here. */
.chill-lookbook-archive,
.chill-lookbook-archive * {
  box-sizing: border-box;
}

.chill-lookbook-archive {
  --clvb-bg: #050604;
  --clvb-card: rgba(8, 10, 6, .92);
  --clvb-line: rgba(167, 255, 22, .24);
  --clvb-line-strong: rgba(167, 255, 22, .56);
  --clvb-green: #a7ff16;
  --clvb-green2: #74d915;
  --clvb-text: #f7f7ef;
  --clvb-muted: rgba(247, 247, 239, .68);
  position: relative;
  width: 100%;
  margin: 0 auto 54px;
  padding: 0 0 36px;
  color: var(--clvb-text);
  background:
    radial-gradient(circle at 82% 8%, rgba(167,255,22,.09), transparent 23%),
    radial-gradient(circle at 8% 72%, rgba(167,255,22,.045), transparent 28%),
    #050604;
  overflow: hidden;
}

.chill-lookbook-archive a {
  color: inherit;
  text-decoration: none !important;
}

.chill-lookbook-hero {
  position: relative;
  min-height: 300px;
  margin: 0 0 30px;
  border-bottom: 1px solid rgba(167,255,22,.24);
  background:
    linear-gradient(180deg, rgba(5,6,4,.84), rgba(5,6,4,.82)),
    radial-gradient(circle at 78% 52%, rgba(167,255,22,.22), transparent 22%),
    linear-gradient(90deg, #050604 0%, #071006 55%, #050604 100%);
  isolation: isolate;
  overflow: hidden;
}

.chill-lookbook-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.chill-lookbook-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .42;
  filter: saturate(1.08) contrast(1.14) brightness(.82);
}

.chill-lookbook-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,4,.98) 0%, rgba(5,6,4,.66) 42%, rgba(5,6,4,.38) 70%, rgba(5,6,4,.96) 100%),
    radial-gradient(circle at 75% 105%, rgba(167,255,22,.26), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 38%);
}

.chill-lookbook-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: 32px;
  width: min(100% - 44px, 1320px);
  min-height: 300px;
  margin: 0 auto;
  padding: 44px 0;
}

.chill-lookbook-hero__content {
  min-width: 0;
}

.chill-lookbook-hero__kicker {
  margin: 0 0 10px !important;
  color: var(--clvb-green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chill-lookbook-hero h1 {
  margin: 0 !important;
  color: #eefbd8 !important;
  font-size: clamp(56px, 7vw, 92px) !important;
  line-height: .9 !important;
  font-weight: 950 !important;
  letter-spacing: -.055em !important;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(167,255,22,.20), 0 7px 0 rgba(0,0,0,.36);
}

.chill-lookbook-hero__bar {
  display: block;
  width: 72px;
  height: 3px;
  margin: 22px 0 22px;
  border-radius: 99px;
  background: var(--clvb-green);
  box-shadow: 0 0 22px rgba(167,255,22,.42);
}

.chill-lookbook-hero__lead {
  max-width: 720px;
  margin: 0 !important;
  color: var(--clvb-green);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.55;
  font-weight: 850;
  letter-spacing: .02em;
}

.chill-lookbook-hero__art {
  justify-self: end;
  width: min(100%, 480px);
  opacity: .94;
}

.chill-lookbook-hero__art img {
  display: block;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(167,255,22,.26)) drop-shadow(0 28px 40px rgba(0,0,0,.74));
}

.chill-lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100% - 44px, 1320px);
  margin: 0 auto;
}

.chill-lookbook-card {
  min-width: 0;
}

.chill-lookbook-card__linkbox {
  position: relative;
  display: block;
  min-height: 164px;
  border: 1px solid rgba(167,255,22,.24);
  border-radius: 10px;
  overflow: hidden;
  background: #090b07;
  box-shadow: 0 18px 42px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.025);
  isolation: isolate;
}

.chill-lookbook-card__media {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 0%, rgba(167,255,22,.10), transparent 38%),
    linear-gradient(180deg, #11150d, #050604);
}

.chill-lookbook-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.48) 58%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.36), transparent 56%);
}

.chill-lookbook-card__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .32s ease, filter .32s ease;
}

.chill-lookbook-card__linkbox:hover .chill-lookbook-card__media img {
  transform: scale(1.045);
  filter: saturate(1.08) brightness(1.05);
}

.chill-lookbook-card__noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(167,255,22,.36);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.chill-lookbook-card__overlay {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  bottom: 13px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 36px;
  gap: 12px;
  align-items: center;
}

.chill-lookbook-card__leaf {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #f7ffe8;
  background: linear-gradient(180deg, rgba(167,255,22,.44), rgba(82,130,18,.72));
  box-shadow: 0 0 20px rgba(167,255,22,.20);
}

.chill-lookbook-card__leaf svg {
  display: block;
  width: 23px;
  height: 23px;
}

.chill-lookbook-card__text {
  display: block;
  min-width: 0;
}

.chill-lookbook-card__text strong {
  display: block;
  overflow: hidden;
  color: var(--clvb-text);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 4px 12px rgba(0,0,0,.58);
}

.chill-lookbook-card__text em {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(247,247,239,.74);
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chill-lookbook-card__text b {
  color: var(--clvb-green);
  font-weight: 950;
}

.chill-lookbook-card__arrow {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(167,255,22,.58);
  border-radius: 999px;
  color: var(--clvb-green);
  background: rgba(0,0,0,.35);
  font-size: 28px;
  line-height: 1;
  font-weight: 450;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.chill-lookbook-empty {
  display: grid;
  place-items: center;
  width: min(100% - 44px, 1320px);
  min-height: 260px;
  margin: 0 auto;
  padding: 28px;
  border: 1px dashed rgba(167,255,22,.28);
  border-radius: 20px;
  color: var(--clvb-muted);
  background: rgba(0,0,0,.22);
  text-align: center;
  font-size: 14px;
  font-weight: 850;
}

.chill-lookbook-featurebar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100% - 44px, 1320px);
  margin: 22px auto 0;
  border: 1px solid rgba(167,255,22,.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 10% 0%, rgba(167,255,22,.08), transparent 34%),
    rgba(5,6,4,.72);
  overflow: hidden;
}

.chill-lookbook-featurebar__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 18px 22px;
  border-right: 1px solid rgba(167,255,22,.18);
}

.chill-lookbook-featurebar__item:last-child {
  border-right: 0;
}

.chill-lookbook-featurebar__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--clvb-green);
}

.chill-lookbook-featurebar__icon svg {
  display: block;
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 14px rgba(167,255,22,.24));
}

.chill-lookbook-featurebar strong {
  display: block;
  overflow: hidden;
  color: var(--clvb-green);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chill-lookbook-featurebar em {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(247,247,239,.78);
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chill-lookbook-pagination {
  width: min(100% - 44px, 1320px);
  margin: 24px auto 0;
}

.chill-lookbook-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.chill-lookbook-pagination a,
.chill-lookbook-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(167,255,22,.22);
  border-radius: 999px;
  color: rgba(247,247,239,.78) !important;
  background: rgba(0,0,0,.28);
  font-size: 12px;
  font-weight: 950;
}

.chill-lookbook-pagination .current {
  border-color: transparent;
  background: linear-gradient(180deg, #d7ff25, #96e200);
  color: #071006 !important;
}

@media (max-width: 1120px) {
  .chill-lookbook-hero__inner,
  .chill-lookbook-grid,
  .chill-lookbook-featurebar,
  .chill-lookbook-pagination,
  .chill-lookbook-empty {
    width: min(100% - 28px, 1320px);
  }

  .chill-lookbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chill-lookbook-featurebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chill-lookbook-featurebar__item:nth-child(2n) {
    border-right: 0;
  }

  .chill-lookbook-featurebar__item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(167,255,22,.18);
  }
}

@media (max-width: 760px) {
  .chill-lookbook-archive {
    padding-bottom: 26px;
  }

  .chill-lookbook-hero {
    min-height: 260px;
    margin-bottom: 18px;
  }

  .chill-lookbook-hero__inner {
    grid-template-columns: 1fr;
    min-height: 260px;
    padding: 34px 0;
  }

  .chill-lookbook-hero__art {
    display: none;
  }

  .chill-lookbook-hero h1 {
    font-size: clamp(50px, 17vw, 76px) !important;
  }

  .chill-lookbook-hero__lead {
    font-size: 14px;
  }

  .chill-lookbook-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .chill-lookbook-card__linkbox {
    min-height: 190px;
  }

  .chill-lookbook-featurebar {
    grid-template-columns: 1fr;
  }

  .chill-lookbook-featurebar__item,
  .chill-lookbook-featurebar__item:nth-child(2n),
  .chill-lookbook-featurebar__item:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(167,255,22,.18);
  }

  .chill-lookbook-featurebar__item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .chill-lookbook-card__overlay {
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    left: 11px;
    right: 11px;
    bottom: 11px;
    gap: 9px;
  }

  .chill-lookbook-card__leaf {
    width: 38px;
    height: 38px;
  }

  .chill-lookbook-card__text strong {
    font-size: 18px;
  }

  .chill-lookbook-card__text em {
    font-size: 11px;
  }
}

/* v1.2.8 LOOKBOOK single skin - content-only scope. Do not style header/footer/global wrappers. */
.chill-lookbook-single,
.chill-lookbook-single * {
  box-sizing: border-box;
}

.chill-lookbook-single {
  --clvb-bg: #050604;
  --clvb-card: rgba(8, 10, 6, .92);
  --clvb-line: rgba(167, 255, 22, .24);
  --clvb-line-strong: rgba(167, 255, 22, .56);
  --clvb-green: #a7ff16;
  --clvb-green2: #74d915;
  --clvb-text: #f7f7ef;
  --clvb-muted: rgba(247, 247, 239, .68);
  position: relative;
  width: 100%;
  margin: 0 auto 54px;
  padding: 34px 0 46px;
  color: var(--clvb-text);
  background:
    radial-gradient(circle at 84% 2%, rgba(167,255,22,.08), transparent 24%),
    radial-gradient(circle at 8% 46%, rgba(167,255,22,.045), transparent 26%),
    #050604;
  overflow: hidden;
}

.chill-lookbook-single a {
  color: inherit;
  text-decoration: none !important;
}

.chill-lookbook-single::before,
.chill-lookbook-single::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.chill-lookbook-single::before {
  top: 92px;
  left: -90px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(167,255,22,.10), transparent 64%);
  filter: blur(3px);
}

.chill-lookbook-single::after {
  right: 34px;
  top: 42%;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(167,255,22,.12);
  border-radius: 28px;
  transform: rotate(13deg);
  opacity: .45;
}

.chill-lookbook-single__wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 44px, 1320px);
  margin: 0 auto;
}

.chill-lookbook-single__back,
.chill-lookbook-single__return a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid rgba(167,255,22,.62);
  border-radius: 999px;
  color: var(--clvb-green) !important;
  background: rgba(0,0,0,.34);
  box-shadow: 0 0 18px rgba(167,255,22,.10), inset 0 0 0 1px rgba(255,255,255,.035);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .02em;
}

.chill-lookbook-single__back:hover,
.chill-lookbook-single__return a:hover {
  background: rgba(167,255,22,.10);
  box-shadow: 0 0 24px rgba(167,255,22,.18), inset 0 0 0 1px rgba(255,255,255,.045);
}

.chill-lookbook-single-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: 42px;
  align-items: center;
  margin: 26px 0 24px;
}

.chill-lookbook-single-hero__copy {
  min-width: 0;
  padding: 28px 0;
}

.chill-lookbook-single-hero__kicker {
  margin: 0 0 16px !important;
  color: var(--clvb-green);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.chill-lookbook-single-hero h1 {
  margin: 0 !important;
  color: #eefbd8 !important;
  font-size: clamp(46px, 6.2vw, 98px) !important;
  line-height: .9 !important;
  font-weight: 950 !important;
  letter-spacing: -.06em !important;
  text-transform: none;
  text-shadow:
    0 0 20px rgba(167,255,22,.28),
    0 8px 0 rgba(0,0,0,.34);
}

.chill-lookbook-single-hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 24px 0 0;
  border-radius: 999px;
  background: var(--clvb-green);
  box-shadow: 0 0 20px rgba(167,255,22,.40);
}

.chill-lookbook-single-hero__lead {
  max-width: 560px;
  margin: 22px 0 0 !important;
  color: rgba(247,247,239,.84);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 820;
  line-height: 1.7;
}

.chill-lookbook-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: rgba(247,247,239,.70);
  font-size: 13px;
  font-weight: 850;
}

.chill-lookbook-single-hero__meta b {
  color: var(--clvb-green);
  font-weight: 950;
}

.chill-lookbook-single-hero__leaf {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #f7ffe8;
  background: linear-gradient(180deg, rgba(167,255,22,.36), rgba(67,102,18,.62));
  box-shadow: 0 0 18px rgba(167,255,22,.18);
}

.chill-lookbook-single-hero__leaf svg {
  display: block;
  width: 19px;
  height: 19px;
}

.chill-lookbook-single-hero__visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(167,255,22,.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(167,255,22,.12), transparent 38%),
    #090b07;
  box-shadow:
    0 22px 52px rgba(0,0,0,.54),
    0 0 24px rgba(167,255,22,.08),
    inset 0 0 0 1px rgba(255,255,255,.025);
  isolation: isolate;
}

.chill-lookbook-single-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.32) 100%),
    linear-gradient(90deg, rgba(0,0,0,.20), transparent 44%);
}

.chill-lookbook-single-hero__visual img {
  position: relative;
  z-index: 1;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 390px;
  max-height: 520px;
  object-fit: cover !important;
  filter: saturate(1.06) contrast(1.08) brightness(.88);
}

.chill-lookbook-single-story {
  position: relative;
  margin: 22px 0 0;
  border: 1px solid rgba(167,255,22,.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 10% 0%, rgba(167,255,22,.055), transparent 32%),
    linear-gradient(180deg, rgba(12,16,9,.92), rgba(5,6,4,.92));
  box-shadow: 0 18px 42px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.022);
  overflow: hidden;
}

.chill-lookbook-single-story__content {
  width: min(100% - 56px, 1060px);
  margin: 0 auto;
  padding: 42px 0;
  color: rgba(247,247,239,.84);
  font-size: 16px;
  line-height: 1.95;
  font-weight: 650;
}

.chill-lookbook-single-story__content > *:first-child {
  margin-top: 0 !important;
}

.chill-lookbook-single-story__content > *:last-child {
  margin-bottom: 0 !important;
}

.chill-lookbook-single-story__content p {
  margin: 0 0 1.35em !important;
}

.chill-lookbook-single-story__content h2,
.chill-lookbook-single-story__content h3,
.chill-lookbook-single-story__content h4 {
  position: relative;
  margin: 1.7em 0 .72em !important;
  color: #eefbd8 !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
  letter-spacing: -.02em !important;
  text-shadow: 0 0 16px rgba(167,255,22,.18);
}

.chill-lookbook-single-story__content h2 {
  font-size: clamp(28px, 3.4vw, 44px) !important;
}

.chill-lookbook-single-story__content h3 {
  font-size: clamp(22px, 2.4vw, 32px) !important;
}

.chill-lookbook-single-story__content h2::after,
.chill-lookbook-single-story__content h3::after {
  content: "";
  display: block;
  width: 62px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--clvb-green);
  box-shadow: 0 0 16px rgba(167,255,22,.28);
}

.chill-lookbook-single-story__content a {
  color: var(--clvb-green) !important;
  font-weight: 900;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 4px !important;
}

.chill-lookbook-single-story__content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 24px 0;
  border: 1px solid rgba(167,255,22,.20);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0,0,0,.34);
}

.chill-lookbook-single-story__content .wp-block-image,
.chill-lookbook-single-story__content figure {
  margin: 24px 0 !important;
}

.chill-lookbook-single-story__content .wp-block-image img,
.chill-lookbook-single-story__content figure img {
  margin: 0;
}

.chill-lookbook-single-story__content figcaption {
  margin-top: 8px !important;
  color: rgba(247,247,239,.56);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.chill-lookbook-single-story__content blockquote {
  margin: 28px 0 !important;
  padding: 20px 22px;
  border: 1px solid rgba(167,255,22,.18);
  border-left: 4px solid var(--clvb-green);
  border-radius: 12px;
  color: rgba(247,247,239,.86);
  background: rgba(0,0,0,.24);
}

.chill-lookbook-single-story__content ul,
.chill-lookbook-single-story__content ol {
  margin: 0 0 1.35em 1.3em !important;
  padding: 0 !important;
}

.chill-lookbook-single-story__content li {
  margin: .42em 0 !important;
}

.chill-lookbook-single-related {
  margin: 34px 0 0;
}

.chill-lookbook-single-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 14px;
}

.chill-lookbook-single-related__head h2 {
  margin: 0 !important;
  color: #eefbd8 !important;
  font-size: 24px !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: -.025em !important;
}

.chill-lookbook-single-related__head h2::before {
  content: "🌿";
  margin-right: 8px;
  color: var(--clvb-green);
  filter: drop-shadow(0 0 8px rgba(167,255,22,.24));
}

.chill-lookbook-single-related__head b {
  color: var(--clvb-green);
  font-weight: 950;
}

.chill-lookbook-single-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.chill-lookbook-single-related__card {
  position: relative;
  display: block;
  min-height: 164px;
  border: 1px solid rgba(167,255,22,.24);
  border-radius: 10px;
  overflow: hidden;
  background: #090b07;
  box-shadow: 0 18px 42px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.025);
  isolation: isolate;
}

.chill-lookbook-single-related__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    radial-gradient(circle at 20% 0%, rgba(167,255,22,.10), transparent 38%),
    linear-gradient(180deg, #11150d, #050604);
}

.chill-lookbook-single-related__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.48) 58%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.36), transparent 56%);
}

.chill-lookbook-single-related__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .32s ease, filter .32s ease;
}

.chill-lookbook-single-related__card:hover .chill-lookbook-single-related__media img {
  transform: scale(1.045);
  filter: saturate(1.08) brightness(1.05);
}

.chill-lookbook-single-related__noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(167,255,22,.36);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.chill-lookbook-single-related__overlay {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  bottom: 13px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 36px;
  gap: 12px;
  align-items: center;
}

.chill-lookbook-single-related__leaf {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #f7ffe8;
  background: linear-gradient(180deg, rgba(167,255,22,.44), rgba(82,130,18,.72));
  box-shadow: 0 0 20px rgba(167,255,22,.20);
}

.chill-lookbook-single-related__leaf svg {
  display: block;
  width: 23px;
  height: 23px;
}

.chill-lookbook-single-related__text {
  display: block;
  min-width: 0;
}

.chill-lookbook-single-related__text strong {
  display: block;
  overflow: hidden;
  color: var(--clvb-text);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 4px 12px rgba(0,0,0,.58);
}

.chill-lookbook-single-related__text em {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(247,247,239,.74);
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chill-lookbook-single-related__text b {
  color: var(--clvb-green);
  font-weight: 950;
}

.chill-lookbook-single-related__arrow {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(167,255,22,.58);
  border-radius: 999px;
  color: var(--clvb-green);
  background: rgba(0,0,0,.35);
  font-size: 28px;
  line-height: 1;
  font-weight: 450;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.chill-lookbook-single__return {
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
}

.chill-lookbook-single__return a {
  min-width: 330px;
  min-height: 48px;
  font-size: 14px;
  box-shadow: 0 0 28px rgba(167,255,22,.16), inset 0 0 0 1px rgba(255,255,255,.035);
}

@media (max-width: 1120px) {
  .chill-lookbook-single__wrap {
    width: min(100% - 28px, 1320px);
  }

  .chill-lookbook-single-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .chill-lookbook-single-hero__copy {
    padding: 10px 0 0;
  }

  .chill-lookbook-single-hero__visual {
    min-height: 320px;
  }

  .chill-lookbook-single-hero__visual img {
    min-height: 320px;
  }

  .chill-lookbook-single-story__content {
    width: min(100% - 36px, 1060px);
  }
}

@media (max-width: 760px) {
  .chill-lookbook-single {
    margin-bottom: 28px;
    padding: 22px 0 32px;
  }

  .chill-lookbook-single__back {
    width: auto;
    max-width: 100%;
    min-height: 36px;
    padding: 0 17px;
    font-size: 12px;
  }

  .chill-lookbook-single-hero {
    margin-top: 20px;
  }

  .chill-lookbook-single-hero__kicker {
    margin-bottom: 12px !important;
    font-size: 12px;
  }

  .chill-lookbook-single-hero h1 {
    font-size: clamp(42px, 15vw, 72px) !important;
  }

  .chill-lookbook-single-hero h1::after {
    margin-top: 18px;
  }

  .chill-lookbook-single-hero__lead {
    margin-top: 18px !important;
    font-size: 14px;
    line-height: 1.65;
  }

  .chill-lookbook-single-hero__meta {
    margin-top: 20px;
    font-size: 12px;
  }

  .chill-lookbook-single-hero__visual,
  .chill-lookbook-single-hero__visual img {
    min-height: 230px;
    max-height: 340px;
  }

  .chill-lookbook-single-story {
    border-radius: 14px;
  }

  .chill-lookbook-single-story__content {
    width: min(100% - 28px, 1060px);
    padding: 28px 0;
    font-size: 15px;
    line-height: 1.85;
  }

  .chill-lookbook-single-story__content img {
    margin: 18px 0;
    border-radius: 12px;
  }

  .chill-lookbook-single-related__grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .chill-lookbook-single-related__card {
    min-height: 190px;
  }

  .chill-lookbook-single__return a {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .chill-lookbook-single-related__overlay {
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    left: 11px;
    right: 11px;
    bottom: 11px;
    gap: 9px;
  }

  .chill-lookbook-single-related__leaf {
    width: 38px;
    height: 38px;
  }

  .chill-lookbook-single-related__text strong {
    font-size: 18px;
  }

  .chill-lookbook-single-related__text em {
    font-size: 11px;
  }
}
