#custom-header-block {
    background-color: white;
    width: 100vw;
    display: flex;
    flex-direction: row;
    height: 120px;
    font-family: Roboto, sans-serif;
    padding-left: 40px;
    padding-right: 40px;

    /* Below style overrides built in WP block styling */
    max-width: 100vw;
}

.header-sub-container-base {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 33%;
}

#header-schedule-service-button {
    background-color: rgb(247, 133, 80);
    border-radius: 100px;
    padding: 8px 30px;
    color: white;
    text-decoration: none;
}

#header-schedule-service-button:hover {
    color: black;
}

#header-phone-link {
    font-size: clamp(1.5rem, 3vw, 2.375rem);
    text-decoration: none;
    color: black;
}

@media screen and (max-width: 782px) {
	#custom-header-block {
        flex-direction: column;
        height: 200px;
        padding-top: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .header-sub-container-base {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 33%;
    }

    #header-schedule-service-button {
        margin-top: 20px;
    }
}