/* Words Into Waves native theme integration */

.wiw-discovery{
  max-width:1180px;
  margin:0 auto;
  padding:0;
  color:var(--wiw-text,#eef2f6);
}

.wiw-discovery__intro{
  display:none;
}

.wiw-discovery__feelings{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
  max-width:none;
  margin:0;
}

.wiw-feeling{
  appearance:none;
  min-height:58px;
  padding:1rem 1.15rem;
  border:1px solid rgba(99,201,255,.16);
  border-radius:12px;
  background:#111b27;
  color:var(--wiw-text,#eef2f6);
  font:inherit;
  font-size:.95rem;
  font-weight:600;
  cursor:pointer;
  transition:.2s ease;
}

.wiw-feeling:hover,
.wiw-feeling:focus-visible{
  border-color:var(--wiw-accent,#63c9ff);
  background:rgba(99,201,255,.08);
  outline:none;
}

.wiw-discovery__random{
  text-align:center;
  margin-top:1.75rem;
}

.wiw-surprise,
.wiw-try,
.wiw-back{
  border:0;
  background:none;
  color:var(--wiw-accent,#63c9ff);
  cursor:pointer;
  font:inherit;
  text-decoration:underline;
  text-underline-offset:5px;
}

.wiw-discovery__results{
  margin-top:4rem;
}

.wiw-results__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  padding-bottom:1rem;
  border-bottom:1px solid rgba(99,201,255,.18);
}

.wiw-results__eyebrow{
  margin:0 0 .6rem;
  color:var(--wiw-accent,#63c9ff);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.wiw-results__head h3,
.wiw-random-card h3{
  margin:0;
  color:var(--wiw-text,#eef2f6);
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.05;
  letter-spacing:-.03em;
}

.wiw-poems{
  border-top:0;
}

.wiw-poem{
  display:grid;
  grid-template-columns:120px minmax(0,1fr) auto;
  align-items:center;
  gap:1.5rem;
  padding:1.75rem .25rem;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:var(--wiw-text,#eef2f6);
  text-decoration:none;
}

.wiw-poem__year{
  color:var(--wiw-dim,#7e8996);
}

.wiw-poem strong{
  color:var(--wiw-text,#eef2f6);
  font-size:1.35rem;
  font-weight:600;
}

.wiw-poem__arrow{
  color:var(--wiw-muted,#b9c2cc);
  font-size:.85rem;
}

.wiw-poem:hover strong{
  color:var(--wiw-accent,#63c9ff);
}

.wiw-results__footer{
  text-align:center;
  padding-top:2rem;
}

.wiw-random-card{
  padding:2rem;
  border:1px solid rgba(99,201,255,.16);
  border-radius:12px;
  background:#111b27;
  text-align:center;
}

.wiw-random-card p:not(.wiw-results__eyebrow){
  color:var(--wiw-muted,#b9c2cc);
  line-height:1.7;
}

@media(max-width:900px){
 .wiw-discovery__feelings{
   grid-template-columns:1fr;
 }
 .wiw-poem{
   grid-template-columns:70px 1fr;
 }
 .wiw-poem__arrow{
   grid-column:2;
 }
}
