/* SeeBloggers Archiwum Prelegentów */

.sb-archiwum-wrap {
    padding: 40px 0 80px;
    background: #fff;
    min-height: 60vh;
}

.sb-archiwum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.sb-breadcrumbs {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sb-breadcrumbs a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.sb-breadcrumbs a:hover {
    color: #000;
    text-decoration: underline;
}

.sb-breadcrumbs-sep {
    margin: 0 8px;
    color: #ccc;
}

/* Header */
.sb-archiwum-header {
    margin-bottom: 50px;
    text-align: center;
}

.sb-archiwum-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    line-height: 1.2;
}

.sb-archiwum-intro {
    font-size: 18px;
    color: #666;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Editions list (main archive - vertical) */
.sb-editions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.sb-edition-card {
    display: block;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    margin: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sb-edition-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.sb-edition-card-images {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sb-edition-card-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.sb-edition-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.sb-edition-count {
    font-size: 16px;
    color: #888;
    margin: 0 0 15px;
}

.sb-edition-cta {
    font-size: 15px;
    color: #c3a04f;
    font-weight: 600;
}

/* Speakers grid */
.sb-speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.sb-speaker-card {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s;
}

.sb-speaker-card:hover {
    transform: translateY(-3px);
}

.sb-speaker-card-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f0f0f0;
}

.sb-speaker-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sb-speaker-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0d5c1, #c3a04f);
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

.sb-speaker-card-info h2,
.sb-speaker-card-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
    line-height: 1.3;
}

.sb-speaker-card-role {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* Single speaker profile */
.sb-speaker-profile {
    margin-bottom: 50px;
}

.sb-speaker-profile-main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sb-speaker-profile-photo {
    flex: 0 0 350px;
    max-width: 350px;
}

.sb-speaker-profile-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.sb-speaker-profile-details {
    flex: 1;
    min-width: 0;
}

.sb-speaker-profile-details h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.2;
}

.sb-speaker-edition-badge {
    display: inline-block;
    background: #f5f0e5;
    color: #8b7332;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 20px;
}

.sb-speaker-role {
    font-size: 20px;
    color: #555;
    margin: 0 0 25px;
    line-height: 1.5;
}

.sb-speaker-social {
    margin-bottom: 25px;
}

.sb-speaker-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.sb-speaker-social-link:hover {
    background: #333;
    color: #fff;
}

.sb-speaker-social-handle {
    font-weight: 400;
    opacity: 0.8;
}

.sb-speaker-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.sb-speaker-bio p {
    margin: 0 0 15px;
}

/* Back link */
.sb-back-link {
    margin-top: 20px;
}

.sb-back-link a {
    font-size: 15px;
    color: #c3a04f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.sb-back-link a:hover {
    color: #a0832e;
}

/* Responsive */
@media (max-width: 768px) {
    .sb-archiwum-header h1 {
        font-size: 26px;
    }

    .sb-archiwum-intro {
        font-size: 16px;
    }

    .sb-speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .sb-speaker-card-info h2,
    .sb-speaker-card-info h3 {
        font-size: 14px;
    }

    .sb-edition-card-images img {
        width: 40px;
        height: 40px;
    }

    .sb-speaker-profile-main {
        flex-direction: column;
    }

    .sb-speaker-profile-photo {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .sb-speaker-profile-details h1 {
        font-size: 26px;
    }

    .sb-speaker-role {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .sb-archiwum-wrap {
        padding: 20px 0 50px;
    }

    .sb-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sb-edition-card {
        padding: 20px;
    }
}
