/* Trade portal instructions page styles. */

.tcp-instructions-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 20px 64px;
    color: #2b2b2b;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.55;
}

.tcp-instructions-header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ececec;
}
.tcp-instructions-header h1 {
    font-size: 2rem;
    margin: 0 0 12px;
    color: #714007;
}
.tcp-instructions-lede {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
}

.tcp-instructions-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.tcp-instructions-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #faf7f2;
    border: 1px solid #ececec;
    border-radius: 8px;
}
.tcp-step-number {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #714007;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1;
}
.tcp-step-content { flex: 1 1 auto; min-width: 0; }
.tcp-step-content h2 { font-size: 1.2rem; margin: 0 0 8px; color: #714007; }
.tcp-step-content p { margin: 0 0 10px; }
.tcp-step-content p:last-child { margin-bottom: 0; }

.tcp-instructions-facts {
    margin: 12px 0 0;
    padding-left: 20px;
    list-style: disc;
}
.tcp-instructions-facts li { margin-bottom: 4px; }

.tcp-instructions-help {
    padding: 18px 20px;
    background: #f3eee5;
    border-left: 4px solid #714007;
    border-radius: 4px;
}
.tcp-instructions-help h3 { font-size: 1.05rem; margin: 0 0 6px; color: #714007; }
.tcp-instructions-help p { margin: 0; color: #444; }
.tcp-instructions-help a { color: #714007; text-decoration: underline; }

.tcp-instructions-cta { text-align: center; margin-top: 8px; }
.tcp-instructions-cta .tcp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}
.tcp-instructions-cta .tcp-btn-primary {
    background: #714007;
    color: #fff;
    box-shadow: 0 2px 6px rgba(113, 64, 7, 0.25);
}
.tcp-instructions-cta .tcp-btn-primary:hover,
.tcp-instructions-cta .tcp-btn-primary:focus {
    background: #5a3306;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(113, 64, 7, 0.3);
}
.tcp-instructions-cta .tcp-btn-large { min-width: 280px; }
.tcp-btn-arrow { display: inline-block; transition: transform 0.15s ease; }
.tcp-instructions-cta .tcp-btn:hover .tcp-btn-arrow { transform: translateX(3px); }

@media (max-width: 600px) {
    .tcp-instructions-container { padding: 20px 14px 48px; }
    .tcp-instructions-header h1 { font-size: 1.55rem; }
    .tcp-instructions-step { flex-direction: column; gap: 12px; }
    .tcp-step-number { flex: 0 0 36px; width: 36px; height: 36px; font-size: 1rem; }
    .tcp-instructions-cta .tcp-btn-large { min-width: 0; width: 100%; }
}
