/*
 * workshop-v2.css
 * Strona /warsztat w aktualnym DNA aibizneslab.pl.
 * Wymaga: v2/tokens.css, fonts.css, core.css, components.css, legacy.css.
 */

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
}

.nav-free-badge,
.nav-dropdown-item .is-dd226e1a {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    border-radius: 4px;
    vertical-align: middle;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-overlay {
    display: none;
}

.workshop-main {
    padding: 76px 0 0;
    position: relative;
    z-index: 2;
}

.workshop-main > .container {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.workshop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.hero-header {
    max-width: 760px;
}

.event-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.live-badge,
.practical-badge,
.date-info,
.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 11px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.live-badge {
    color: var(--accent);
    border-color: var(--accent-line);
    background: var(--accent-soft);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--accent);
    stroke: currentColor;
}

.workshop-headline {
    max-width: 17ch;
    margin: 0 0 20px;
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.workshop-headline .highlight {
    color: var(--text);
}

.workshop-headline .highlight::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    margin: 18px 0 0;
    background: var(--accent);
    border-radius: 999px;
}

.workshop-subtitle {
    max-width: 62ch;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-dim);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-actions span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
}

.hero-panel {
    width: 100%;
    max-width: 470px;
    justify-self: end;
    padding: 30px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.hero-panel h2 {
    margin: 18px 0 24px;
    max-width: 13ch;
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-panel-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-panel-item {
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.hero-panel-item strong,
.hero-panel-item span {
    display: block;
}

.hero-panel-item strong {
    font-size: 0.98rem;
    font-weight: 650;
    color: var(--text);
}

.hero-panel-item span {
    margin-top: 4px;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--text-dim);
}

.hero-panel-cta {
    width: 100%;
}

.hero-section {
    padding: 0 0 78px;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 22px;
    align-items: start;
    min-width: 0;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.workshop-agenda,
.ai-showcase,
.instructor-card {
    width: 100%;
    min-width: 0;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: none;
}

.agenda-title,
.showcase-header h4,
.instructor-details h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
}

.agenda-title {
    margin-bottom: 18px;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prop {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 0;
}

.prop-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    border-radius: 10px;
}

.prop-icon svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
}

.prop span:last-child {
    min-width: 0;
    color: var(--text-dim);
    line-height: 1.55;
}

.prop strong {
    color: var(--text);
    font-weight: 600;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.primary-cta,
.mobile-cta-button,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 10px;
    background: var(--accent);
    color: #0A0A0A;
    font-family: var(--font-sans);
    font-weight: 650;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.primary-cta {
    min-width: 240px;
    padding: 12px 18px;
    flex-direction: column;
    align-items: flex-start;
}

.primary-cta:hover,
.mobile-cta-button:hover,
.submit-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px var(--accent-line);
}

.cta-text {
    font-size: 0.98rem;
}

.cta-subtext {
    margin-top: 2px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(10, 10, 10, 0.68);
}

.desktop-countdown-section,
.countdown-section {
    padding: 12px 14px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.countdown-header {
    margin-bottom: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    gap: 7px;
}

.countdown-unit {
    min-width: 48px;
    padding: 7px 8px;
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    color: var(--text);
}

.countdown-label,
.countdown-subtitle {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-faint);
}

.countdown-subtitle {
    margin: 8px 0 0;
}

.showcase-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.showcase-badge {
    width: fit-content;
    color: var(--accent);
    border-color: var(--accent-line);
    background: var(--accent-soft);
}

.ai-tasks-widget {
    overflow: hidden;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    color: #F5F5F5;
}

.live-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-mono);
    font-size: 0.72rem;
}

.status-indicator,
.task-counter,
.task-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 86, 48, 0.18);
}

.counter-number {
    color: var(--accent);
}

.task-stream-main {
    height: 282px;
    overflow: hidden;
    padding: 12px;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.task-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.task-header {
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    color: rgba(245, 245, 245, 0.55);
}

.task-assistant {
    color: var(--accent);
}

.task-content {
    color: rgba(245, 245, 245, 0.92);
    font-size: 0.9rem;
    line-height: 1.42;
}

.task-status {
    margin-top: 9px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: rgba(245, 245, 245, 0.48);
}

.assistant-labels {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-tag {
    padding: 5px 8px;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    color: rgba(245, 245, 245, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    cursor: pointer;
}

.assistant-tag.active {
    color: #0A0A0A;
    border-color: var(--accent);
    background: var(--accent);
}

.instructor-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.instructor-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.instructor-details p,
.instructor-bio {
    margin: 0;
    color: var(--text-dim);
}

.instructor-bio {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.62;
}

.mobile-cta-section {
    display: none;
}

.mobile-cta-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

footer {
    border-top: 1px solid var(--border);
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 110;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 10, 10, 0.56);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    position: relative;
    padding: 28px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elev-2);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-header h2 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.modal-header p {
    margin: 0;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans) !important;
    font-size: 0.84rem !important;
    line-height: 1.45;
    color: var(--text-dim) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.checkbox-label a {
    color: var(--text);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 0.95rem;
}

.registration-form .countdown-section {
    margin-top: 18px;
}

@media (max-width: 980px) {
    .workshop-main {
        padding-top: 54px;
        overflow-x: hidden;
    }

    .workshop-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-panel {
        max-width: none;
        justify-self: stretch;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .workshop-headline {
        max-width: 16ch;
    }

    .desktop-countdown-section {
        display: none;
    }

    .mobile-cta-section {
        display: block;
        padding: 22px 0 0;
    }

    .mobile-cta-button {
        width: 100%;
        gap: 8px;
        padding: 13px 18px;
    }

    .mobile-cta-text {
        margin: 8px 0 0;
        max-width: none;
        text-align: center;
        font-family: var(--font-mono);
        font-size: 0.72rem;
        color: var(--text-faint);
    }
}

@media (max-width: 640px) {
    .workshop-main > .container {
        width: 100%;
        max-width: none;
        padding-right: 24px;
        padding-left: 24px;
    }

    .hero-header,
    .hero-panel,
    .workshop-subtitle,
    .workshop-headline,
    .hero-actions,
    .hero-content,
    .workshop-agenda,
    .ai-showcase,
    .instructor-card {
        width: 100%;
        max-width: 100%;
    }

    .workshop-main > .container {
        gap: 38px;
    }

    .event-info {
        gap: 8px;
    }

    .workshop-agenda,
    .ai-showcase,
    .instructor-card,
    .modal-content {
        padding: 20px;
    }

    .workshop-headline {
        max-width: 15ch;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions span {
        width: 100%;
    }

    .prop {
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .prop-icon {
        width: 32px;
        height: 32px;
    }

    .task-stream-main {
        height: 246px;
    }

    .primary-cta {
        width: 100%;
    }
}

/* Minimal live replay layout */
.workshop-minimal {
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.workshop-page .workshop-minimal .workshop-headline {
    max-width: none;
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.025em;
    text-wrap: balance;
    text-align: center;
}

.workshop-page .workshop-minimal .workshop-subtitle {
    max-width: none;
    margin: 0 0 22px;
    font-size: 0.96rem;
    line-height: 1.55;
    text-align: center;
}

.ws-social-proof {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 14px;
    letter-spacing: 0.01em;
}

.workshop-minimal .live-video-frame {
    border-radius: 12px;
}

.workshop-minimal .workshop-live-actions {
    margin-top: 0;
    justify-content: center;
    align-items: center;
}

.ws-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.ws-thumb-link {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #0A0A0A;
    text-decoration: none;
}

.ws-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.ws-thumb-link:hover .ws-thumb-img {
    opacity: 0.75;
}

.ws-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(10, 10, 10, 0.32);
    transition: background 0.2s ease;
}

.ws-thumb-link:hover .ws-thumb-play {
    background: rgba(10, 10, 10, 0.48);
}

.ws-thumb-play span {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.ws-divider {
    height: 1px;
    background: var(--border);
    margin: 26px 0;
}

.workshop-minimal .workshop-live-actions {
    margin-top: 0;
}

@media (max-width: 860px) {
    .workshop-minimal {
        padding-bottom: 60px;
    }
}

@media (max-width: 560px) {
    .workshop-minimal {
        padding-bottom: 44px;
    }

    .workshop-page .workshop-minimal .workshop-headline {
        font-size: 1.42rem;
    }

    .workshop-minimal .workshop-live-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .workshop-minimal .live-youtube-btn {
        width: 100%;
        justify-content: center;
    }

    .ws-thumb-play span {
        font-size: 0.92rem;
    }
}

/* Social proof stats strip */
.workshop-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 28px 0 0;
    padding: 18px 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.workshop-stats::-webkit-scrollbar { display: none; }

.workshop-stat {
    flex: 1 0 auto;
    padding: 0 28px;
    border-left: 1px solid var(--border-strong);
}

.workshop-stat:first-child {
    padding-left: 0;
    border-left: 0;
}

.workshop-stat strong {
    display: block;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
}

.workshop-stat span {
    display: block;
    margin-top: 3px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
}

/* Bonus badge flag */
.workshop-bonus-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    margin-bottom: 12px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ok);
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: 999px;
}

.workshop-bonus-flag svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .workshop-stats {
        gap: 0;
        padding: 14px 0;
        margin-top: 20px;
    }
    .workshop-stat {
        padding: 0 16px;
    }
    .workshop-stat strong {
        font-size: 1.1rem;
    }
}

/* Final workshop layout: headline, subheadline, two columns, one CTA. */
.workshop-main {
    padding: 58px 0 0;
}

.workshop-main > .container {
    gap: 0;
}

.workshop-hero {
    display: block;
    max-width: 1040px;
    margin: 0 auto;
    padding-bottom: 76px;
}

.hero-header {
    max-width: 960px;
}

.workshop-headline {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.05rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.workshop-headline .highlight::after {
    display: none;
}

.workshop-subtitle {
    max-width: 820px;
    margin: 0;
    font-size: clamp(1.04rem, 1.35vw, 1.18rem);
    line-height: 1.58;
    color: var(--text-dim);
}

.workshop-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 72px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.workshop-column {
    min-width: 0;
}

.workshop-column + .workshop-column {
    padding-left: 44px;
    border-left: 1px solid var(--border);
}

.workshop-column h2 {
    margin: 0 0 18px;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.workshop-column h2:not(:first-child) {
    margin-top: 38px;
}

.workshop-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workshop-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.62;
}

.workshop-list li::before {
    content: '';
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--accent);
}

.workshop-list strong {
    color: var(--text);
    font-weight: 650;
}

.workshop-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.workshop-cta .btn {
    min-width: 280px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.workshop-cta span {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .workshop-main {
        padding-top: 42px;
    }

    .workshop-headline {
        max-width: 100%;
        font-size: clamp(2.35rem, 10vw, 3.55rem);
    }

    .workshop-columns {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 46px;
    }

    .workshop-column + .workshop-column {
        padding-left: 0;
        padding-top: 34px;
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .workshop-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .workshop-cta .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }
}

/* ================================================================
   WB: Właściwy layout strony warsztatowej (2 kolumny)
   Treść (lewa) | Presenter + Bonusy (prawa)
   ================================================================ */

.wb-main {
    padding: 68px 0 80px;
    position: relative;
    z-index: 2;
}

.wb-layout {
    display: grid;
    grid-template-columns: 1fr 356px;
    gap: 48px;
    align-items: start;
}

/* ----- Lewa kolumna ----- */
.wb-content { min-width: 0; }

.wb-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.wb-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
}

.wb-badge svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.wb-badge-live {
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
}

.wb-badge-sec {
    color: var(--text-faint);
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
}

/* Headline kontrolowane rozmiarowo */
.wb-headline {
    font-size: clamp(1.85rem, 2.8vw, 2.6rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.036em;
    margin: 0 0 10px;
    max-width: 22ch;
    text-wrap: balance;
    color: var(--text);
}

/* Subtitle — zwykły tekst, nie heading */
.wb-sub {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dim);
    margin: 0 0 14px;
    max-width: 54ch;
}

/* Opis */
.wb-desc {
    font-size: 0.94rem;
    line-height: 1.68;
    color: var(--text-dim);
    margin: 0 0 26px;
    max-width: 58ch;
}

/* Agenda: 5 numerowanych punktów */
.wb-agenda {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 28px;
    padding: 0;
}

.wb-agenda li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--text-dim);
}

.wb-agenda li:first-child {
    border-top: 1px solid var(--border);
}

.wb-num {
    flex-shrink: 0;
    min-width: 28px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent);
    padding-top: 3px;
}

.wb-agenda li > span:last-child {
    min-width: 0;
}

.wb-agenda strong {
    color: var(--text);
    font-weight: 650;
}

/* CTA */
.wb-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.wb-cta .btn {
    min-width: 240px;
}

.wb-cta-note {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
}

/* Stats strip */
.wb-stats {
    display: flex;
    gap: 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}

.wb-stats::-webkit-scrollbar { display: none; }

.wb-stat {
    flex: 1 0 auto;
    padding: 0 20px;
    border-left: 1px solid var(--border);
}

.wb-stat:first-child {
    padding-left: 0;
    border-left: 0;
}

.wb-stat strong {
    display: block;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.024em;
    color: var(--text);
}

.wb-stat span {
    display: block;
    margin-top: 3px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
}

/* ----- Prawa kolumna: sticky sidebar ----- */
.wb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    position: sticky;
    top: 84px;
}

.wb-card {
    padding: 20px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* Karta prowadzącego */
.wb-presenter-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.wb-presenter-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.wb-presenter-name {
    font-size: 0.96rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 2px;
    line-height: 1.2;
}

.wb-presenter-role {
    font-family: var(--font-mono);
    font-size: 0.67rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
}

.wb-presenter-bio {
    font-size: 0.85rem;
    line-height: 1.64;
    color: var(--text-dim);
    margin: 0;
}

/* Karta bonusów */
.wb-bonus-flag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ok);
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: 999px;
}

.wb-card-title {
    font-size: 0.96rem;
    font-weight: 650;
    letter-spacing: -0.018em;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.3;
}

.wb-bonus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 16px;
    padding: 0;
}

.wb-bonus-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    line-height: 1.52;
    color: var(--text-dim);
}

.wb-check {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ok);
    padding-top: 2px;
}

.wb-bonus-list li > span:last-child {
    min-width: 0;
}

.wb-bonus-list strong {
    color: var(--text);
    font-weight: 650;
    display: block;
    margin-bottom: 2px;
}

.wb-cta-full {
    width: 100%;
    justify-content: center;
}

/* ----- Responsive ----- */
@media (max-width: 1040px) {
    .wb-layout {
        grid-template-columns: 1fr 310px;
        gap: 36px;
    }
}

@media (max-width: 800px) {
    .wb-main { padding: 52px 0 60px; }

    .wb-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wb-sidebar { position: static; }

    .wb-headline {
        max-width: none;
        font-size: clamp(1.75rem, 7vw, 2.4rem);
    }

    .wb-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .wb-cta .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .wb-stat {
        flex: 0 0 auto;
        min-width: 100px;
    }
}

@media (max-width: 560px) {
    .wb-main { padding: 44px 0 48px; }

    .wb-headline {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    .wb-agenda li {
        grid-template-columns: 24px 1fr;
        gap: 8px;
        font-size: 0.9rem;
    }

    .wb-stat { padding: 0 14px; }
}

/* Final layout for warsztat.html */
.workshop-main.workshop-page {
    padding: 42px 0 58px;
    background: var(--bg);
}

.workshop-main.workshop-page .container {
    box-sizing: border-box;
    width: 100%;
}

.workshop-page,
.workshop-page * {
    letter-spacing: 0;
}

.workshop-page .workshop-hero {
    display: block;
    max-width: none;
    margin: 0;
    padding: 0;
}

.workshop-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.74fr) minmax(344px, 0.88fr);
    gap: 30px;
    align-items: center;
}

.workshop-copy {
    min-width: 0;
}

.workshop-page .event-info {
    margin-bottom: 24px;
}

.workshop-page .live-badge,
.workshop-page .practical-badge,
.workshop-page .date-info {
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--bg-elev-1);
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.04);
}

.workshop-page .live-badge {
    background: var(--accent-soft);
}

.workshop-page .workshop-headline {
    max-width: 12.8em;
    margin: 0 0 18px;
    font-size: clamp(2.45rem, 3.15vw, 3.35rem);
    font-weight: 650;
    line-height: 1.04;
    color: var(--text);
}

.workshop-page .workshop-headline span {
    color: var(--accent);
}

.workshop-page .workshop-subtitle {
    max-width: 31em;
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-dim);
}

.workshop-live-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 100%;
    margin: 24px 0 0;
}

.live-youtube-btn,
.live-card-button {
    box-sizing: border-box;
    text-decoration: none;
}

.live-youtube-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    color: #0A0A0A;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 750;
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.live-youtube-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px var(--accent-line);
}

.live-youtube-btn svg,
.live-card-button svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.live-action-note {
    max-width: 220px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--text-faint);
}

.workshop-form-timebox {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: start;
    margin: 12px 0 0;
    padding: 12px 14px;
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.workshop-date-detail {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1px 8px;
    align-items: baseline;
    min-width: 0;
}

.workshop-date-detail span,
.workshop-date-detail small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    line-height: 1.45;
    color: var(--text-faint);
}

.workshop-date-detail strong {
    display: block;
    margin: 0;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    white-space: nowrap;
}

.workshop-date-detail small {
    grid-column: 2;
    white-space: nowrap;
}

.workshop-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--border);
    border-radius: 0;
}

.workshop-countdown .countdown-header {
    flex: 0 0 auto;
    margin-bottom: 0;
    font-size: 0.62rem;
    text-align: left;
    white-space: nowrap;
}

.workshop-countdown .countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
}

.workshop-countdown .countdown-unit {
    min-width: 0;
    min-height: 38px;
    padding: 5px 4px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.workshop-countdown .countdown-number {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.workshop-countdown .countdown-label {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    color: var(--text-faint);
    line-height: 1;
}

.workshop-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 30px;
}

.workshop-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 12px;
    color: var(--text);
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.04);
}

.workshop-meta-item svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex: 0 0 auto;
}

.workshop-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 38em;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.workshop-checklist li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
}

.workshop-checklist li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #0A0A0A;
    background: var(--accent);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.workshop-checklist strong {
    display: block;
    padding-top: 1px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.25;
}

.workshop-checklist p {
    grid-column: 2;
    max-width: none;
    margin: -7px 0 0;
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--text-dim);
}

.workshop-presenter {
    position: relative;
    align-self: end;
    min-width: 0;
    margin: 0;
    padding-top: 18px;
}

.presenter-photo-wrap {
    position: relative;
    min-height: 388px;
    overflow: hidden;
    border-radius: 999px 999px 14px 14px;
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
}

.presenter-photo {
    display: block;
    width: 100%;
    height: 388px;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.94) contrast(1.02);
}

.presenter-card {
    width: min(100%, 292px);
    margin: -44px auto 0;
    position: relative;
    z-index: 2;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(10, 10, 10, 0.10);
}

.presenter-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.presenter-card strong {
    display: block;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.presenter-card p {
    max-width: none;
    margin: 8px 0 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--text-dim);
}

.workshop-form-card {
    min-width: 0;
    padding: 30px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(10, 10, 10, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.workshop-live-card {
    padding: 22px;
}

.workshop-form-card.is-attention {
    border-color: var(--accent);
    box-shadow: 0 22px 70px rgba(10, 10, 10, 0.08), 0 0 0 4px var(--accent-soft);
}

.form-card-header {
    margin-bottom: 20px;
    text-align: center;
}

.live-room-label {
    display: block;
    margin: 0 0 9px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.form-card-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.form-card-header p {
    max-width: none;
    margin: 0;
    color: var(--text-dim);
    font-size: 1rem;
}

.live-video-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    aspect-ratio: 16 / 9;
    background: #0A0A0A;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.live-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.live-card-button {
    margin-top: 14px;
}

.workshop-form-card .form-group {
    margin-bottom: 12px;
}

.workshop-form-card .form-group label {
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 650;
    text-transform: none;
}

.workshop-form-card input[type="text"],
.workshop-form-card input[type="email"] {
    min-height: 58px;
    padding: 0 18px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    font-size: 1rem;
}

.workshop-form-card input[type="text"]:focus,
.workshop-form-card input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.workshop-form-card .checkbox-group {
    margin: 4px 0 16px;
}

.workshop-form-card .checkbox-label {
    gap: 10px;
    font-size: 0.78rem !important;
    line-height: 1.45;
}

.workshop-form-card .checkbox-label input {
    flex: 0 0 auto;
}

.workshop-form-card .submit-btn {
    gap: 12px;
    min-height: 62px;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--accent);
    color: #0A0A0A;
    font-size: 1.08rem;
    font-weight: 750;
}

.workshop-form-card .submit-btn svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.workshop-bonus-band {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 44px;
    padding-top: 28px;
    padding-bottom: 28px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bonus-band-head h2 {
    margin: 8px 0 0;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.12;
}

.bonus-band-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
}

.workshop-bonus-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.workshop-bonus-list div {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 15px 18px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.workshop-bonus-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--ok);
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
}

.workshop-bonus-list p {
    max-width: none;
    margin: 0;
    color: var(--text-dim);
    font-size: 0.94rem;
    line-height: 1.34;
}

.workshop-bonus-list strong {
    color: var(--text);
    font-weight: 700;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    max-width: none;
    margin: 18px 0 0;
    color: var(--text-faint);
    font-size: 0.86rem;
    text-align: center;
}

.privacy-note svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.workshop-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 0;
    padding-top: 24px;
    color: var(--text-faint);
    overflow-x: auto;
    scrollbar-width: none;
}

.workshop-proof::-webkit-scrollbar {
    display: none;
}

.proof-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 18px;
    border-left: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 650;
}

.proof-item:first-child {
    border-left: 0;
}

.proof-main {
    gap: 8px;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 1rem;
}

.proof-main strong {
    color: var(--accent);
    font-size: 1.18rem;
}

.proof-main span {
    color: var(--text-dim);
}

@media (max-width: 1120px) {
    .workshop-shell {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
        gap: 28px;
        align-items: start;
    }

    .workshop-presenter {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 18px;
        align-items: end;
        max-width: 720px;
        justify-self: center;
        padding-top: 8px;
    }

    .presenter-photo-wrap {
        min-height: 240px;
    }

    .presenter-photo {
        height: 240px;
    }

    .presenter-card {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 860px) {
    .workshop-main.workshop-page {
        padding-top: 34px;
    }

    .workshop-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .workshop-copy {
        display: contents;
    }

    .workshop-page .event-info {
        order: 1;
    }

    .workshop-page .workshop-headline {
        order: 2;
    }

    .workshop-page .workshop-subtitle {
        order: 3;
    }

    .workshop-live-actions {
        order: 4;
    }

    .workshop-meta-row {
        order: 4;
    }

    .workshop-form-card {
        order: 5;
    }

    .workshop-checklist {
        order: 6;
    }

    .workshop-presenter {
        order: 7;
        grid-template-columns: 1fr;
        max-width: 420px;
        width: 100%;
    }

    .presenter-photo-wrap {
        min-height: 340px;
    }

    .presenter-photo {
        height: 340px;
    }

    .presenter-card {
        margin: -36px auto 0;
        width: min(100%, 320px);
    }

    .workshop-page .workshop-headline {
        max-width: 12em;
        font-size: 2.75rem;
    }

    .workshop-page .workshop-subtitle {
        max-width: none;
    }

    .workshop-proof {
        justify-content: flex-start;
        margin-top: 40px;
        padding-bottom: 4px;
    }
}

@media (max-width: 560px) {
    .workshop-main.workshop-page {
        padding-top: 28px;
        padding-bottom: 44px;
    }

    .workshop-main.workshop-page .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .workshop-shell {
        gap: 18px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .workshop-shell > *,
    .workshop-page .workshop-headline,
    .workshop-page .workshop-subtitle,
    .workshop-live-card,
    .workshop-bonus-band {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .workshop-page .event-info {
        display: none;
    }

    .workshop-page .workshop-headline {
        max-width: none;
        margin-bottom: 14px;
        font-size: 2.08rem;
        line-height: 1.05;
    }

    .workshop-page .workshop-subtitle {
        font-size: 0.98rem;
        line-height: 1.56;
        overflow-wrap: break-word;
    }

    .workshop-live-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    .live-youtube-btn {
        width: 100%;
        min-height: 52px;
    }

    .live-action-note {
        max-width: none;
        text-align: center;
    }

    .workshop-countdown .countdown-header {
        text-align: left;
    }

    .workshop-countdown .countdown-timer {
        width: 100%;
    }

    .workshop-countdown .countdown-unit {
        min-height: 38px;
    }

    .workshop-bonus-band {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 26px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .workshop-bonus-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .workshop-bonus-list div {
        grid-template-columns: 28px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        min-height: 0;
        padding: 12px 14px;
    }

    .workshop-bonus-list span {
        width: 28px;
        height: 28px;
        font-size: 0.68rem;
    }

    .workshop-bonus-list p {
        font-size: 0.9rem;
        line-height: 1.32;
    }

    .bonus-band-head h2 {
        margin-top: 6px;
        font-size: 1.55rem;
    }

    .workshop-meta-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 22px 0 24px;
    }

    .workshop-meta-item {
        justify-content: flex-start;
        width: 100%;
    }

    .workshop-checklist {
        gap: 12px;
    }

    .workshop-checklist li {
        grid-template-columns: 26px minmax(0, 1fr);
    }

    .workshop-checklist li > span {
        width: 26px;
        height: 26px;
    }

    .workshop-form-card {
        padding: 22px;
    }

    .form-card-header {
        text-align: left;
    }

    .form-card-header h2 {
        font-size: 1.72rem;
    }

    .workshop-form-card input[type="text"],
    .workshop-form-card input[type="email"],
    .workshop-form-card .submit-btn {
        min-height: 56px;
    }

    .presenter-photo-wrap {
        min-height: 310px;
    }

    .presenter-photo {
        height: 310px;
    }

    .workshop-proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        align-items: stretch;
        padding-top: 18px;
        overflow-x: visible;
    }

    .proof-item {
        justify-content: center;
        min-height: 46px;
        padding: 8px 10px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--bg-elev-1);
        font-size: 0.68rem;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    .proof-item:first-child {
        border-left: 1px solid var(--border);
    }

    .proof-main {
        gap: 5px;
        font-size: 0.78rem;
    }

    .proof-main strong {
        font-size: 1rem;
    }
}
