/* ================================================
   TECHNICAL REVIEW PAGE LAYOUT
   technicalreview-layout.css
   ================================================ */

/* ── What's included list ───────────────────── */
.included-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.included-list li {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    font-size: 0.95rem;
    color: rgba(245,242,237,0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: '→';
    color: #c9a84c;
    flex-shrink: 0;
}

/* ── How It Works steps ─────────────────────── */
.how-step {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.how-step:last-child {
    border-bottom: none;
}

.how-step__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #BE0F17;
    flex-shrink: 0;
    line-height: 1;
    width: 2rem;
    text-align: right;
}

.how-step__text {
    font-size: 0.95rem;
    color: rgba(245,242,237,0.7);
    line-height: 1.65;
}

.how-step__text strong {
    color: #f5f2ed;
}

.how-step__text a {
    color: #c9a84c;
}

/* ── Coming soon treatment ──────────────────── */
.coming-soon-banner {
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.06);
    padding: 2rem 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.coming-soon-banner p {
    font-size: 0.95rem;
    color: rgba(245,242,237,0.55);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.coming-soon-banner__label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
    .coming-soon-banner {
        padding: 2rem 1.5rem;
    }
}
