/* Tool review page hero: logo left, title/subtitle right */
.header-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0 clamp(16px, 4vw, 40px);
    text-align: left;
}

.header-hero-logo {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    max-width: 120px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.header-hero-text {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    text-align: left;
}

@media (max-width: 768px) {
    .header-hero {
        flex-direction: column;
        flex-wrap: nowrap;
        text-align: center;
        gap: 20px;
        padding: 0 16px;
    }

    .header-hero-text {
        text-align: center;
    }

    .header-hero-logo {
        width: 100px;
        height: 100px;
        max-width: 100px;
    }
}
