/* Reset some default styling for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    background-color: #f0f0f0;
    /* Adjust for your theme */
}

.logo {
    height: 100px;
    /* Set to 100px as requested */
    width: auto;
    /* Maintain aspect ratio */
    margin-right: 15px;
    /* Space between logo and text */
}

.site-title {
    color: #333;
    /* Adjust text color */
    font-size: 2em;
    /* Adjust size */
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    /* Align with logo */
}

/* Media query for responsiveness */
@media (max-width: 600px) {
    .site-header {
        flex-direction: row;
        /* Keep them on the same line for smaller screens */
        align-items: center;
    }

    .logo {
        height: 75px;
        /* Smaller logo for smaller screens */
        width: auto;
    }

    .site-title {
        font-size: 1.5em;
        /* Reduce size for smaller screens */
    }
}