.fh-cal-booking {
    width: 100%;
    padding: 80px 0 120px;
}

.fh-cal-booking__layout {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    width: 80%;
    margin: 0 auto;
}

.fh-cal-booking__main {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    margin: 0;
    padding: 0;
}

.fh-cal-booking__step-label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Circular', serif;
    text-transform: uppercase;
}

.fh-cal-booking__step-title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 400;
    text-transform: unset;
}

/*might need to alter this because right now the container only fits for two options*/
.fh-cal-booking__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fh-cal-booking__option {
    appearance: none;
    width: 100%;
    border: 1px solid black;
    border-radius: 0;
    background: white;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.fh-cal-booking__option:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.fh-cal-booking__option:hover .fh-cal-booking__option-icon img {
    filter: brightness(0) invert(1);
}

.fh-cal-booking__option.is-active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.fh-cal-booking__option-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 32px;
}

.fh-cal-booking__option-icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.fh-cal-booking__option-icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    transition: all 0.3s ease;
}

.fh-cal-booking__option.is-active .fh-cal-booking__option-icon img {
    filter: brightness(0) invert(1);
}

.fh-cal-booking__option-text {
    display: block;
    min-width: 0;
}

.fh-cal-booking__option-title {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
}

.fh-cal-booking__option-description {
    display: block;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 400;
}

.fh-cal-booking__option-check {
    position: absolute;
    top: 14px;
    right: 14px;
    display: none;
    width: 20px;
    height: 20px;
    background-image: url("../icons/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.fh-cal-booking__option.is-active .fh-cal-booking__option-check {
    display: block;
}

.fh-cal-booking__divider {
    width: 100%;
    height: 1px;
    margin: 70px 0 54px;
    background: #111;
    opacity: 0.65;
}

.fh-cal-booking__embed-area {
    width: 100%;
}

.fh-cal-booking__pane {
    width: 100%;
}

.fh-cal-booking__inline-embed {
    width: 100%;
    min-height: 430px;
    overflow: auto;
}

.fh-cal-booking__info {
    flex: 0 0 280px;
    width: auto;
    margin: 0;
    padding: 0;
}

.fh-cal-booking__info h2 {
    margin: 0 0 20px;
    font-weight: 400;
}

.fh-cal-booking__info p {
    font-size: 16px;
    line-height: 30px;
}

.fh-cal-booking__info a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.fh-cal-booking--form-only .fh-cal-booking__layout {
    width: min(100%, 980px);
}

.fh-cal-booking--form-only .fh-cal-booking__main {
    width: 100%;
}

.fh-cal-booking__notice {
    padding: 20px;
    border: 1px solid #ddd;
    background: #fafafa;
}

/* Tablet */
@media (max-width: 1024px) {
    .fh-cal-booking {
        padding: 70px 0 100px;
    }

    .fh-cal-booking__layout {
        gap: 40px;
        padding: 0 30px;
    }

    .fh-cal-booking__info {
        flex: 0 0 250px;
    }

    .fh-cal-booking__options {
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .fh-cal-booking {
        padding: 56px 0 80px;
    }

    .fh-cal-booking__layout {
        flex-direction: column;
        gap: 48px;
        padding: 0 18px;
    }

    .fh-cal-booking__main,
    .fh-cal-booking__info {
        width: 100%;
        flex: 0 0 auto;
    }

    .fh-cal-booking__step-title {
        font-size: 18px;
    }

    .fh-cal-booking__options {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .fh-cal-booking__option-inner {
        padding: 24px;
    }

    .fh-cal-booking__inline-embed {
        min-height: 720px;
    }
}