/* Lusty Looters community pets v4 — equal-height photo and video album cards */
.ll-pets-page {
  --pets-line: rgba(69, 131, 211, .48);
  --pets-panel: rgba(7, 15, 28, .96);
}

@keyframes petsPageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes petsStatusSettle {
  from { opacity: .35; transform: translateY(5px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes petsLiveDot {
  0%, 100% { box-shadow: 0 0 8px rgba(85, 230, 140, .42); }
  50% { box-shadow: 0 0 17px rgba(85, 230, 140, .94); }
}

@keyframes petsLiveRing {
  0% { opacity: .7; transform: scale(.45); }
  72%, 100% { opacity: 0; transform: scale(1.8); }
}

@keyframes petsLiveSheen {
  0%, 62% { opacity: 0; transform: translateX(-260%) skewX(-18deg); }
  68% { opacity: .65; }
  82%, 100% { opacity: 0; transform: translateX(520%) skewX(-18deg); }
}

@keyframes petsRefreshSpin {
  to { transform: rotate(360deg); }
}

@keyframes petsRefreshLabel {
  from { opacity: .4; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes petsRefreshSweep {
  0% { opacity: 0; transform: translateX(-180%) skewX(-18deg); }
  30% { opacity: .65; }
  100% { opacity: 0; transform: translateX(360%) skewX(-18deg); }
}

@keyframes petsRefreshComplete {
  0% { transform: scale(.97); }
  45% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@keyframes petsNewCardIn {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(.975);
    filter: blur(3px) saturate(.82);
  }
  68% {
    opacity: 1;
    transform: translateY(-3px) scale(1.006);
    filter: blur(0) saturate(1.06);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes petsVideoSpin {
  to { transform: rotate(360deg); }
}

@keyframes petsVideoPreviewPulse {
  0%, 100% { opacity: .58; }
  50% { opacity: 1; }
}

html.ll-js body.ll-pets-page {
  animation: petsPageFadeIn .42s ease-out both;
}

html.ll-js body.ll-pets-page .ll-reveal {
  opacity: 0 !important;
  transform: translateY(28px) !important;
  transition: opacity .65s ease, transform .65s cubic-bezier(.4, 0, .2, 1) !important;
}

html.ll-js body.ll-pets-page .ll-reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.pets-page-hero {
  padding-bottom: 52px !important;
}

.pets-gallery-section {
  padding: 0 0 74px !important;
}

.pets-gallery-section .ornament {
  margin-bottom: 58px;
}

.pets-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 32px;
}

.pets-gallery-head .section-title,
.pets-gallery-head .section-desc {
  margin-bottom: 0;
}

.pets-gallery-head .section-desc {
  margin-top: 13px;
}

.pets-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.pets-gallery-actions .btn {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 9px;
}

.pets-live-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(95, 161, 255, .28);
  border-radius: 12px;
  background: rgba(15, 104, 234, .07);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a8cbfa;
  box-shadow: 0 0 0 rgba(15, 104, 234, 0);
  transition: color .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.pets-live-pill::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -55%;
  bottom: -55%;
  left: -35%;
  width: 30%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(196, 227, 255, .30), transparent);
  opacity: 0;
  transform: translateX(-260%) skewX(-18deg);
}

.pets-live-pill > i,
.pets-live-pill > span {
  position: relative;
  z-index: 1;
}

.pets-live-pill.is-changing {
  animation: petsStatusSettle .42s cubic-bezier(.2, .8, .2, 1) both;
}

.pets-live-pill i {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #f7c66b;
  box-shadow: 0 0 12px rgba(247, 198, 107, .48);
  transition: background .35s ease, box-shadow .35s ease;
}

.pets-live-pill.is-live {
  color: #c9ffe0;
  border-color: rgba(85, 230, 140, .36);
  background: linear-gradient(135deg, rgba(85, 230, 140, .08), rgba(15, 104, 234, .08));
  box-shadow: 0 0 24px rgba(85, 230, 140, .07), inset 0 0 18px rgba(85, 230, 140, .025);
}

.pets-live-pill.is-live::before {
  animation: petsLiveSheen 4.8s ease-in-out infinite;
}

.pets-live-pill.is-live i {
  background: #55e68c;
  box-shadow: 0 0 12px rgba(85, 230, 140, .56);
  animation: petsLiveDot 2.4s ease-in-out infinite;
}

.pets-live-pill.is-live i::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(85, 230, 140, .55);
  border-radius: 50%;
  animation: petsLiveRing 2.4s cubic-bezier(.2, .7, .2, 1) infinite;
}

.pets-live-pill.is-error i {
  background: #ff6b7d;
  box-shadow: 0 0 12px rgba(255, 107, 125, .52);
}

.pets-refresh[disabled] {
  cursor: wait;
  opacity: 1;
}

.pets-refresh {
  position: relative;
  min-width: 118px;
  overflow: hidden;
  isolation: isolate;
}

.pets-refresh::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -30% auto -30% -32%;
  width: 32%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(190, 222, 255, .34), transparent);
  opacity: 0;
  transform: translateX(-180%) skewX(-18deg);
}

.pets-refresh > i,
.pets-refresh > span {
  position: relative;
  z-index: 1;
}

.pets-refresh > i {
  display: none;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border: 2px solid rgba(143, 192, 255, .24);
  border-top-color: #8fc0ff;
  border-right-color: #5fa1ff;
  border-radius: 50%;
}

#pets-refresh.is-refreshing,
#pets-refresh.is-refreshing:hover {
  border-color: rgba(95, 161, 255, .76) !important;
  background: rgba(15, 104, 234, .16) !important;
  color: #ddecff !important;
  box-shadow: 0 0 22px rgba(15, 104, 234, .28), inset 0 0 18px rgba(95, 161, 255, .06) !important;
  transform: translateY(0) scale(1) !important;
}

.pets-refresh.is-refreshing::before {
  animation: petsRefreshSweep 1.15s ease-in-out infinite;
}

.pets-refresh.is-refreshing > i {
  display: inline-block;
  animation: petsRefreshSpin .7s linear infinite;
}

.pets-refresh.is-refreshing > span {
  animation: petsRefreshLabel .36s ease-out both;
}

#pets-refresh.is-refreshed,
#pets-refresh.is-refreshed:hover {
  border-color: rgba(85, 230, 140, .62) !important;
  background: rgba(85, 230, 140, .10) !important;
  color: #c9ffe0 !important;
  box-shadow: 0 0 22px rgba(85, 230, 140, .18), inset 0 0 16px rgba(85, 230, 140, .04) !important;
  transform: translateY(0) scale(1) !important;
}

.pets-refresh.is-refreshed > span {
  animation: petsRefreshComplete .48s cubic-bezier(.2, .8, .2, 1) both;
}

#pets-refresh:active {
  transform: translateY(0) scale(.94) !important;
  transition-duration: .08s !important;
}

.pets-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.pet-card {
  position: relative;
  top: 0;
  overflow: hidden;
  border: 1px solid var(--pets-line);
  border-radius: 18px;
  background: var(--pets-panel);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
  transition: top .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pet-card.pet-card-new {
  animation: petsNewCardIn .68s var(--pet-enter-delay, 0ms) cubic-bezier(.2, .8, .2, 1) both;
}

.pet-card:hover,
.pet-card:focus-within {
  top: -5px;
  border-color: rgba(95, 161, 255, .78);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .42), 0 0 26px rgba(15, 104, 234, .14);
}

.pet-album-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(95, 161, 255, .17);
  background: rgba(95, 161, 255, .17);
}

.pet-album-count-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.pet-album-count-2 {
  grid-template-rows: 1fr;
}

.pet-album-count-3 .pet-photo-button:first-child {
  grid-row: 1 / span 2;
}

.pet-photo-button {
  display: block;
  position: relative;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #050b15;
  cursor: zoom-in;
}

.pet-photo-button img,
.pet-photo-button video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-photo-button video {
  pointer-events: none;
}

.pet-video-preview-state {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto;
  place-content: center;
  justify-items: center;
  gap: 11px;
  background:
    linear-gradient(110deg, transparent 22%, rgba(95, 161, 255, .09) 42%, transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(15, 104, 234, .16), rgba(2, 7, 15, .9) 68%);
  background-size: 240% 100%, 100% 100%;
  color: #a9ccfa;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
  animation: petsSkeleton 1.5s linear infinite;
}

.pet-video-preview-state > i {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(143, 192, 255, .2);
  border-top-color: #6aa8ff;
  border-radius: 50%;
  animation: petsVideoSpin .72s linear infinite;
}

.pet-video-preview-state > b {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pet-photo-button.is-ready .pet-video-preview-state,
.pet-photo-button.is-error .pet-video-preview-state {
  visibility: hidden;
  opacity: 0;
}

.pet-photo-button::after {
  content: "View photo";
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(2, 7, 15, .84);
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #d9eaff;
  opacity: 0;
  transition: opacity .2s ease;
}

.pet-photo-button.is-video::after {
  content: "Play video";
}

.pet-video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(143, 192, 255, .68);
  border-radius: 50%;
  background: rgba(2, 9, 20, .82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .48), 0 0 24px rgba(15, 104, 234, .28);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .24s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
  pointer-events: none;
}

.pet-photo-button.is-ready .pet-video-play,
.pet-photo-button.is-error .pet-video-play {
  opacity: 1;
}

.pet-video-play i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.pet-photo-button.is-video:hover .pet-video-play,
.pet-photo-button.is-video:focus-visible .pet-video-play {
  background: rgba(15, 104, 234, .68);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5), 0 0 34px rgba(15, 104, 234, .58);
  transform: translate(-50%, -50%) scale(1.08);
}

.pet-album-grid:not(.pet-album-count-1) .pet-photo-button::after {
  display: none;
}

.pet-card:hover .pet-photo-button::after,
.pet-photo-button:focus-visible::after {
  opacity: 1;
}

.pet-card-body {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 69px;
  padding: 17px 18px 18px;
}

.pet-author-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: 100%;
}

.pet-avatar,
.pet-avatar-fallback {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(95, 161, 255, .34);
  border-radius: 50%;
  background: rgba(15, 104, 234, .12);
}

.pet-avatar {
  object-fit: cover;
}

.pet-avatar-fallback {
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 900;
  color: #9fc8ff;
}

.pet-author-copy {
  min-width: 0;
}

.pet-author-copy strong {
  display: block;
  overflow: hidden;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}

.pet-author-copy time {
  display: block;
  margin-top: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(139, 181, 235, .66);
}

.pet-comment {
  position: absolute;
  z-index: 3;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  margin: 0;
  padding: 9px 11px 10px;
  border-left: 2px solid rgba(95, 161, 255, .66);
  border-radius: 0 10px 10px 0;
  background: rgba(2, 9, 20, .88);
  box-shadow: 0 9px 24px rgba(0, 0, 0, .34);
  pointer-events: none;
}

.pet-comment > span {
  font-family: 'Cinzel', serif;
  font-size: 25px;
  line-height: 1;
  color: #6aa8ff;
}

.pet-comment p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(208, 224, 247, .82);
  font-size: 14px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pets-empty,
.pets-error {
  grid-column: 1 / -1;
  padding: 42px 28px;
  border: 1px solid var(--pets-line);
  border-radius: 18px;
  background: var(--pets-panel);
  text-align: center;
}

.pets-empty span,
.pets-error span {
  display: block;
  margin-bottom: 15px;
  font-size: 32px;
}

.pets-empty h3,
.pets-error h3 {
  margin: 0 0 8px;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #fff;
}

.pets-empty p,
.pets-error p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(190, 213, 244, .76);
  font-size: 15px;
  line-height: 1.55;
}

.pet-skeleton {
  overflow: hidden;
  border: 1px solid rgba(95, 161, 255, .14);
  border-radius: 18px;
  background: rgba(7, 15, 28, .9);
}

.pet-skeleton span,
.pet-skeleton b,
.pet-skeleton i {
  display: block;
  background: linear-gradient(90deg, rgba(95, 161, 255, .06), rgba(95, 161, 255, .15), rgba(95, 161, 255, .06));
  background-size: 220% 100%;
  animation: petsSkeleton 1.35s linear infinite;
}

.pet-skeleton span {
  aspect-ratio: 4 / 3;
}

.pet-skeleton b {
  width: 48%;
  height: 12px;
  margin: 17px 18px 9px;
  border-radius: 999px;
}

.pet-skeleton i {
  width: 72%;
  height: 9px;
  margin: 0 18px 20px;
  border-radius: 999px;
}

@keyframes petsSkeleton {
  to { background-position: -220% 0; }
}

.pet-lightbox[hidden] {
  display: none !important;
}

.pet-lightbox {
  position: fixed;
  inset: 0 !important;
  z-index: 2147483646 !important;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin: 0 !important;
  padding: 24px;
  background: rgba(1, 4, 10, .94);
}

.pet-lightbox-card {
  position: relative;
  width: min(1060px, 96vw);
  max-height: 92vh;
  overflow: hidden;
  border: 1px solid rgba(95, 161, 255, .52);
  border-radius: 20px;
  background: #050b15;
  box-shadow: 0 32px 110px rgba(0, 0, 0, .72);
}

.pet-lightbox-card > img,
.pet-lightbox-card > video {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: contain;
  background: #02060c;
}

.pet-lightbox-card > img[hidden],
.pet-lightbox-card > video[hidden] {
  display: none !important;
}

.pet-lightbox-loading[hidden] {
  display: none !important;
}

.pet-lightbox-loading {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  height: min(72vh, 760px);
  background:
    radial-gradient(circle at 50% 48%, rgba(15, 104, 234, .14), transparent 32%),
    rgba(2, 6, 12, .74);
  color: #a9ccfa;
  pointer-events: none;
}

.pet-lightbox-loading > span {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(143, 192, 255, .18);
  border-top-color: #6aa8ff;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(15, 104, 234, .4));
  animation: petsVideoSpin .72s linear infinite;
}

.pet-lightbox-loading > strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pet-lightbox-loading.is-error > span {
  border-color: rgba(255, 110, 139, .4);
  border-top-color: #ff6e8b;
  animation: petsVideoPreviewPulse 1.3s ease-in-out infinite;
}

.pet-lightbox-loading.is-error > strong {
  color: #ff9ab0;
}

.pet-lightbox-close,
.pet-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(95, 161, 255, .46) !important;
  background: rgba(3, 10, 22, .94) !important;
  color: #fff !important;
  line-height: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .42), 0 0 14px rgba(15, 104, 234, .18), inset 0 0 0 1px rgba(255, 255, 255, .035) !important;
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.pet-lightbox-close::before,
.pet-lightbox-nav::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(95, 161, 255, .32), transparent 70%);
  opacity: 0;
  transform: scale(.6);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.pet-lightbox-close svg,
.pet-lightbox-nav svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1);
}

.pet-lightbox-nav svg {
  width: 22px;
  height: 22px;
}

body.ll-pets-page .pet-lightbox-card .pet-lightbox-close svg path,
body.ll-pets-page .pet-lightbox-card .pet-lightbox-nav svg path {
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 2.35 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.pet-lightbox-close:hover,
.pet-lightbox-nav:hover {
  transform: scale(1.08);
  border-color: rgba(143, 192, 255, .92) !important;
  background: rgba(15, 104, 234, .32) !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .48), 0 0 28px rgba(15, 104, 234, .58), inset 0 0 0 1px rgba(143, 192, 255, .16) !important;
}

.pet-lightbox-close:hover::before,
.pet-lightbox-nav:hover::before {
  opacity: 1;
  transform: scale(1);
}

.pet-lightbox-close:hover svg,
.pet-lightbox-nav:hover svg {
  transform: scale(1.12);
}

.pet-lightbox-close:active,
.pet-lightbox-nav:active {
  transform: scale(.94);
  background: rgba(15, 104, 234, .46) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .42), 0 0 18px rgba(15, 104, 234, .42) !important;
}

.pet-lightbox-close:focus-visible,
.pet-lightbox-nav:focus-visible {
  outline: 2px solid #8fc0ff;
  outline-offset: 3px;
  border-color: rgba(143, 192, 255, .9);
  box-shadow: 0 0 0 4px rgba(15, 104, 234, .2), 0 0 28px rgba(15, 104, 234, .42);
}

.pet-lightbox-close {
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.pet-lightbox-nav {
  top: 42%;
  width: 42px;
  height: 58px;
  border-radius: 12px;
}

.pet-lightbox-prev { left: 14px; }
.pet-lightbox-next { right: 14px; }

.pet-lightbox-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 17px 21px;
  border-top: 1px solid rgba(95, 161, 255, .18);
}

.pet-lightbox-copy strong {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: #fff;
}

.pet-lightbox-copy p {
  margin: 5px 0 0;
  color: rgba(198, 220, 249, .78);
  font-size: 14px;
}

.pet-lightbox-copy a {
  flex: 0 0 auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8fc0ff !important;
}

body.pet-lightbox-open {
  overflow: hidden !important;
}

/* The site banner and account panel intentionally use very high stacking layers.
   Keep them out of the way while a pet photo is expanded. */
body.pet-lightbox-open .topbar,
body.pet-lightbox-open #ll-public-banner-stack,
body.pet-lightbox-open #ll-floating-account-panel-slot,
body.pet-lightbox-open #ll-login-panel-slot,
body.pet-lightbox-open #ll-account-collapsed-avatar {
  visibility: hidden !important;
  pointer-events: none !important;
}

.pets-cta-section {
  padding-top: 54px !important;
}

@media (max-width: 980px) {
  .pets-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pets-gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .pets-gallery-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .pets-gallery {
    grid-template-columns: 1fr;
  }

  .pets-gallery-actions,
  .pets-gallery-actions .btn,
  .pets-live-pill {
    width: 100%;
  }

  .pets-live-pill {
    justify-content: center;
  }

  .pet-lightbox {
    padding: 10px;
  }

  .pet-lightbox-card > img,
  .pet-lightbox-card > video {
    height: 66vh;
  }

  .pet-lightbox-loading {
    height: 66vh;
  }

  .pet-lightbox-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .pet-lightbox-nav {
    top: 38%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ll-pets-page,
  body.ll-pets-page .ll-reveal,
  .pet-card,
  .pets-live-pill,
  .pets-live-pill::before,
  .pets-live-pill i,
  .pets-live-pill i::after,
  .pets-refresh,
  .pets-refresh::before,
  .pets-refresh > i,
  .pets-refresh > span,
  .pet-lightbox-close,
  .pet-lightbox-close::before,
  .pet-lightbox-close svg,
  .pet-lightbox-nav,
  .pet-lightbox-nav::before,
  .pet-lightbox-nav svg,
  .pet-video-play,
  .pet-video-preview-state,
  .pet-video-preview-state > i,
  .pet-lightbox-loading > span,
  .pet-skeleton span,
  .pet-skeleton b,
  .pet-skeleton i {
    animation: none !important;
    transition: none !important;
  }
}
