/* Workshop specific styles */

.rdm-single-workshop {
    padding: 20px;
}

.rdm-single-workshop h2 {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.rdm-workshop-description {
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

.rdm-materials-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 30px 0 20px;
}

.rdm-content-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.rdm-content-btn {
    flex: 1 1 200px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 20px 24px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.rdm-content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212,163,115,0.3);
}

.rdm-fb-btn {
    background: #1877F2;
    color: white;
}

.rdm-fb-btn:hover {
    background: #0C63D4;
}

.rdm-dynamic-content {
    margin-top: 40px;
}

.rdm-lecture-link {
    background: var(--secondary-surface);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.rdm-lecture-link h3,
.rdm-lecture-link h4 {
    color: var(--accent-gold);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
}

.rdm-lecture-link p {
    color: var(--primary-dark);
    margin: 8px 0;
}

.rdm-lecture-link a {
    color: var(--primary-brand);
    text-decoration: none;
}

.rdm-lecture-link a:hover {
    text-decoration: underline;
}

.rdm-video-list {
    display: grid;
    gap: 30px;
}

.rdm-video-item h3,
.rdm-video-item h4 {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.rdm-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.rdm-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rdm-handouti-list h3 {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.rdm-pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.rdm-pdf-button {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 16px 24px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rdm-pdf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212,163,115,0.3);
}

.rdm-pdf-icon {
    font-size: 18px;
}

.rdm-audio-list {
    display: grid;
    gap: 24px;
}

.rdm-audio-list h3 {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.rdm-audio-item {
    background: var(--secondary-surface);
    padding: 24px;
    border-radius: 12px;
}

.rdm-audio-item h4 {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.rdm-audio-item audio {
    width: 100%;
}