.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 60px;
    height: 60px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1;
}

.logo-text .tagline {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text .tagline {
        font-size: 0.8rem;
    }
}
