/* Screen Profile – mobile-first Layout */

.screen-profile-detail-section {
    padding: 40px 20px;
}

.screen-profile-back-link {
    margin-bottom: 30px;
}

.screen-profile-back-button {
    display: inline-flex;
}

.screen-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--color-bg-card);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(243, 147, 36, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.screen-profile-header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(243, 147, 36, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen-profile-header:hover::before {
    opacity: 1;
}

.screen-profile-photo-container {
    flex-shrink: 0;
}

.screen-profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid rgba(243, 147, 36, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(243, 147, 36, 0.2);
    transition: all 0.3s ease;
}

.screen-profile-photo:hover {
    transform: scale(1.03);
    border-color: rgba(243, 147, 36, 0.7);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(243, 147, 36, 0.3);
}

.screen-profile-info {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
    width: 100%;
}

.base-headline-h1-screen-profile-speaker {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-teal);
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(28, 122, 126, 0.3);
}

.screen-profile-company {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
}

.screen-profile-talk-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--color-bg-card);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.screen-profile-talk-section:hover {
    border-color: rgba(243, 147, 36, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(243, 147, 36, 0.1);
}

.screen-profile-talk-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-orange-hover) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    padding: 10px 0;
    animation: screen-profile-glow-pulse 3s ease-in-out infinite;
    text-align: center;
}

@keyframes screen-profile-glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(243, 147, 36, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(243, 147, 36, 0.5));
    }
}

.screen-profile-talk-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(243, 147, 36, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(243, 147, 36, 0.15);
}

.screen-profile-talk-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.screen-profile-meta-label {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    font-size: 1rem;
}

.screen-profile-meta-value {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
}

.screen-profile-talk-description {
    margin-top: 30px;
}

.screen-profile-description-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: 15px;
}

.screen-profile-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.screen-profile-cta-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(243, 147, 36, 0.2);
}

.screen-profile-cta-button {
    width: 100%;
    padding: 15px 40px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.screen-profile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(243, 147, 36, 0.2);
}

.screen-profile-position {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(243, 147, 36, 0.2);
}

.screen-profile-company-link {
    margin-top: 12px;
}

.screen-profile-company-website-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
}

.screen-profile-company-website-link:hover {
    color: var(--color-orange-hover);
    text-decoration: underline;
}

.screen-profile-company-services {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(243, 147, 36, 0.15);
    font-style: italic;
}

@media (min-width: 1024px) {
    .screen-profile-header {
        flex-direction: row;
        text-align: left;
    }

    .screen-profile-photo {
        width: 200px;
        height: 200px;
    }

    .base-headline-h1-screen-profile-speaker {
        font-size: 2.5rem;
    }

    .screen-profile-talk-title {
        font-size: 2.2rem;
    }

    .screen-profile-talk-meta {
        flex-direction: row;
        gap: 40px;
    }

    .screen-profile-cta-section {
        flex-direction: row;
    }

    .screen-profile-cta-button {
        width: auto;
    }
}
