/* SECRETS */
.slist {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.si {
  display: grid;
  grid-template-columns: 72px 1fr;
  background: var(--k2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: default;
}
.si:hover {
  border-color: rgba(245, 160, 32, 0.3);
  transform: translateX(4px);
}
.sn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  padding: 28px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.si:nth-child(1) .sn {
  color: var(--o);
  background: rgba(245, 160, 32, 0.06);
}
.si:nth-child(2) .sn {
  color: var(--bl);
  background: rgba(27, 125, 184, 0.06);
}
.si:nth-child(3) .sn {
  color: var(--g);
  background: rgba(255, 204, 0, 0.06);
}
.si:nth-child(4) .sn {
  color: var(--o);
  background: rgba(245, 160, 32, 0.06);
}
.sb2 {
  padding: 28px 32px;
}
.sw {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.si:nth-child(1) .sw {
  color: var(--o);
}
.si:nth-child(2) .sw {
  color: var(--bl);
}
.si:nth-child(3) .sw {
  color: var(--g);
}
.si:nth-child(4) .sw {
  color: var(--o);
}
.sb2 h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.sb2 p {
  font-size: 13px;
  color: var(--w6);
  line-height: 1.7;
}
.stag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}
.so {
  background: rgba(245, 160, 32, 0.12);
  color: var(--o);
  border: 1px solid rgba(245, 160, 32, 0.2);
}
.sbl {
  background: rgba(27, 125, 184, 0.12);
  color: var(--bl);
  border: 1px solid rgba(27, 125, 184, 0.2);
}
.sg {
  background: rgba(255, 204, 0, 0.1);
  color: var(--g);
  border: 1px solid rgba(255, 204, 0, 0.2);
}
