.carousel{background-color:var(--color-text-help);display:grid;grid-template-columns:1fr;grid-template-rows:25rem;grid-template-areas:"item";place-self:stretch;will-change:contents}.carousel__item{grid-area:item;display:none;grid-template-columns:1fr;grid-template-rows:25rem;grid-template-areas:"image";place-self:stretch;cursor:pointer}.carousel__item:last-child{display:grid}.carousel__item__image{grid-area:image;display:block;width:100%;height:100%;object-fit:cover;object-position:center}.carousel_controls__bullet_list{display:flex;justify-content:center;gap:1rem}.carousel_controls__bullet_list__bullet{width:2rem;cursor:pointer;transform:rotate(-90deg)}.carousel_controls__bullet_list__bullet__circle{--circle-radius:15px;--circle-center:50px;fill:none;cy:var(--circle-center);cx:var(--circle-center);r:var(--circle-radius);stroke-width:calc(var(--circle-radius) * 2);stroke:var(--color-additional-light);stroke-dasharray:100,10000;stroke-dashoffset:0}@keyframes keyframes-bullet{from{stroke-dashoffset:0}to{stroke-dashoffset:-100}}.carousel_controls__bullet_list__bullet--active .carousel_controls__bullet_list__bullet__circle:last-child{animation:keyframes-bullet var(--slide-interval) linear forwards;stroke:var(--color-brand)}