/* Matches the arrow controls and caption strip in the bowling news carousel. */
.news-gallery .gallery-stage { position: relative; overflow: hidden; border-radius: .5rem; box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1); background: #f9fafb; }
.news-gallery figure { margin: 0; position: relative; }
.news-gallery figure + figure { margin-top: 1.5rem; }
.news-gallery.news-gallery-ready figure { margin-top: 0; }
.news-gallery [hidden] { display: none; }
.news-gallery img { display: block; width: 100%; height: 36rem; object-fit: contain; }
.news-gallery figcaption { padding: 1rem; background: rgb(0 0 0 / .7); color: white; font-size: .875rem; line-height: 1.6; text-align: left; }
.news-gallery figcaption a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.news-gallery .gallery-credit { display: block; font-size: .75rem; }
.news-gallery .gallery-arrow { position: absolute; top: 18rem; transform: translateY(-50%); display: grid; place-items: center; width: 44px; height: 44px; padding: .5rem; border: 0; border-radius: 50%; background: rgb(255 255 255 / .6); color: var(--brand-purple-dark, #4c1d95); cursor: pointer; transition: background-color .15s; }
.news-gallery .gallery-arrow:hover { background: white; }
.news-gallery .gallery-arrow:focus-visible { outline: 2px solid var(--brand-purple, #7c3aed); outline-offset: 3px; background: white; }
.news-gallery .gallery-previous { left: 1rem; }
.news-gallery .gallery-next { right: 1rem; }
.news-gallery .gallery-counter { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media (max-width: 480px) {
 .news-gallery img { height: 24rem; }
 .news-gallery .gallery-arrow { top: 12rem; }
 .news-gallery .gallery-previous { left: .5rem; }
 .news-gallery .gallery-next { right: .5rem; }
}
