.trello-embed-wrap {
border: 1px solid rgba(245, 232, 168, 0.1);
overflow: hidden;
background: rgba(0, 0, 0, 0.2);
}
.trello-embed-frame {
width: 100%;
height: 680px;
border: none;
display: block;
}
.trello-open-btn {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: "IM Fell English SC", serif;
font-size: 18px;
letter-spacing: 3px;
color: rgba(245, 232, 168, 0.45);
text-decoration: none;
transition: color 0.25s;
}
.trello-open-btn:hover {
color: var(--gold);
}
.queue-board {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: clamp(12px, 2vw, 24px);
}
.queue-col {
display: flex;
flex-direction: column;
gap: 16px;
}
.queue-col-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.queue-col-dot {
width: 9px;
height: 9px;
border-radius: 50%;
flex-shrink: 0;
}
.queue-col-dot--done {
background: rgba(143, 168, 50, 0.8);
box-shadow: 0 0 8px rgba(143, 168, 50, 0.5);
}
.queue-col-dot--progress {
background: rgba(232, 114, 114, 0.8);
box-shadow: 0 0 8px rgba(232, 114, 114, 0.5);
animation: dotBlink 2s ease-in-out infinite;
}
.queue-col-dot--planned {
background: rgba(245, 232, 168, 0.35);
}
@keyframes dotBlink {
0%,100% {opacity: 1;}
50% {opacity: 0.35;}
}
.queue-col-title {
font-family: "Cinzel Decorative", cursive;
font-size: clamp(13px, 1.3vw, 15px);
letter-spacing: 4px;
color: var(--cream);
opacity: 0.65;
}
.queue-cards {
display: flex;
flex-direction: column;
gap: 10px;
}
.queue-card {
padding: 18px;
border: 1px solid rgba(245, 232, 168, 0.08);
background: rgba(255, 255, 255, 0.02);
transition: border-color 0.25s,transform 0.25s var(--ease);
}
.queue-card:hover {
border-color: rgba(245, 232, 168, 0.22);
transform: translateX(4px);
}
.queue-card--active {
border-color: rgba(232, 114, 114, 0.15);
background: rgba(232, 114, 114, 0.04);
}
.queue-card-tag {
font-family: "IM Fell English SC", serif;
font-size: 15px;
letter-spacing: 3px;
display: block;
margin-bottom: 10px;
}
.queue-card-tag--done {color: rgba(143, 168, 50, 0.85);}
.queue-card-tag--progress {color: rgba(232, 114, 114, 0.85);}
.queue-card-tag--planned {color: rgba(245, 232, 168, 0.4);}
.queue-card-text {
font-family: "IM Fell English SC", serif;
font-size: 16px;
letter-spacing: 1px;
color: var(--cream);
opacity: 0.75;
line-height: 1.55;
}
#queue .page-header {
  text-align: center;
}

#queue .page-header-title {
  text-align: center;
}