/* ─── Shared styles for guest/public pages ─── */

/* Bio pages */
.bio-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}
.bio-photo {
    width: 280px;
    min-height: 340px;
    object-fit: cover;
    object-position: top center;
    display: block;
    flex-shrink: 0;
}
.bio-section-bar {
    width: 48px; height: 3px;
    background: #00838f;
    border-radius: 2px;
}

/* Download pages */
.download-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}
.download-section-bar {
    width: 48px; height: 3px;
    background: #00838f;
    border-radius: 2px;
}
.download-card {
    border-radius: 12px;
    border: 2px solid #e0f2f1;
    transition: box-shadow 0.25s ease;
}
.download-card:hover {
    box-shadow: 0 8px 24px rgba(0,131,143,0.15) !important;
}
