﻿@media (min-width: 769px) {
    .City-HubPage-PageHeroContent #shortContent,
    .City-HubPage-PageHeroContent #toggleContent {
        display: none !important;
    }

    .City-HubPage-PageHeroContent #fullContent {
        display: inline !important;
    }
}







/* H2 Section Headings */
h2.mt-3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    letter-spacing: 0.3px;
    margin-left: 20px;
}

    /* Underline accent */
    h2.mt-3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #e07b2a; /* change to your brand color */
        border-radius: 2px;
    }












#vidBTextWrap {
    transition: opacity .3s ease;
}

#vidBSub {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Highlighted "Watch now" CTA — filled + pulsing to lift click-through */
.vidB-component .vidB-btn {
    background: var(--vidB-amber);
    color: var(--vidB-navy);
    border-color: var(--vidB-amber);
    font-weight: 700;
    font-size: 13.5px;
    padding: 12px 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 0 0 rgba(239, 159, 39, .55);
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
    animation: vidBPulse 2.2s ease-in-out infinite;
}

.vidB-component .vidB-btn-arrow {
    transition: transform .2s ease;
}

.vidB:hover .vidB-btn,
.vidB:focus-visible .vidB-btn {
    background: #ffb43e;
    color: var(--vidB-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(239, 159, 39, .7);
    animation: none;
}

.vidB:hover .vidB-btn-arrow,
.vidB:focus-visible .vidB-btn-arrow {
    transform: translateX(4px);
}

@keyframes vidBPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 159, 39, .55);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(239, 159, 39, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 159, 39, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vidB-component .vidB-btn {
        animation: none;
    }
}







/* YouTube-style play button for the teaser */
.vidB-component .vidB-play {
    width: auto;
    height: auto;
    min-width: 0;
    background: transparent;
    border-radius: 0;
    font-size: 0;
    flex-shrink: 0;
}

    .vidB-component .vidB-play::after {
        display: none;
    }

    .vidB-component .vidB-play svg {
        width: 58px;
        height: 41px;
        display: block;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .3));
        transition: transform .2s ease;
    }

.vidB:hover .vidB-play svg,
.vidB:focus-visible .vidB-play svg {
    transform: scale(1.07);
}

@media (max-width: 768px) {
    .vidB-component .vidB-play svg {
        width: 48px;
        height: 34px;
    }
}