/* MAIN */
.velvet-lore {
  width: 760px;
  margin: 0px auto;
  color: #9ea4a0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* HEADER */
.velvet-header {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;

  border-left: 1px solid rgba(210,165,135,0.15);
  border-right: 1px solid rgba(210,165,135,0.15);
  border-bottom: 1px solid rgba(210,165,135,0.15);
  border-top: 1px solid rgba(210,165,135,0.15);
}

/* IMAGE + FADE */
.velvet-header::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to bottom, 
      rgba(0,0,0,0) 50%, 
      rgba(0,0,0,0.85) 85%, 
      rgba(7,9,8,1) 100%
    ),
    url(https://i.postimg.cc/Yq7wMs6v/Make-the-colors-of-the-houses-Nano-Banana-2-40881.jpg);

  background-size: cover;
  background-position: center top;

  z-index: 0;
}

/* VIGNETTE */
.velvet-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

/* SYMBOL */
.velvet-symbol {
  font-size: 26px;
  color: #d8a893;
  font-weight: 400;

  text-shadow:
    0 0 6px rgba(210,165,135,0.4),
    0 0 16px rgba(140,100,80,0.35);

  position: relative;
  z-index: 2;
}

/* TITLE */
.velvet-title {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  letter-spacing: 6px;
  color: #d5dbd7;
  font-weight: 400;

  text-shadow: 
    0 0 10px rgba(0,0,0,0.9),
    0 0 25px rgba(90,110,100,0.2);

  transform: translateY(-12px);

  position: relative;
  z-index: 2;
}

/* CONTENT */
.velvet-content {
  position: relative;
  margin-top: -40px;

  padding: 50px 30px 30px;

  background:
    linear-gradient(to bottom, rgba(7,9,8,0) 0%, #070908 40%),
    radial-gradient(circle at center, rgba(90,110,100,0.15), transparent 70%),
    #070908;

  border-left: 1px solid rgba(210,165,135,0.15);
  border-right: 1px solid rgba(210,165,135,0.15);
  border-bottom: 1px solid rgba(210,165,135,0.15);
  border-top: none;
}

/* TOP LINE */
.velvet-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;

  background: rgba(210,165,135,0.35);
  z-index: 3;
}

/* PAPER */
.velvet-paper {
  padding: 30px;

  background: linear-gradient(
      rgba(25,30,28,0.95),
      rgba(15,18,16,0.95)
    ),
    url(https://www.transparenttextures.com/patterns/old-paper.png);

  border: 1px solid rgba(255,255,255,0.07);

  box-shadow:
    inset 0 0 40px rgba(0,0,0,0.8),
    0 0 30px rgba(0,0,0,0.6);

  position: relative;
}

/* PAPER TITLE */
.velvet-paper-title {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: #d8a893;
  font-weight: 400;

  position: relative;
}

/* TITLE LINES */
.velvet-paper-title::before,
.velvet-paper-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: rgba(210,165,135,0.25);
}

.velvet-paper-title::before { left: 0; }
.velvet-paper-title::after { right: 0; }

/* TEXT */
.velvet-text {
  font-size: 11px;
  line-height: 1.4;
  color: #909892;
  text-align: justify;
  font-weight: 400;
}

/* GRAIN */
.velvet-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(https://www.transparenttextures.com/patterns/noise.png);
  opacity: 0.12;
  pointer-events: none;
}