.workshop {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.workshop h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #475569;
    margin-bottom: 2rem;
    max-width: 600px;
}

.poster-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.poster-container img {
    width: min(100%, 650px);
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.cta-btn {
    margin-top: 2.5rem;
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #DEEAFF;
    color: #1f2937;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s;
}

.cta-btn:hover {
    background: #1f2937;
    color: #DEEAFF;
    transform: translateY(-2px);
}