.speaker-profile-hero {
    padding: 70px 0 40px;
    background: linear-gradient(135deg, #0f172a, #111827);
}

.speaker-profile-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    background: #fff;
}

.speaker-profile-image {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 30px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--public-primary);
    font-size: 70px;
}

.speaker-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-profile-kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--public-primary);
    font-weight: 900;
}

.speaker-profile-info h1 {
    margin: 12px 0 0;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 950;
}

.speaker-profile-job {
    margin: 10px 0 0;
    color: var(--public-primary);
    font-weight: 900;
}

.speaker-profile-company {
    color: var(--public-muted);
    font-weight: 800;
}

.speaker-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.speaker-profile-primary-btn,
.speaker-profile-secondary-btn,
.speaker-session-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.speaker-profile-primary-btn {
    background: var(--public-primary);
    color: #fff;
}

.speaker-profile-secondary-btn,
.speaker-session-btn {
    border: 1px solid var(--public-border);
    background: #fff;
    color: var(--public-heading);
}

.speaker-profile-body {
    padding: 44px 0 80px;
    background: #f8fafc;
}

.speaker-side-card,
.speaker-section-card {
    border: 1px solid var(--public-border);
    border-radius: 28px;
    background: #fff;
    padding: 24px;
}

.speaker-side-card h3,
.speaker-section-head h2 {
    margin: 0;
    font-weight: 950;
}

.speaker-side-card p {
    margin-top: 14px;
    color: var(--public-muted);
    line-height: 1.9;
}

.speaker-linkedin-profile {
    display: inline-flex;
    gap: 8px;
    margin-top: 18px;
    text-decoration: none;
    font-weight: 900;
    color: var(--public-primary);
}

.speaker-section-head {
    margin-bottom: 20px;
}

.speaker-section-head span {
    color: var(--public-primary);
    font-weight: 900;
    font-size: 13px;
}

.speaker-sessions-list,
.speaker-feed {
    display: grid;
    gap: 16px;
}

.speaker-session-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--public-border);
    border-radius: 22px;
    background: #fff;
}

.speaker-session-card h3 {
    margin: 0;
    font-weight: 950;
}

.speaker-session-card p,
.speaker-session-meta {
    margin-top: 8px;
    color: var(--public-muted);
    font-size: 13px;
    font-weight: 800;
}

.speaker-session-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.speaker-feed-post {
    padding: 20px;
    border: 1px solid var(--public-border);
    border-radius: 24px;
    background: #fff;
}

.speaker-feed-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--public-muted);
    font-size: 13px;
}

.speaker-feed-head strong {
    color: var(--public-heading);
}

.speaker-feed-post p {
    color: var(--public-heading);
    line-height: 1.9;
}

.speaker-feed-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 22px;
    margin-top: 14px;
}

.speaker-video-link {
    margin-top: 14px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 900;
    text-decoration: none;
    color: var(--public-primary);
}

.speaker-post-owner-actions {
    margin-top: 14px;
}

.speaker-post-owner-actions a {
    color: var(--public-primary);
    font-weight: 900;
    text-decoration: none;
}

.speaker-empty-box {
    padding: 24px;
    border: 1px dashed var(--public-border);
    border-radius: 20px;
    color: var(--public-muted);
    text-align: center;
}

@media (max-width: 767px) {
    .speaker-profile-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .speaker-profile-image {
        margin: auto;
    }

    .speaker-profile-actions {
        justify-content: center;
    }

    .speaker-session-card {
        display: grid;
    }
}
.social-composer{
    overflow:hidden;
    border:1px solid #e5e7eb;
    border-radius:24px;
    background:#fff;
}

.social-composer-top{
    display:flex;
    gap:16px;
    padding:22px 22px 18px;
}

.social-composer-avatar{
    width:58px;
    height:58px;
    flex:0 0 58px;
    overflow:hidden;
    border-radius:50%;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--public-primary);
    font-size:26px;
}

.social-composer-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.social-composer-input{
    width:100%;
    min-height:70px;
    border:0;
    outline:0;
    resize:none;
    background:transparent;
    color:#111827;
    font-size:26px;
    line-height:1.7;
    font-weight:500;
}

.social-composer-input::placeholder{
    color:#111827;
}

.social-composer-preview{
    padding:0 22px 18px;
}

.social-composer-preview img{
    width:100%;
    max-height:360px;
    object-fit:cover;
    border-radius:18px;
}

.social-composer-actions{
    min-height:74px;
    padding:14px 22px;
    border-top:1px solid #eef2f7;
    background:#f8fafc;
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.social-composer-action{
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:10px 20px;
    border:1px solid #e5e7eb;
    border-radius:999px;
    background:#fff;
    color:#111827;
    font-size:17px;
    font-weight:800;
    cursor:pointer;
    transition:.2s ease;
}

.social-composer-action:hover{
    border-color:var(--public-primary);
    color:var(--public-primary);
}

.social-composer-action.image i{
    color:#22c55e;
    font-size:24px;
}

.social-composer-action.video i{
    color:#ef4444;
    font-size:24px;
}

.social-composer-submit{
    margin-inline-start:auto;
    min-height:48px;
    border:0;
    border-radius:999px;
    padding:10px 28px;
    background:var(--public-primary);
    color:#fff;
    font-size:16px;
    font-weight:900;
}

.social-composer-submit:hover{
    background:var(--public-primary-dark);
}

@media(max-width:575px){
    .social-composer-input{
        font-size:22px;
    }

    .social-composer-actions{
        gap:10px;
    }

    .social-composer-action{
        flex:1;
        padding-inline:12px;
    }

    .social-composer-submit{
        width:100%;
        margin-inline-start:0;
    }
}
