.watch-container {
    max-width: var(--site-max-width);
    margin: 20px auto;
    padding: 20px;
}

.page-title-block {
    max-width: var(--site-max-width);
    margin: 0 auto 24px;
    padding: 0 20px;
}

.page-title-block h1 {
    margin: 0 0 10px;
    color: var(--color-deep-green);
    font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
    line-height: 1.2;
}

.page-intro {
    margin: 0;
    max-width: 800px;
    font-size: 1.05rem;
    color: var(--color-deep-green);
}

.watch-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: var(--radius-md);
    background-color: var(--color-light-aqua);
    box-shadow: var(--shadow-soft);
}

.reverse-on-desktop {
    flex-direction: row-reverse;
}

.watch-section .text-content {
    flex: 1 1 320px;
    padding: 10px 20px;
}

.watch-section .text-content-full {
    flex: 1 1 100%;
    text-align: center;
}

.watch-section h2 {
    margin: 0 0 16px;
    color: var(--color-deep-green);
    font-size: clamp(1.5rem, 1.4vw + 1rem, 2rem);
}

.watch-section p {
    margin: 0 0 16px;
}

.image-content {
    flex: 1 1 320px;
    padding: 10px 20px;
}

.section-image {
    width: 100%;
    max-height: 420px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.map-section {
    flex: 1 1 320px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.venue-map {
    width: min(100%, 380px);
    height: 320px;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.leaflet-tooltip.leaflet-interactive {
    pointer-events: auto;
}

.map-tooltip-link {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.two-line-heading a {
    text-decoration: none;
    color: inherit;
}

.two-line-heading a:hover,
.two-line-heading a:focus {
    color: var(--color-highlight);
}

.italic-text {
    font-style: italic;
    font-weight: normal;
}

.inline-emphasis {
    font-style: italic;
    font-weight: bold;
}

.inline-emphasis a {
    text-decoration: none;
    color: inherit;
}

.inline-emphasis a:hover,
.inline-emphasis a:focus {
    color: var(--color-highlight);
}

.locations-list {
    margin-top: 24px;
}

.locations-list h3 {
    margin: 0 0 10px;
    color: var(--color-deep-green);
    font-size: 1.2rem;
}

.location-link {
    text-decoration: none;
    font-weight: bold;
    color: var(--color-deep-green);
}

.location-link:hover,
.location-link:focus {
    color: var(--color-highlight);
}

.dot {
    margin: 0 8px;
}

.watch-cta-section .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .watch-container {
        padding: 15px;
    }

    .page-title-block {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .watch-section,
    .reverse-on-desktop {
        flex-direction: column;
        align-items: flex-start;
    }

    .watch-section .text-content,
    .image-content,
    .map-section {
        width: 100%;
        padding: 0;
    }

    .image-content,
    .map-section {
        margin-top: 10px;
    }

    .venue-map {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .watch-section {
        padding: 16px;
    }

    .page-intro {
        font-size: 1rem;
    }

    .locations-list p {
        line-height: 1.8;
    }

    .dot {
        display: inline-block;
    }
}