.hestia-title-with-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.hestia-logo {
    position: relative;
    flex-shrink: 0;
}

.hestia-logo img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hestia-logo img:hover {
    transform: scale(1.08);
}

.hestia-title-tagline-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #C8102E;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.site-title:hover {
    color: #A00D25;
    letter-spacing: 0.01em;
}

.site-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C8102E;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-title:hover::after {
    width: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hestia-title-with-logo {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .hestia-logo img {
        width: 55px !important;
        height: 55px !important;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hestia-logo img {
        width: 45px !important;
        height: 45px !important;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
}
