/**
 * Link-Building Workshop Screen CSS
 *
 * Light-Style-Variante (lokal). Grafische Vorlage: seo-day.de.
 * Hochwertige Landingpage mit Animationen, Glows und Gradients.
 */

/* Keyframe-Animationen */
@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Light-Style (lokal). Base-Styles werden nicht überschrieben. */

/* Page Container */
.linkbuilding-workshop-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 60px;
    background-color: var(--color-background);
}

/* Hero Section */
.linkbuilding-workshop-hero-section {
    text-align: center;
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-background) 100%);
    border-radius: 25px;
    margin-bottom: 80px;
    border: 2px solid var(--color-border-light-mode);
    background-image: 
        linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-background) 100%),
        linear-gradient(135deg, rgba(243, 147, 36, 0.08) 0%, rgba(28, 122, 126, 0.08) 50%, rgba(243, 147, 36, 0.08) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 20px var(--color-shadow-light);
    position: relative;
    overflow: hidden;
}

.linkbuilding-workshop-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(243, 147, 36, 0.06) 0%,
        transparent 70%
    );
    animation: rotate-gradient 12s linear infinite;
}

.linkbuilding-workshop-hero-headline .base-headline-h1 {
    font-family: var(--font-family-primary);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.linkbuilding-workshop-hero-subtitle-wrap .base-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.6rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Workshop Info Section */
.workshop-info-section {
    margin-bottom: 80px;
}

.linkbuilding-workshop-organizers-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    margin-top: 32px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.linkbuilding-workshop-organizers-grid .expert-workshop-organizer-card {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.linkbuilding-workshop-organizers-grid .expert-workshop-organizer-description {
    max-width: none;
}

@media (min-width: 600px) {
    .linkbuilding-workshop-organizers-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .linkbuilding-workshop-organizers-grid .expert-workshop-organizer-card {
        display: grid;
        grid-template-columns: 160px minmax(0, 1fr);
        grid-template-areas:
            "photo name"
            "photo role"
            "photo text"
            "photo link";
        column-gap: 32px;
        row-gap: 8px;
        text-align: left;
        align-items: start;
        align-content: start;
        padding: 32px 40px;
    }

    .linkbuilding-workshop-organizers-grid .expert-workshop-organizer-image {
        grid-area: photo;
        width: 160px;
        height: 160px;
        margin: 0;
        align-self: start;
    }

    .linkbuilding-workshop-organizers-grid .expert-workshop-organizer-card > div {
        grid-area: name;
        margin: 0;
        padding: 0;
        align-self: start;
    }

    .linkbuilding-workshop-organizers-grid .expert-workshop-organizer-name-headline h3 {
        text-align: left;
        margin: 0;
    }

    .linkbuilding-workshop-organizers-grid .expert-workshop-organizer-role {
        grid-area: role;
        margin: 0;
        text-align: left;
    }

    .linkbuilding-workshop-organizers-grid .expert-workshop-organizer-description {
        grid-area: text;
        margin: 0;
        text-align: left;
        hyphens: auto;
    }

    .linkbuilding-workshop-organizers-grid .expert-workshop-organizer-linkedin {
        grid-area: link;
        margin: 12px 0 0 0;
        justify-self: start;
        align-self: start;
    }
}

.linkbuilding-workshop-hero-headline .base-headline-h1 {
    margin: 0;
}

.linkbuilding-workshop-organizers-headline .base-headline-h2,
.linkbuilding-workshop-description-headline .base-headline-h2 {
    margin: 0;
}

.linkbuilding-workshop-info-section {
    margin-bottom: 80px;
    padding: 28px 24px;
    background: var(--glass-surface-bg);
    backdrop-filter: blur(var(--glass-blur-surface));
    -webkit-backdrop-filter: blur(var(--glass-blur-surface));
    border: 1.5px solid var(--glass-border-edge);
    border-radius: 20px;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
}

.linkbuilding-workshop-meta-tiles {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: 100%;
}

.linkbuilding-workshop-meta-tile-date,
.linkbuilding-workshop-meta-tile-time,
.linkbuilding-workshop-meta-tile-location,
.linkbuilding-workshop-meta-tile-price {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 92px;
    padding: 22px 24px;
    text-align: left;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-left-width: 4px;
    border-left-color: var(--color-teal);
    border-radius: 16px;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.linkbuilding-workshop-meta-tile-date:hover,
.linkbuilding-workshop-meta-tile-time:hover,
.linkbuilding-workshop-meta-tile-location:hover,
.linkbuilding-workshop-meta-tile-price:hover {
    transform: translateY(-3px);
    box-shadow: var(--surface-shadow-glass-hover), inset 0 1px 0 var(--glass-border-highlight);
    border-color: rgba(243, 147, 36, 0.22);
}

.linkbuilding-workshop-meta-tile-date {
    border-left-color: var(--color-orange);
}

.linkbuilding-workshop-meta-tile-time {
    border-left-color: var(--color-teal);
}

.linkbuilding-workshop-meta-tile-location {
    border-left-color: rgba(28, 122, 126, 0.65);
}

.linkbuilding-workshop-meta-tile-price {
    border-left-color: var(--color-orange);
    background: linear-gradient(
        135deg,
        var(--color-white) 0%,
        rgba(243, 147, 36, 0.12) 100%
    );
}

.linkbuilding-workshop-meta-tile-price:hover {
    border-left-color: var(--color-orange-hover);
}

.linkbuilding-workshop-meta-label {
    font-family: var(--font-family-primary);
    font-size: 0.7rem;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.linkbuilding-workshop-meta-tile-date .linkbuilding-workshop-meta-label,
.linkbuilding-workshop-meta-tile-price .linkbuilding-workshop-meta-label {
    color: var(--color-orange);
}

.linkbuilding-workshop-meta-value {
    font-family: var(--font-family-primary);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.linkbuilding-workshop-meta-tile-location .linkbuilding-workshop-meta-value {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.5;
}

.linkbuilding-workshop-meta-value-price {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-orange);
    letter-spacing: -0.02em;
}

@media (min-width: 600px) {
    .linkbuilding-workshop-info-section {
        padding: 32px 28px;
    }

    .linkbuilding-workshop-meta-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .linkbuilding-workshop-meta-tile-location {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .linkbuilding-workshop-info-section {
        padding: 36px 40px;
    }

    .linkbuilding-workshop-meta-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .linkbuilding-workshop-meta-tile-location {
        grid-column: 1 / -1;
    }

    .linkbuilding-workshop-meta-tile-date,
    .linkbuilding-workshop-meta-tile-time,
    .linkbuilding-workshop-meta-tile-price {
        min-height: 100px;
        padding: 24px 28px;
    }

    .linkbuilding-workshop-meta-tile-location {
        min-height: 0;
        padding: 24px 28px;
    }
}

.section-title {
    font-family: var(--font-family-primary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 50px 0;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Description, Schedule, Services, Takeaways, Target Sections - Same Style */
.linkbuilding-workshop-description-section,
.description-section,
.schedule-section,
.included-services-section,
.takeaways-section,
.target-audience-section {
    margin: 80px 0;
    padding: 60px;
    background: var(--color-bg-light);
    border-radius: 25px;
    border: 2px solid var(--color-border-light-mode);
    box-shadow: 0 2px 12px var(--color-shadow-light);
    position: relative;
    overflow: hidden;
}

.linkbuilding-workshop-description-section::before,
.description-section::before,
.schedule-section::before,
.included-services-section::before,
.takeaways-section::before,
.target-audience-section::before {
    display: none;
}

.linkbuilding-workshop-description-text-wrap .base-content-text {
    font-family: var(--font-family-primary);
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text);
    text-align: center;
}

/* Timetable – gleiche Content-Breite wie Zielgruppen-Block */
.linkbuilding-workshop-schedule-section {
    margin: 80px 0;
    padding: 40px 36px;
    width: 100%;
    box-sizing: border-box;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-radius: 25px;
    box-shadow: var(--surface-shadow-glass);
}

.linkbuilding-workshop-schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: none;
    margin: 28px 0 0 0;
}

.linkbuilding-workshop-schedule-item,
.linkbuilding-workshop-schedule-item-break {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin-bottom: 0;
    padding: 18px 20px;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-left: 3px solid var(--color-orange);
    border-radius: 12px;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.linkbuilding-workshop-schedule-item:hover,
.linkbuilding-workshop-schedule-item-break:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-glass-hover), inset 0 1px 0 var(--glass-border-highlight);
    border-color: rgba(243, 147, 36, 0.22);
    border-left-color: var(--color-orange);
}

.linkbuilding-workshop-schedule-item-break {
    background: var(--color-bg-light);
    border-left-color: var(--color-teal);
}

.linkbuilding-workshop-schedule-time {
    width: 100%;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    color: var(--color-orange);
    font-size: 0.95rem;
    font-family: var(--font-family-primary);
    letter-spacing: 0.02em;
}

.linkbuilding-workshop-schedule-time span {
    display: block;
}

.linkbuilding-workshop-schedule-content {
    width: 100%;
    flex: 1;
    min-width: 0;
}

.linkbuilding-workshop-schedule-item-title-wrap .base-headline-h4 {
    font-size: 1.05rem;
    margin: 0 0 8px 0;
    color: var(--color-text-dark);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-primary);
    line-height: 1.35;
}

.linkbuilding-workshop-schedule-item-description-wrap .base-content-text {
    color: var(--color-text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    font-family: var(--font-family-primary);
    margin: 0;
    text-align: justify;
    hyphens: auto;
}

@media (min-width: 600px) {
    .linkbuilding-workshop-schedule-item,
    .linkbuilding-workshop-schedule-item-break {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }

    .linkbuilding-workshop-schedule-time {
        width: auto;
        min-width: 148px;
        max-width: 180px;
        color: var(--color-teal);
    }
}

/* Im Preis enthalten – gleiche Content-Breite wie Zielgruppen-Block */
.linkbuilding-workshop-included-services-section,
.included-services-section {
    margin: 80px 0;
    padding: 40px 36px;
    width: 100%;
    box-sizing: border-box;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-radius: 25px;
    box-shadow: var(--surface-shadow-glass);
}

.linkbuilding-workshop-included-services-section .base-headline-h2,
.included-services-section .base-headline-h2 {
    color: var(--color-text-dark);
}

.linkbuilding-workshop-included-services-grid,
.included-services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 28px;
    width: 100%;
    max-width: none;
}

.linkbuilding-workshop-included-services-grid .linkbuilding-workshop-service-tile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 0;
    padding: 18px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-left: 3px solid var(--color-teal);
    border-radius: 12px;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.linkbuilding-workshop-included-services-grid .linkbuilding-workshop-service-tile::before {
    content: '';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: var(--color-teal);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2L5.1 8.8L9.5 3.8' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 13px;
    box-shadow: 0 2px 8px rgba(28, 122, 126, 0.28);
}

.linkbuilding-workshop-included-services-grid .linkbuilding-workshop-service-tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-glass-hover), inset 0 1px 0 var(--glass-border-highlight);
    border-color: rgba(243, 147, 36, 0.22);
    border-left-color: var(--color-orange);
}

.linkbuilding-workshop-included-services-grid .linkbuilding-workshop-service-tile:hover::before {
    background-color: var(--color-orange);
    box-shadow: 0 2px 10px rgba(243, 147, 36, 0.35);
}

.linkbuilding-workshop-service-tile-text {
    font-family: var(--font-family-primary);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
    hyphens: auto;
}

@media (min-width: 1024px) {
    .linkbuilding-workshop-included-services-grid,
    .included-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

/* Takeaways Section – gleiche Content-Breite wie Zielgruppen-Block */
.linkbuilding-workshop-takeaways-section,
.takeaways-section {
    margin: 80px 0;
    padding: 40px 36px;
    width: 100%;
    box-sizing: border-box;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-radius: 25px;
    box-shadow: var(--surface-shadow-glass);
}

.linkbuilding-workshop-takeaways-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 28px;
    width: 100%;
    max-width: none;
}

.linkbuilding-workshop-takeaway-card {
    margin-bottom: 0;
    padding: 18px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-left: 3px solid var(--color-teal);
    border-radius: 12px;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.linkbuilding-workshop-takeaway-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-glass-hover);
    border-color: rgba(243, 147, 36, 0.22);
    border-left-color: var(--color-orange);
}

.linkbuilding-workshop-takeaway-icon-visible:empty {
    display: none;
}

.linkbuilding-workshop-takeaway-icon-visible:not(:empty) {
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin: 0 0 2px 0;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(28, 122, 126, 0.1);
    line-height: 1.2;
}

.linkbuilding-workshop-takeaway-card .base-headline-h3 {
    margin: 0;
    width: 100%;
}

.linkbuilding-workshop-takeaway-title-wrap .base-headline-h3 {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.linkbuilding-workshop-takeaway-text,
.takeaway-text {
    font-family: var(--font-family-primary);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
    width: 100%;
    max-width: none;
    text-align: justify;
    hyphens: auto;
}

@media (min-width: 1024px) {
    .linkbuilding-workshop-takeaways-grid,
    .linkbuilding-workshop-target-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .linkbuilding-workshop-takeaways-grid .linkbuilding-workshop-takeaway-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* Target Audience Section */
.target-audience-section {
    padding: 40px 36px;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    box-shadow: var(--surface-shadow-glass);
}

.target-audience-section .base-headline-h2 {
    color: var(--color-text-dark);
}

.requirement-notice {
    margin: 24px auto 32px;
    max-width: 900px;
    padding: 18px 22px;
    background: var(--color-white);
    border: 1.5px solid rgba(243, 147, 36, 0.35);
    border-left: 4px solid var(--color-orange);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
}

.requirement-notice p {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.55;
    text-align: justify;
    hyphens: auto;
}

.requirement-notice strong {
    color: var(--color-orange);
    font-weight: var(--font-weight-bold);
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.target-card {
    margin-bottom: 0;
    padding: 18px 20px;
    text-align: left;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-left: 3px solid var(--color-teal);
    border-radius: 12px;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.target-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-glass-hover), inset 0 1px 0 var(--glass-border-highlight);
    border-color: rgba(243, 147, 36, 0.22);
    border-left-color: var(--color-orange);
    background: var(--color-white);
}

.target-card .base-headline-h4 {
    margin: 0 0 8px 0;
}

.target-role {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.target-description {
    font-family: var(--font-family-primary);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    hyphens: auto;
}

/* Registration Form Section */
.registration-section {
    margin: 80px 0;
    padding: 70px;
    background: var(--color-bg-light);
    border-radius: 25px;
    border: 2px solid var(--color-border-light-mode);
    box-shadow: 0 2px 12px var(--color-shadow-light);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    display: none;
}

.success-message-box {
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text-white);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 
        0 15px 40px rgba(16, 185, 129, 0.3),
        0 5px 15px rgba(16, 185, 129, 0.2);
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(16, 185, 129, 0.4),
        0 5px 15px rgba(16, 185, 129, 0.3);
    text-align: center;
}

.success-text {
    font-family: var(--font-family-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.error-messages-box {
    background: linear-gradient(135deg, var(--color-danger) 0%, var(--color-danger-hover) 100%);
    color: var(--color-text-white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 
        0 12px 35px rgba(220, 38, 38, 0.4),
        0 5px 15px rgba(220, 38, 38, 0.3);
}

.error-text {
    font-family: var(--font-family-primary);
    font-size: 0.98rem;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.error-text:last-child {
    margin-bottom: 0;
}

.linkbuilding-workshop-registration-form {
    margin-top: 45px;
}

.linkbuilding-workshop-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 600px) {
    .linkbuilding-workshop-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Form-Styles wurden entfernt - verwende allgemeine Widget-Klassen aus widgets-forms.css */

.linkbuilding-workshop-form-submit {
    text-align: center;
    margin-top: 45px;
}

.linkbuilding-workshop-form-submit .linkbuilding-workshop-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 18px 48px;
    border-radius: 14px;
    font-family: var(--font-family-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-hover) 100%);
    color: var(--color-white) !important;
    border: none;
    cursor: pointer;
    box-shadow: var(--surface-shadow-glass), 0 10px 32px rgba(243, 147, 36, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.linkbuilding-workshop-form-submit .linkbuilding-workshop-submit-button:hover {
    background: linear-gradient(135deg, var(--color-orange-hover) 0%, var(--color-orange) 100%);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-glass-hover), 0 14px 40px rgba(243, 147, 36, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.linkbuilding-workshop-form-submit .linkbuilding-workshop-submit-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(243, 147, 36, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.linkbuilding-workshop-form-submit .linkbuilding-workshop-submit-button:focus-visible {
    outline: 2px solid var(--color-teal);
    outline-offset: 3px;
}

/* Binding Notice */
.binding-notice {
    font-family: var(--font-family-primary);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 25px;
    padding: 20px 30px;
    background: var(--color-info-bg-transparent);
    border-radius: 10px;
    border-left: 4px solid var(--color-info);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .linkbuilding-workshop-container {
        padding: 40px 20px;
    }

    .linkbuilding-workshop-hero-section {
        padding: 50px 25px;
    }

    .linkbuilding-workshop-hero-headline .base-headline-h1 {
        font-size: clamp(1.65rem, 4.5vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .linkbuilding-workshop-hero-subtitle-wrap .base-subtitle {
        font-size: 1.2rem;
    }

    .linkbuilding-workshop-info-section {
        padding: 24px 20px;
    }

    .linkbuilding-workshop-meta-tile-date,
    .linkbuilding-workshop-meta-tile-time,
    .linkbuilding-workshop-meta-tile-location,
    .linkbuilding-workshop-meta-tile-price {
        padding: 18px 20px;
        min-height: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1440px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expert-workshop-organizers-section,
    .linkbuilding-workshop-description-section,
    .description-section,
    .takeaways-section,
    .target-audience-section,
    .schedule-section,
    .included-services-section,
    .registration-section {
        padding: 35px 25px;
        margin: 50px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .linkbuilding-workshop-description-text-wrap .base-content-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .linkbuilding-workshop-takeaways-section,
    .takeaways-section {
        padding: 32px 24px;
    }

    .target-audience-section {
        padding: 32px 24px;
    }

    .requirement-notice {
        padding: 16px 18px;
    }

    .requirement-notice p {
        font-size: 0.95rem;
    }

    .target-card {
        padding: 14px 16px;
    }

    .target-role {
        font-size: 1rem;
    }

    .target-description {
        font-size: 0.875rem;
    }

    .linkbuilding-workshop-schedule-section {
        padding: 32px 24px;
    }

    .linkbuilding-workshop-schedule-item,
    .linkbuilding-workshop-schedule-item-break {
        padding: 16px 18px;
    }

    .form-field label {
        font-size: 0.95rem;
    }

    .form-field input,
    .form-field textarea {
        font-size: 1rem;
        padding: 12px;
    }

    .linkbuilding-workshop-included-services-section,
    .included-services-section {
        padding: 32px 24px;
    }

    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .binding-notice {
        font-size: 0.85rem;
    }

    .success-message-box {
        padding: 20px;
        margin-bottom: 40px;
    }

    .success-text {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .linkbuilding-workshop-container {
        padding: 30px 15px;
    }

    .linkbuilding-workshop-hero-section {
        padding: 40px 20px;
    }

    .linkbuilding-workshop-hero-headline .base-headline-h1 {
        font-size: 1.65rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .linkbuilding-workshop-hero-subtitle-wrap .base-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .linkbuilding-workshop-info-section {
        padding: 20px 16px;
    }

    .linkbuilding-workshop-meta-tile-date,
    .linkbuilding-workshop-meta-tile-time,
    .linkbuilding-workshop-meta-tile-location,
    .linkbuilding-workshop-meta-tile-price {
        padding: 16px 18px;
        gap: 8px;
    }

    .linkbuilding-workshop-meta-label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .linkbuilding-workshop-meta-value {
        font-size: 0.95rem;
    }

    .linkbuilding-workshop-meta-value-price {
        font-size: 1.1rem;
    }

    .expert-workshop-organizers-section,
    .linkbuilding-workshop-description-section,
    .description-section,
    .takeaways-section,
    .target-audience-section,
    .schedule-section,
    .included-services-section,
    .registration-section {
        padding: 25px 20px;
        margin: 40px 0;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .linkbuilding-workshop-description-text-wrap .base-content-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .linkbuilding-workshop-takeaways-section,
    .takeaways-section {
        padding: 24px 18px;
    }

    .linkbuilding-workshop-takeaway-card {
        padding: 16px 18px;
    }

    .linkbuilding-workshop-takeaway-title-wrap .base-headline-h3 {
        font-size: 0.95rem;
    }

    .linkbuilding-workshop-takeaway-text,
    .takeaway-text {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .target-audience-section {
        padding: 24px 18px;
    }

    .requirement-notice {
        padding: 14px 16px;
    }

    .requirement-notice p {
        font-size: 0.875rem;
    }

    .target-card {
        padding: 14px 16px;
    }

    .target-role {
        font-size: 0.95rem;
    }

    .target-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .linkbuilding-workshop-schedule-section {
        padding: 24px 18px;
    }

    .linkbuilding-workshop-schedule-item,
    .linkbuilding-workshop-schedule-item-break {
        padding: 16px 18px;
        gap: 8px;
    }

    .linkbuilding-workshop-schedule-time {
        font-size: 0.85rem;
    }

    .linkbuilding-workshop-schedule-item-title-wrap .base-headline-h4 {
        font-size: 0.95rem;
    }

    .linkbuilding-workshop-schedule-item-description-wrap .base-content-text {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .form-field label {
        font-size: 0.9rem;
    }

    .form-field input,
    .form-field textarea {
        font-size: 0.95rem;
        padding: 11px;
    }

    .linkbuilding-workshop-included-services-section,
    .included-services-section {
        padding: 24px 18px;
    }

    .linkbuilding-workshop-included-services-grid .linkbuilding-workshop-service-tile {
        padding: 16px 18px;
        gap: 12px;
    }

    .linkbuilding-workshop-included-services-grid .linkbuilding-workshop-service-tile::before {
        width: 22px;
        height: 22px;
        background-size: 11px 11px;
    }

    .linkbuilding-workshop-service-tile-text {
        font-size: 0.875rem;
    }

    .binding-notice {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .success-message-box {
        padding: 18px;
        margin-bottom: 30px;
    }

    .success-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .linkbuilding-workshop-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .linkbuilding-workshop-form-submit .linkbuilding-workshop-submit-button {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        letter-spacing: 0.04em;
    }
}

.linkbuilding-workshop-takeaways-headline,
.linkbuilding-workshop-description-headline,
.linkbuilding-workshop-organizers-headline,
.linkbuilding-workshop-target-headline,
.linkbuilding-workshop-schedule-headline,
.linkbuilding-workshop-included-headline,
.linkbuilding-workshop-registration-headline {
    margin-bottom: 24px;
}

.linkbuilding-workshop-takeaway-card:hover,
.linkbuilding-workshop-takeaway-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-glass-hover);
    border-color: rgba(243, 147, 36, 0.22);
    border-left-color: var(--color-orange);
}

.linkbuilding-workshop-takeaway-icon-empty:empty {
    display: none;
}

.linkbuilding-workshop-takeaway-icon-visible:not(:empty) {
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin: 0 0 2px 0;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(28, 122, 126, 0.1);
    line-height: 1.2;
}

.linkbuilding-workshop-target-audience-section,
.target-audience-section {
    padding: 40px 36px;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    box-shadow: var(--surface-shadow-glass);
}

.linkbuilding-workshop-requirement-notice,
.requirement-notice {
    margin: 24px auto 32px;
    max-width: 900px;
    padding: 18px 22px;
    background: var(--color-white);
    border: 1.5px solid rgba(243, 147, 36, 0.35);
    border-left: 4px solid var(--color-orange);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
}

.linkbuilding-workshop-target-grid,
.target-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.linkbuilding-workshop-target-card,
.target-card {
    margin-bottom: 0;
    padding: 18px 20px;
    text-align: left;
    background: var(--color-white);
    border: 1.5px solid var(--glass-border-edge);
    border-left: 3px solid var(--color-teal);
    border-radius: 12px;
    box-shadow: var(--surface-shadow-glass), inset 0 1px 0 var(--glass-border-highlight);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.linkbuilding-workshop-target-card:hover,
.target-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-glass-hover), inset 0 1px 0 var(--glass-border-highlight);
    border-color: rgba(243, 147, 36, 0.22);
    border-left-color: var(--color-orange);
    background: var(--color-white);
}

.linkbuilding-workshop-target-description,
.target-description {
    font-family: var(--font-family-primary);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    hyphens: auto;
}

.linkbuilding-workshop-registration-section,
.registration-section {
    margin: 80px 0;
    padding: 70px;
    background: var(--color-bg-light);
    border-radius: 25px;
    border: 2px solid var(--color-border-light-mode);
    box-shadow: 0 2px 12px var(--color-shadow-light);
}

.linkbuilding-workshop-binding-notice,
.binding-notice {
    font-family: var(--font-family-primary);
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}
