/* ============================================================
   PHOTO SETS — DARK LAYOUT
   Cleaned and deduplicated
   ============================================================ */

:root {
  --content-shell-max: 1360px;
  --content-shell-pad: 20px;

  --photo-set-max: var(--content-shell-max);
  --photo-set-gutter: var(--content-shell-pad);
}

@media (max-width: 768px) {
  :root {
    --content-shell-pad: 10px;
    --photo-set-gutter: var(--content-shell-pad);
  }
}

/* ============================================================
   PAGE / CANVAS
   ============================================================ */

body.single-photo_sets {
  --photo-set-shell-max: var(--content-shell-max);
  --photo-set-shell-pad: var(--content-shell-pad);
  --photo-set-accent-ui: var(--photo-set-accent, var(--ast-global-color-0));
  --photo-set-border: rgba(255, 255, 255, .08);
  --photo-set-soft: rgba(255, 255, 255, .82);
  --photo-set-dim: rgba(255, 255, 255, .66);
  --photo-set-faint: rgba(255, 255, 255, .52);

  --photo-set-title-max-width: 34ch;

  background:
    radial-gradient(circle at top, #0c1118 0%, #07090c 60%),
    #07090c;
  color: rgba(255, 255, 255, .92);
}

@media (max-width: 768px) {
  body.single-photo_sets {
    --photo-set-title-max-width: 100%;
  }
}

/* ============================================================
   SHARED CONTENT RAIL
   Keeps intro, breadcrumbs, slideshow, gallery, pagination aligned
   ============================================================ */

.photo-set-layout {
  width: min(var(--photo-set-max), calc(100% - (var(--photo-set-gutter) * 2)));
  margin: 0 auto;
  box-sizing: border-box;
}

.photo-set-scroll-date {
  position: fixed;
  top: 132px;
  right: max(20px, calc((100vw - var(--photo-set-max)) / 2));
  z-index: 30;
  min-width: 126px;
  max-width: 158px;
  padding: 10px 12px 11px;
  border: 1px solid rgba(229, 66, 159, .34);
  background:
    linear-gradient(180deg, rgba(16, 20, 30, .94) 0%, rgba(8, 11, 17, .94) 100%),
    rgba(8, 11, 17, .94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
}

.photo-set-scroll-date__value {
  color: #fff;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

.photo-set-breadcrumbs,
.photo-set-intro,
.photo-set-slideshow,
.photo-set-pagination,
.photo-set-gallery,
.photo-set-grid {
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.photo-set-breadcrumbs {
  margin: 0 0 10px;
  padding: 0;
  border: none;
  background: none;
}

.photo-set-breadcrumbs .travelBreadcrumbs {
  margin: 0;
  padding: 0;
}

.photo-set-breadcrumbs .travelBreadcrumbsList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.55);
}

.photo-set-breadcrumbs .travelBreadcrumbsItem {
  display: inline-flex;
  align-items: center;
}

.photo-set-breadcrumbs .travelBreadcrumbsLink,
.photo-set-breadcrumbs .travelBreadcrumbsCurrent {
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.photo-set-breadcrumbs .travelBreadcrumbsLink {
  color: rgba(255, 255, 255, 0.62) !important;
  opacity: 0.75;
}

.photo-set-breadcrumbs .travelBreadcrumbsItem:first-child .travelBreadcrumbsLink {
  color: var(--ast-global-color-0) !important;
  letter-spacing: 0.12em;
  font-size: 11px;
  opacity: 0.9;
}

.photo-set-breadcrumbs .travelBreadcrumbsItem:not(:first-child):not(:last-child) .travelBreadcrumbsLink {
  color: rgba(255, 255, 255, 0.6) !important;
}

.photo-set-breadcrumbs .travelBreadcrumbsItem:last-child .travelBreadcrumbsLink,
.photo-set-breadcrumbs .travelBreadcrumbsCurrent {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 500;
  pointer-events: none;
}

.photo-set-breadcrumbs .travelBreadcrumbsItem:not(:last-child)::after {
  content: "—";
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.22);
}

.photo-set-breadcrumbs .travelBreadcrumbsLink:hover {
  color: var(--ast-global-color-0) !important;
}

/* ============================================================
   INTRO
   ============================================================ */

.photo-set-intro {
  position: relative;
  margin: 20px 0 18px;
  padding: 26px 40px 18px;
  background:
    radial-gradient(1200px 600px at -10% -10%, rgba(229, 66, 159, .18), transparent 60%),
    linear-gradient(140deg, #0d1118 0%, #0b0e14 55%, #0a0c12 100%);
  border: 1px solid var(--photo-set-border);
  box-sizing: border-box;
  box-shadow: var(--photo-set-shadow);
  overflow: hidden;

  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.62;
}

.photo-set-intro::before {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  margin-bottom: 16px;
  background: linear-gradient(90deg,
      var(--photo-set-accent-ui) 0%,
      rgba(229, 66, 159, .65) 55%,
      rgba(229, 66, 159, .18) 100%);
  border-radius: 2px;
}

.photo-set-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .03);
}

.photo-set-intro h1,
.photo-set-intro h2,
.photo-set-intro h3 {
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.photo-set-intro h1 {
  font-size: clamp(32px, 3vw, 36px);
  line-height: 1.02;
  margin: 0 0 2px;
  letter-spacing: -0.03em;
  max-width: var(--photo-set-title-max-width);
}

.photo-set-intro-title {
  margin-bottom: 0;
  line-height: 1.02;
}

.photo-set-intro h2 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.photo-set-intro h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.photo-set-intro p {
  margin: 0 0 13px;
}

.photo-set-intro p:last-child {
  margin-bottom: 0;
}

.photo-set-intro a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.photo-set-series-callout {
  display: block;
  max-width: 34rem;
  margin: 14px 0 4px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
}

.photo-set-series-callout__label {
  margin-bottom: 2px;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.photo-set-series-callout__link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  text-decoration-thickness: 1px;
}

.photo-set-series-callout__link:hover {
  color: rgba(255, 255, 255, .92);
}

/* ============================================================
   INTRO SUBTITLE / META
   ============================================================ */

.photo-set-subtitle {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.64);
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.photo-set-meta-short {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--photo-set-faint);
}

.photo-set-meta {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .60);
  margin: -6px 1rem 18px;
}

.photo-set-dateline {
  margin: 0 0 3px;
  padding-bottom: 0;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 0;
}

.photo-set-intro-inner {
  margin-top: 0;
}

.photo-set-intro-inner>p:first-child {
  margin-top: 0;
}

.photo-set-intro-inner p {
  margin-bottom: 13px;
  line-height: 1.5;
}

.photo-set-intro-inner ul,
.photo-set-intro-inner ol {
  margin: 0 0 16px 1.2rem;
  max-width: 74ch;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.photo-set-intro-inner li {
  margin-bottom: 8px;
}

.no-break {
  white-space: nowrap;
}

/* ============================================================
   MOBILE INTRO COLLAPSE
   ============================================================ */

.photo-set-intro-toggle {
  display: none;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.photo-set-intro-toggle:hover {
  color: rgba(255, 255, 255, .92);
}

@media (max-width: 768px) {
  .photo-set-intro {
    margin: 16px 0 16px;
    padding: 18px 16px 14px;
  }

  .photo-set-intro::before {
    width: 108px;
    margin-bottom: 14px;
  }

  .photo-set-intro-toggle {
    display: inline;
  }

  .photo-set-intro-title {
    line-height: 1.04;
    margin-bottom: 4px;
  }

  .photo-set-intro h1 {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    max-width: 100%;
    text-wrap: pretty;
    overflow-wrap: break-word;
  }

  .photo-set-subtitle {
    margin: 0 0 8px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.28;
    color: rgba(255, 255, 255, 0.76);
    text-wrap: pretty;
  }

  .photo-set-dateline {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    opacity: 0.75;
    white-space: normal;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }

  .photo-set-breadcrumbs {
    margin: 2px 0 8px;
    opacity: 1;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px 0;
    font-size: 9px;
    letter-spacing: 0.03em;
    line-height: 1.22;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsItem {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsItem:first-child .travelBreadcrumbsLink {
    color: var(--ast-global-color-0) !important;
    font-size: 10px;
    letter-spacing: 0.08em;
    opacity: 1;
    font-weight: 600;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsLink {
    color: rgba(255, 255, 255, 0.72) !important;
    opacity: 1;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsItem:not(:last-child)::after {
    content: "—";
    color: rgba(255, 255, 255, 0.28);
    margin: 0 5px;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsItem:last-child {
    display: none;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsItem:nth-last-child(2)::after {
    display: none;
  }

  .photo-set-series-callout {
    margin: 10px 0 4px;
    padding: 9px 11px;
    max-width: 100%;
  }

  .photo-set-series-callout__link {
    font-size: 13px;
    line-height: 1.35;
  }

  .photo-set-intro-inner {
    margin-top: 0;
    max-height: 130px;
    overflow: hidden;
    position: relative;
  }

  .photo-set-intro-inner p {
    margin-bottom: 11px;
    line-height: 1.52;
  }

  .photo-set-intro-inner>p:first-child {
    margin-top: 4px;
  }

  .photo-set-intro:not(.is-open) .photo-set-intro-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    background: linear-gradient(to bottom,
        rgba(12, 14, 18, 0) 0%,
        rgba(12, 14, 18, .92) 100%);
  }

  .photo-set-intro.is-open .photo-set-intro-inner {
    max-height: none;
  }

  body.postid-176127 .photo-set-breadcrumbs .travelBreadcrumbsItem:first-child {
    display: none;
  }

  body.postid-176127 .photo-set-breadcrumbs .travelBreadcrumbsItem:first-child::after {
    display: none;
  }

  body.postid-176127 .photo-set-breadcrumbs .travelBreadcrumbsList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    font-size: 10px;
    letter-spacing: 0.035em;
    line-height: 1.24;
  }

  body.postid-176127 .photo-set-breadcrumbs {
    margin: 2px 0 8px;
  }

  body.postid-176127 .photo-set-breadcrumbs .travelBreadcrumbsItem:last-child {
    opacity: 0.75;
  }
}

@media (max-width: 1180px) {
  .photo-set-scroll-date {
    top: auto;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    min-width: 0;
    max-width: min(180px, calc(100vw - 28px));
    padding: 9px 11px 10px;
    border-color: rgba(229, 66, 159, .42);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 768px) {
  .photo-set-scroll-date {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    max-width: min(152px, calc(100vw - 20px));
    padding: 8px 10px 9px;
  }

  .photo-set-scroll-date__value {
    font-size: 12px;
  }
}

/* ============================================================
   SLIDESHOW BUTTON ROW
   ============================================================ */

.photo-set-slideshow {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
  padding: 0;
}

.photo-set-slideshow-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .90);
  padding: 10px 12px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
}

.photo-set-slideshow-btn:hover {
  background: rgba(255, 255, 255, .10);
}

/* ============================================================
   GALLERY GRID
   ============================================================ */

.photo-set-grid,
.photo-set-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 0 0 2rem;
  padding: 0;
  max-width: none;
  box-sizing: border-box;
}

@media (max-width: 1024px) {

  .photo-set-grid,
  .photo-set-gallery {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {

  .photo-set-grid,
  .photo-set-gallery {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ============================================================
   CAPTIONS
   ============================================================ */

.photo-set-item figcaption,
.photo-set-caption {
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, .72);
  margin-top: 0.4rem;
}

.photo-set-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.photo-set-caption__body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.photo-set-caption.is-expanded .photo-set-caption__body {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.photo-set-caption button.photo-set-caption__toggle,
.photo-set-caption button.photo-set-caption__toggle:link,
.photo-set-caption button.photo-set-caption__toggle:visited {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.72) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.78rem;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
}

.photo-set-caption button.photo-set-caption__toggle:hover,
.photo-set-caption button.photo-set-caption__toggle:focus,
.photo-set-caption button.photo-set-caption__toggle:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
  text-decoration: none !important;
}

.photo-set-caption__toggle[hidden] {
  display: none;
}

.photo-set-item figcaption .photo-caption-date,
.photo-set-caption .photo-caption-date {
  font-style: italic;
  opacity: 0.7;
  margin-right: 0.25em;
}

@media (max-width: 768px) {

  .photo-set-item figcaption,
  .photo-set-caption {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .photo-set-caption__toggle {
    font-size: 0.74rem;
  }
}

/* ============================================================
   PAGINATION
   ============================================================ */

.photo-set-pagination {
  margin: 30px 0 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.photo-set-pagination a,
.photo-set-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
}

.photo-set-pagination a:hover {
  background: rgba(255, 255, 255, .10);
}

.photo-set-pagination .is-current {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .14);
}

.photo-set-pagination .is-disabled {
  opacity: .45;
}

.photo-set-pagination .is-ellipsis {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 6px;
}

.photo-set-pagination .is-meta {
  border: none;
  background: transparent;
  font-weight: 500;
  opacity: .75;
}

body.single-photo_sets #secondary {
  display: none !important;
}

body.single-photo_sets #primary,
body.single-photo_sets .content-area,
body.single-photo_sets .site-main {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

body.single-photo_sets .ast-container,
body.single-photo_sets .site-content>.ast-container {
  display: block !important;
  max-width: none !important;
}

/* ============================================================
   Photo Set Gallery Toolbar (search + sort, > 40 photos)
   Self-contained so singular photo sets do not depend on photo-archive.css.
   ============================================================ */

.pa-toolbar.psg-toolbar {
  width: 100%;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.pa-toolbar.psg-toolbar .pa-toolbar-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.pa-toolbar.psg-toolbar .pa-tb-search {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 1 1 160px;
  min-width: 0;
}

.pa-toolbar.psg-toolbar .psg-tag-select {
  height: 38px;
  min-width: 180px;
  padding: 0 34px 0 12px;
  background-color: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .82rem;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .55) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, .55) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 16px,
    calc(100% - 11px) 16px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: border-color .14s ease, background-color .14s ease, color .14s ease;
}

.pa-toolbar.psg-toolbar .psg-tag-select:focus {
  border-color: var(--photo-set-accent-ui);
  background-color: rgba(255, 255, 255, .10);
}

.pa-toolbar.psg-toolbar .psg-tag-select option {
  color: #111;
}

.pa-toolbar.psg-toolbar .pa-tb-search-input {
  flex: 1;
  height: 38px;
  padding: 0 38px 0 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  color: rgba(255, 255, 255, .90);
  font-size: .88rem;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  transition: border-color .14s ease, background .14s ease;
}

.pa-toolbar.psg-toolbar .pa-tb-search-input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.pa-toolbar.psg-toolbar .pa-tb-search-input:focus {
  border-color: var(--photo-set-accent-ui);
  background: rgba(255, 255, 255, .10);
}

.pa-toolbar.psg-toolbar .pa-tb-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: var(--photo-set-accent-ui);
  border: 0;
  border-radius: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pa-toolbar.psg-toolbar .pa-tb-search-btn:hover {
  filter: brightness(1.08);
}

.pa-toolbar.psg-toolbar .pa-tb-sort {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .16);
  overflow: hidden;
  flex-shrink: 0;
}

.pa-toolbar.psg-toolbar .pa-tb-sort-btn {
  height: 38px;
  min-width: 118px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .07);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  color: rgba(255, 255, 255, .60);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  line-height: 1;
  transition: background .13s ease, color .13s ease, box-shadow .13s ease, border-color .13s ease;
}

.pa-toolbar.psg-toolbar .pa-tb-sort-btn:last-child {
  border-right: 0;
}

.pa-toolbar.psg-toolbar .pa-tb-sort-btn:hover {
  background: rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .88);
}

.pa-toolbar.psg-toolbar .pa-tb-sort-btn.is-active {
  background: linear-gradient(180deg, rgba(229, 66, 159, .22) 0%, rgba(229, 66, 159, .12) 100%);
  box-shadow: inset 0 0 0 2px rgba(229, 66, 159, .88);
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
}

.pa-toolbar.psg-toolbar .pa-tb-sort-btn.is-active::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff66b8;
  box-shadow: 0 0 0 3px rgba(229, 66, 159, .22);
}

/* Push count to far right */
.psg-count {
  margin-left: auto;
  font-size: .76rem;
  color: rgba(255, 255, 255, .40);
  white-space: nowrap;
}

/* Status line shown below toolbar when filtering */
.psg-filter-status {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 12px;
}

.psg-filter-status strong {
  color: #fff;
}

@media (max-width: 600px) {
  .pa-toolbar.psg-toolbar .psg-tag-select {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }

  .psg-count {
    margin-left: 0;
    text-align: right;
  }
}

@media (min-width: 769px) {
  .photo-set-breadcrumbs .travelBreadcrumbsLink {
    color: rgba(255, 255, 255, 0.68) !important;
    opacity: 1;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsItem:first-child .travelBreadcrumbsLink {
    color: var(--ast-global-color-0) !important;
    opacity: 1;
    font-weight: 600;
  }

  .photo-set-breadcrumbs .travelBreadcrumbsItem:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.26);
  }
}

.photo-set-place-links {
  margin: 12px 0 0;
}

.photo-set-place-links__label {
  display: block;
  margin: 0 0 5px;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.photo-set-place-links__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.62);
}

.photo-set-place-links__item {
  display: inline-flex;
  align-items: center;
}

.photo-set-place-links__item:not(:last-child)::after {
  content: "—";
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.22);
}

.photo-set-place-links__link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.18s ease;
}

.photo-set-place-links__link:hover,
.photo-set-place-links__link:focus {
  color: #fff;
}

.photo-set-place-links__item:first-child .photo-set-place-links__link {
  color: var(--ast-global-color-0);
}

@media (max-width: 768px) {
  .photo-set-place-links {
    margin-top: 10px;
  }

  .photo-set-place-links__label {
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .photo-set-place-links__list {
    font-size: 11px;
    line-height: 1.28;
  }

  .photo-set-place-links__item:not(:last-child)::after {
    margin: 0 6px;
  }
}

.photo-set-place-links {
  margin: 10px 0 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.photo-set-place-links__label {
  display: block;
  margin: 0 0 6px;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}

.photo-set-place-links__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 13px;
  line-height: 1.35;
}

.photo-set-place-links__item {
  display: inline-flex;
  align-items: center;
}

.photo-set-place-links__item:not(:last-child)::after {
  content: "→";
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 11px;
}

.photo-set-place-links__link {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.18s ease;
}

.photo-set-place-links__link:hover,
.photo-set-place-links__link:focus {
  color: #fff;
}

.photo-set-place-links__item:first-child .photo-set-place-links__link {
  color: var(--ast-global-color-0);
}

@media (max-width: 768px) {
  .photo-set-place-links {
    margin: 10px 0 12px;
    padding-top: 8px;
  }

  .photo-set-place-links__label {
    margin-bottom: 5px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .photo-set-place-links__list {
    font-size: 12px;
    line-height: 1.3;
  }

  .photo-set-place-links__item:not(:last-child)::after {
    margin: 0 6px;
    font-size: 10px;
  }
}
