.journey-section .profile-card {
    background: var(--neutral-900, #0f172a); /* site dark blue */
    color: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.journey-section .profile-card h3,
.journey-section .profile-card p {
    color: #ffffff;
}

.journey-section .profile-card .profile-image {
    display: flex;
    justify-content: center;
}

.journey-section .profile-card .profile-image img {
    border-radius: 9999px;
    width: 88px;
    height: 88px;
    object-fit: cover;
}

.journey-section .profile-card .social-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.journey-section .profile-card .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: #ffffff;
    color: #0a66c2; /* default to LinkedIn blue; overridden per network */
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.journey-section .profile-card .social-btn svg { color: currentColor; width: 20px; height: 20px; }

/* Tighter typography for compact card */
.journey-section .profile-card h3 { font-size: 1.125rem; margin-bottom: 4px; }
.journey-section .profile-card p { font-size: 0.95rem; }

.journey-section .profile-card .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Brand colors */
.journey-section .profile-card .social-btn.linkedin { color: #0a66c2; }
.journey-section .profile-card .social-btn.instagram { color: #e1306c; }
.journey-section .profile-card .social-btn.youtube { color: #ff0000; }

.journey-section .profile-card .social-btn:focus-visible {
    outline: 3px solid rgba(255,255,255,0.75);
    outline-offset: 2px;
}

/* Make the Spotify embed in left text block breathe */
.journey-section .journey-text iframe {
    border-radius: 12px;
}

.journey-section .spotify-embed {
    position: relative;
    margin-top: 12px;
    height: 152px;
}

.journey-section .spotify-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

