/* Logo-specific styling only.
   Header and navigation layout live in css/layout/main.css. */

.logo-profile-pic {
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
    display: block;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(32, 152, 108, 0.9);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.logo:hover .logo-profile-pic {
    transform: translateY(-1px) scale(1.03);
    border-color: var(--color-primary);
    box-shadow: 0 10px 24px rgba(32, 152, 108, 0.28);
}

@media (max-width: 768px) {
    .logo-profile-pic {
        width: 40px;
        height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
}
