:root {
            --united-blue: #1e40af;
            --united-light-blue: #3b82f6;
            --united-dark-blue: #1e3a8a;
        }

        #help {
            resize: none;
            overflow-y: hidden;
            min-height: 60px;
        }

        #quotePopup {
            align-items: flex-start;
            padding: 20px 0;
        }

            #quotePopup > div {
                max-height: 90vh;
                overflow-y: auto;
                margin: auto;
            }

        /* Animation for language change feedback */
        .animate-fadeIn {
            animation: fadeIn 0.3s ease-out;
        }

        .animate-fadeOut {
            animation: fadeOut 0.3s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
                transform: translateY(0);
            }

            to {
                opacity: 0;
                transform: translateY(-20px);
            }
        }

/* Daisy YouTube video player: synchronized state, single overlay control, and local stacking. */
.video-hover-container {
    position: relative;
    z-index: 0;
    isolation: isolate;
    contain: paint;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-hover-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.video-hover-container:hover .video-thumbnail {
    transform: scale(1.04);
}

.video-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.70);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.video-hover-container:hover .video-hover-overlay {
    opacity: 1;
}

.video-play-icon {
    font-size: 48px;
    color: white;
    background: rgba(229, 62, 62, 0.76);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-hover-container:hover .video-play-icon {
    transform: scale(1.1);
    background: rgba(229, 62, 62, 1);
}

.video-youtube-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 15;
}

.video-brand-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    height: 38px;
    min-height: 38px;
    padding: 1px 10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(3px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(52px, 0.65fr);
    align-items: center;
    gap: 6px;
    border-bottom-left-radius: 0.45rem;
    border-bottom-right-radius: 0.45rem;
    pointer-events: none;
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.08);
}

.video-brand-website {
    display: block;
    max-width: 100%;
    font-size: clamp(7.5px, 0.64vw, 9px);
    line-height: 1.35;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    justify-self: start;
    align-self: center;
    padding-block: 2px;
}

.video-brand-phone {
    background: var(--primary, #034396);
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    min-width: 104px;
    height: 24px;
    padding: 0 12px;
    border-radius: 9999px;
    white-space: nowrap;
    justify-self: center;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.video-brand-logo {
    height: 21px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    justify-self: end;
    align-self: center;
}

.video-hover-container .youtube-education-video {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    background: #000;
    border: none;
    z-index: 20;
    pointer-events: none !important;
}

.youtube-hover-shield {
    position: absolute;
    inset: 0;
    z-index: 45;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.video-control-feedback {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
}

.video-hover-container.is-youtube-paused .video-control-feedback {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.video-hover-container.is-video-playing {
    background: #000;
}

.video-hover-container.is-video-playing .video-thumbnail,
.video-hover-container.is-video-playing .video-hover-overlay,
.video-hover-container.is-video-playing .video-play-icon,
.video-hover-container.is-video-playing .video-youtube-badge {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.video-hover-container.is-video-playing .video-brand-strip {
    z-index: 60;
    pointer-events: none;
}

.video-fullscreen-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 80;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease, background 0.18s ease;
}

.video-hover-container.is-video-in-viewport .video-fullscreen-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-fullscreen-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-hover-container:fullscreen,
.video-hover-container:-webkit-full-screen {
    width: 100vw !important;
    max-width: none !important;
    min-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    border-radius: 0 !important;
    background: #000;
    overflow: hidden;
}

.video-hover-container:fullscreen .youtube-education-video,
.video-hover-container:-webkit-full-screen .youtube-education-video {
    width: 100vw !important;
    height: 100vh !important;
    background: #000;
}

.video-hover-container:fullscreen .youtube-hover-shield,
.video-hover-container:-webkit-full-screen .youtube-hover-shield {
    z-index: 99970;
}

.video-hover-container:fullscreen .video-brand-strip,
.video-hover-container:-webkit-full-screen .video-brand-strip {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: min(92vw, 760px);
    height: 54px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 14px;
    transform: translateX(-50%);
    z-index: 99999;
    grid-template-columns: 1fr auto 1fr;
}

.video-hover-container:fullscreen .video-brand-website,
.video-hover-container:-webkit-full-screen .video-brand-website {
    font-size: 15px;
}

.video-hover-container:fullscreen .video-brand-phone,
.video-hover-container:-webkit-full-screen .video-brand-phone {
    font-size: 16px;
    min-width: 170px;
    height: 38px;
}

.video-hover-container:fullscreen .video-brand-logo,
.video-hover-container:-webkit-full-screen .video-brand-logo {
    height: 34px;
    max-width: 115px;
}

.video-hover-container:fullscreen .video-fullscreen-toggle,
.video-hover-container:-webkit-full-screen .video-fullscreen-toggle {
    top: 24px;
    right: 24px;
    z-index: 99999;
    width: 46px;
    height: 46px;
    font-size: 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.watch-video-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 120px !important;
    white-space: nowrap !important;
}

.watch-video-btn[hidden] {
    display: none !important;
}

.video-duration-text {
    min-width: 80px !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.watch-video-btn,
.video-hover-container,
.video-fullscreen-toggle {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: none), (pointer: coarse) {
    .video-hover-container:hover {
        transform: none;
        box-shadow: none;
    }

    .video-hover-container:hover .video-thumbnail {
        transform: none;
    }
}

@media (max-width: 768px) {
    #videos .grid.md\:grid-cols-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .video-brand-strip {
        height: 34px;
        min-height: 34px;
        padding: 1px 8px;
        gap: 4px;
        grid-template-columns: minmax(0, 1fr) auto minmax(46px, 0.55fr);
    }

    .video-brand-website {
        font-size: 7.5px;
        line-height: 1.35;
    }

    .video-brand-phone {
        font-size: 9px;
        min-width: 94px;
        height: 24px;
        padding: 0 9px;
    }

    .video-brand-logo {
        height: 18px;
        max-width: 56px;
    }

    .watch-video-btn {
        min-width: 110px !important;
        width: auto !important;
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1023.98px) {
    #videos .grid.md\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 769px) and (max-width: 1120px) {
    .video-brand-website {
        font-size: 7.25px;
    }

    .video-brand-phone {
        min-width: 94px;
        font-size: 9px;
        padding: 0 8px;
    }

    .video-brand-logo {
        height: 18px;
        max-width: 54px;
    }
}

/* Guinee-parity responsive and cross-browser safeguards. */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-width: 0;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

button,
input,
select,
textarea {
    max-width: 100%;
    font: inherit;
}

.site-header .header-logo-container,
.site-header .agency-brand-copy,
.site-header .header-desktop-content {
    min-width: 0;
}

.site-header .agency-logo-image {
    height: auto;
    flex: 0 0 auto;
}

.mobile-menu-toggle {
    min-width: 44px;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.mobile-menu-toggle:focus-visible,
.language-button:focus-visible,
.language-option:focus-visible,
.video-fullscreen-toggle:focus-visible,
.youtube-hover-shield:focus-visible {
    outline: 3px solid rgba(var(--primary-rgb), 0.35);
    outline-offset: 2px;
}

.footer-address-copy {
    min-width: 0;
    line-height: 1.45;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: minmax(0, 2fr) minmax(150px, 0.8fr) minmax(225px, 1.1fr) !important;
    }

    .footer-brand-column {
        grid-column: auto !important;
    }

    .footer-address-street {
        white-space: nowrap;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .footer-brand-column {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 1023.98px) {
    .site-header > .container {
        width: 100%;
        max-width: none;
    }

    .site-header-row {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.625rem !important;
    }

    .site-header .header-logo-container {
        flex: 1 1 auto;
        width: auto !important;
        justify-content: flex-start !important;
        margin-bottom: 0 !important;
        text-align: left;
    }

    .site-header .agency-logo-image {
        width: clamp(6.5rem, 18vw, 8.5rem);
        max-height: 62px;
    }

    .site-header .agency-brand-title,
    .site-header .agency-brand-tagline {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .site-header .agency-brand-title {
        font-size: clamp(0.9rem, 2.2vw, 1.05rem);
        line-height: 1.2;
    }

    .site-header .agency-brand-tagline {
        font-size: clamp(0.68rem, 1.6vw, 0.78rem);
        line-height: 1.25;
    }

    .site-header .header-desktop-content {
        display: none !important;
    }

    .site-header .mobile-menu-toggle {
        display: inline-flex !important;
    }

    #mobileMenu {
        width: 100%;
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    #mobileMenu.hidden {
        display: none !important;
    }

    #mobileMenu:not(.hidden) {
        display: block !important;
    }

    @supports (height: 100dvh) {
        #mobileMenu {
            max-height: calc(100dvh - 5rem);
        }
    }

    #mobileLanguageSelector {
        width: 100%;
        justify-content: center;
        margin: 0.625rem 0;
        min-height: 44px;
    }

    #mobileLanguageDropdown {
        left: 0;
        right: 0;
        width: 100%;
        max-height: min(18rem, 55vh);
        overflow-y: auto;
    }

    #mobileMenu .mobile-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.625rem !important;
        width: 100% !important;
        margin-top: 1rem !important;
    }

    #mobileMenu .mobile-buttons button {
        width: 100% !important;
        min-height: 44px;
        margin: 0 !important;
        white-space: normal;
        line-height: 1.3;
    }
}

@media (min-width: 1024px) {
    .site-header-row {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }

    .site-header .header-logo-container {
        width: auto !important;
        flex: 1 1 auto;
        justify-content: flex-start !important;
        margin-bottom: 0 !important;
    }

    .site-header .header-desktop-content {
        display: flex !important;
        width: auto !important;
        flex: 0 1 auto;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-end !important;
    }

    .site-header .mobile-menu-toggle,
    .site-header #mobileMenu {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .site-header .agency-logo-image {
        width: clamp(5.75rem, 27vw, 7.25rem);
        max-height: 54px;
    }

    .site-header .agency-brand-title {
        font-size: clamp(0.78rem, 3.5vw, 0.98rem);
    }

    .site-header .agency-brand-tagline {
        font-size: clamp(0.62rem, 2.7vw, 0.72rem);
    }

    .service-card,
    .video-card,
    .quote-contact-card {
        width: 100%;
        min-width: 0;
    }

    .quote-contact-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .popup-form-grid,
    .form-grid-mobile {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.5rem !important;
    }

    .popup-form-label,
    .form-label-mobile {
        text-align: left !important;
        margin-bottom: 0.25rem !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
    }

    .popup-form-input,
    .form-input-mobile,
    .form-grid-mobile > input,
    .form-grid-mobile > select,
    .form-grid-mobile > textarea {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .tab-nav-mobile {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.375rem !important;
        border-bottom: 0 !important;
    }

    .tab-button-mobile {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        margin: 0 !important;
        padding: 0.625rem 0.375rem !important;
        border-radius: 0.5rem !important;
        white-space: normal;
        line-height: 1.25;
    }

    .radio-group-mobile {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.375rem !important;
        width: 100% !important;
    }

    .radio-group-mobile label {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 40px;
        margin: 0 !important;
        padding: 0.375rem 0 !important;
    }

    .radio-group-mobile input[type="radio"],
    .radio-group-mobile input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        margin-right: 0.5rem !important;
        flex: 0 0 auto;
    }

    .modal-mobile {
        width: calc(100% - 1rem) !important;
        max-width: calc(100vw - 1rem) !important;
        max-height: calc(100vh - 1rem) !important;
        margin: 0.5rem auto !important;
        padding: 1rem !important;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    @supports (height: 100dvh) {
        .modal-mobile {
            max-height: calc(100dvh - 1rem) !important;
        }
    }

    .modal-mobile h2 {
        padding-inline: 2rem;
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        line-height: 1.25;
    }

    .modal-mobile input,
    .modal-mobile select,
    .modal-mobile textarea,
    .modal-mobile button {
        min-width: 0;
    }
}

@media (max-width: 374.98px) {
    .site-header > .container {
        padding-inline: 0.625rem;
    }

    .site-header .agency-logo-image {
        width: 5.25rem;
    }

    .site-header .agency-brand-tagline {
        display: none;
    }

    .tab-nav-mobile {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 1024px) and (max-width: 1279.98px) {
    .site-header .agency-logo-image {
        width: 8rem;
    }

    .site-header .agency-brand-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .site-header .agency-brand-tagline,
    .site-header .header-desktop-content p,
    .site-header .header-button {
        font-size: 0.75rem;
    }

    .site-header .header-desktop-content {
        gap: 0.625rem;
    }

    .site-header .header-button {
        padding-inline: 0.75rem;
        white-space: normal;
        line-height: 1.2;
    }
}

/* Header appointment action and responsive appointment dialog. */
.appointment-header-button,
.appointment-mobile-button {
    border: 0;
    border-radius: 0.375rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.appointment-header-button {
    width: 100%;
    min-height: 34px;
    padding: 0.4rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    white-space: nowrap;
    line-height: 1.15;
}

.appointment-mobile-button {
    min-height: 44px;
    padding: 0.75rem 1rem;
}

.appointment-header-button:hover,
.appointment-mobile-button:hover {
    background: var(--primary-dark);
}

.appointment-header-button:focus-visible,
.appointment-mobile-button:focus-visible,
.appointment-submit-button:focus-visible,
.appointment-cancel-button:focus-visible,
.appointment-input:focus-visible {
    outline: 3px solid rgba(var(--primary-rgb), 0.32);
    outline-offset: 2px;
}

body.appointment-modal-open {
    overflow: hidden;
}

.appointment-popup {
    padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem max(0.75rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.appointment-modal-panel {
    margin: auto;
    padding: 1.25rem 1.5rem;
    max-height: none;
    overflow: visible;
}

.appointment-modal-description {
    max-width: 34rem;
    margin: 0.35rem auto 0;
    line-height: 1.45;
}

.appointment-divider {
    margin: 0.75rem 0 1rem;
}

.appointment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

.appointment-field {
    min-width: 0;
}

.appointment-field-full {
    grid-column: 1 / -1;
}

.appointment-label {
    display: block;
    margin-bottom: 0.3rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
}

.appointment-optional {
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 500;
}

.appointment-input {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #fff;
    padding: 0.55rem 0.75rem;
    color: #111827;
    line-height: 1.35;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.appointment-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.14);
}

.appointment-reason {
    min-height: 104px;
    resize: vertical;
}

.appointment-input-error {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

.appointment-error {
    margin-top: 0.25rem;
    color: #dc2626;
    font-size: 0.75rem;
    line-height: 1.25;
}

.appointment-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem -1.5rem -1.25rem;
    padding: 0.9rem 1.5rem 1.1rem;
    border-top: 2px solid var(--primary);
}

.appointment-submit-button,
.appointment-cancel-button {
    min-width: 128px;
    min-height: 42px;
    border: 0;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: background-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.appointment-submit-button {
    background: var(--primary);
}

.appointment-submit-button:hover {
    background: var(--primary-dark);
}

.appointment-cancel-button {
    background: #6b7280;
}

.appointment-cancel-button:hover {
    background: #4b5563;
}

.appointment-submit-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

/* Make the hover play icon less visually dominant. */
.video-play-icon .fa-play {
    font-size: 30px !important;
}

@media (min-width: 1024px) and (max-width: 1279.98px) {
    .appointment-header-button {
        font-size: 0.72rem;
        padding-inline: 0.55rem;
    }
}

@media (max-width: 767.98px) {
    .appointment-modal-panel {
        width: min(100%, 42rem) !important;
        max-width: 100% !important;
        margin: auto !important;
        padding: 1rem !important;
        overflow: visible !important;
    }

    .appointment-form-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.65rem;
    }

    .appointment-field-full {
        grid-column: auto;
    }

    .appointment-reason {
        min-height: 96px;
    }

    .appointment-actions {
        margin: 0.9rem -1rem -1rem;
        padding: 0.85rem 1rem 1rem;
    }
}

@media (max-width: 479.98px) {
    .appointment-modal-panel h2 {
        padding-inline: 0;
        font-size: 1.3rem;
    }

    .appointment-modal-description {
        font-size: 0.78rem;
    }

    .appointment-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .appointment-submit-button,
    .appointment-cancel-button {
        min-width: 0;
        width: 100%;
    }
}

/* Normal-view video watermark alignment. */
.video-brand-website {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-self: stretch;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-hover-container:fullscreen .video-brand-website,
.video-hover-container:-webkit-full-screen .video-brand-website {
    width: auto;
    max-width: none;
    justify-self: start;
    text-align: left;
    overflow: visible;
    text-overflow: clip;
}
