/* Keep responsive patient-work images at their intended 3:2 display ratio.
 * WordPress width/height attributes reserve space, while this rule ensures the
 * intrinsic pixel height never becomes a fixed rendered height. */
.vc-case-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Contact travel guidance: restrained editorial location callout rather than
 * a generic tinted notification card. The custom pin-and-route icon remains
 * decorative, while the editable heading and guidance copy stay unchanged. */
.contact-hub-details .travel-note {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 5px;
    align-items: center;
    padding: 21px 22px;
    overflow: hidden;
    border: 1px solid rgba(16, 19, 26, .16);
    border-left: 1px solid rgba(16, 19, 26, .16);
    border-radius: 10px;
    background: var(--ink, #10131a);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

.contact-hub-details .travel-note::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 36px;
    height: 44px;
    background: var(--gold, #e9ad49);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 3.5c-7 0-12 5.4-12 12 0 9.5 12 20.5 12 20.5s12-11 12-20.5c0-6.6-5-12-12-12Z'/%3E%3Ccircle cx='20' cy='15.5' r='4'/%3E%3Cpath d='M3.5 42c6-4 10-4 15-.8 5 3.2 10 3.1 18-.7'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 3.5c-7 0-12 5.4-12 12 0 9.5 12 20.5 12 20.5s12-11 12-20.5c0-6.6-5-12-12-12Z'/%3E%3Ccircle cx='20' cy='15.5' r='4'/%3E%3Cpath d='M3.5 42c6-4 10-4 15-.8 5 3.2 10 3.1 18-.7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-hub-details .travel-note span {
    grid-column: 2;
    display: block;
    margin: 0;
    color: var(--ivory, #f8f5ef);
    font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: none;
}

.contact-hub-details .travel-note p {
    grid-column: 2;
    margin: 0;
    max-width: 35ch;
    color: rgba(248, 245, 239, .7);
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.65;
}

@media (max-width: 560px) {
    .contact-hub-details .travel-note {
        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 14px;
        padding: 18px;
    }

    .contact-hub-details .travel-note::before {
        width: 30px;
        height: 38px;
    }

    .contact-hub-details .travel-note span {
        font-size: 18px;
    }
}
