/* Pharmacy Features detail pages */
.pf-page {
  --pf-deep: #2A0A3E;
  --pf-purple: #7B3FA0;
  --pf-orange: #D4621A;
  --pf-rose: #B84878;
  --pf-cream: #FBF9F6;
  --pf-lav: #F4F0FA;
  --pf-line: #E7DDF0;
  --pf-muted: #66536F;
  --pf-white: #FFFFFF;
  color: var(--pf-deep);
  background: var(--pf-white);
  overflow: hidden;
}

.pf-page p {
  color: var(--pf-muted);
}

.pf-page .wrap {
  max-width: 1240px;
}

.pf-hero {
  position: relative;
  padding: 76px 0 72px;
}

.pf-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 48px;
  align-items: center;
}

.pf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #a94012;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pf-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.pf-page h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.pf-page h2 {
  font-size: clamp(28px, 3.2vw, 40px);
}

.pf-lead {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.72;
}

.pf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pf-hero-card {
  position: relative;
  min-height: 440px;
}

.pf-section {
  padding: 76px 0;
}

.pf-section--tight {
  padding: 54px 0;
}

.pf-section--cream {
  background: var(--pf-cream);
}

.pf-section--lav {
  background: var(--pf-lav);
}

.pf-section--ink {
  background: var(--pf-deep);
}

.pf-section--ink h2,
.pf-section--ink h3,
.pf-section--ink p {
  color: var(--pf-cream);
}

.pf-section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.pf-section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pf-section-head .pf-kicker {
  margin-bottom: 12px;
}

.pf-grid-2,
.pf-grid-3,
.pf-grid-4 {
  display: grid;
  gap: 22px;
}

.pf-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pf-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pf-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pf-tile {
  background: var(--pf-white);
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(42, 10, 62, .08);
}

.pf-tile i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--pf-lav);
  color: var(--pf-purple);
  font-size: 20px;
}

.pf-tile h3,
.pf-tile h4 {
  margin-bottom: 10px;
}

.pf-tile p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}

.pf-note {
  margin-top: 18px;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.6;
}

.pf-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  border-radius: 8px;
  padding: 40px;
  background: linear-gradient(135deg, #7B3FA0 0%, #B84878 56%, #D4621A 115%);
}

.pf-cta h2,
.pf-cta p {
  color: var(--pf-white);
}

.pf-cta p {
  max-width: 720px;
  margin-bottom: 0;
}

.pf-cta .pf-actions {
  justify-content: flex-end;
}

.pf-mini-list {
  display: grid;
  gap: 12px;
}

.pf-mini-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--pf-muted);
}

.pf-mini-list i {
  color: var(--pf-orange);
  margin-top: 5px;
}

.pf-faq .acc {
  border-radius: 8px;
}

.pf-faq .acc summary {
  background: var(--pf-white);
}

.pf-faq .acc[open] summary {
  background: var(--pf-deep);
  color: var(--pf-cream);
}

.pf-faq .acc[open] summary::after {
  color: var(--pf-cream);
}

.pf-photo {
  min-height: 430px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 45px rgba(42, 10, 62, .13);
}

/* Hub */
.pf-hub-hero {
  background:
    linear-gradient(120deg, rgba(251, 249, 246, .96) 0%, rgba(251, 249, 246, .86) 52%, rgba(244, 240, 250, .72) 100%),
    url("../images/generated/provider-partnership-consult.webp") center / cover no-repeat;
}

.pf-hub-grid {
  align-items: stretch;
}

.pf-hub-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  padding: 26px;
  background: var(--pf-white);
  box-shadow: 0 18px 36px rgba(42, 10, 62, .08);
}

.pf-hub-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  border: 18px solid rgba(123, 63, 160, .1);
  border-radius: 50%;
}

.pf-hub-card i {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--pf-lav);
  color: var(--pf-purple);
  font-size: 21px;
}

.pf-hub-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.pf-hub-card p {
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.65;
}

.pf-hub-card--orange i {
  background: #FFF0E7;
  color: var(--pf-orange);
}

.pf-hub-card--rose i {
  background: #FCEAF3;
  color: var(--pf-rose);
}

/* Dispill: dose pack system */
.pf-dispill .pf-hero {
  background:
    linear-gradient(100deg, rgba(251, 249, 246, .98) 0%, rgba(251, 249, 246, .95) 54%, rgba(244, 240, 250, .82) 100%),
    url("../images/generated/stoneview-dose-capsules-v2.webp") center / cover no-repeat;
}

.pf-pack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(123, 63, 160, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 60px rgba(42, 10, 62, .16);
}

.pf-pack__dose {
  min-height: 100px;
  border: 1px dashed rgba(123, 63, 160, .35);
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F2FA 100%);
}

.pf-pack__dose strong,
.pf-pack__dose span {
  display: block;
}

.pf-pack__dose strong {
  margin-bottom: 8px;
  color: var(--pf-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pf-pack__dose span {
  width: 30px;
  height: 13px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: var(--pf-purple);
}

.pf-pack__dose span:nth-child(3) {
  width: 42px;
  background: var(--pf-orange);
}

.pf-pack__label {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--pf-line);
  padding-top: 14px;
  color: var(--pf-muted);
  font-size: 13px;
}

.pf-dispill-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pf-dispill-step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: var(--pf-white);
}

.pf-dispill-step .num {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pf-deep);
  color: var(--pf-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.pf-dispill .pf-photo {
  background-image: url("../images/generated/stoneview-dose-capsules-v2.webp");
}

/* Immunizations: clinic protection board */
.pf-immunizations .pf-hero {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .92) 48%, rgba(255, 240, 231, .78) 100%),
    url("../images/Immunizations.webp") center / cover no-repeat;
}

.pf-shield {
  display: grid;
  min-height: 430px;
  place-items: center;
  border-radius: 8px;
  background: #FFF7F1;
  box-shadow: 0 24px 60px rgba(212, 98, 26, .14);
}

.pf-shield__mark {
  position: relative;
  width: min(78%, 360px);
  aspect-ratio: 1;
  border: 24px solid rgba(212, 98, 26, .18);
  border-radius: 38% 38% 46% 46%;
  background: var(--pf-white);
}

.pf-shield__mark::before,
.pf-shield__mark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: var(--pf-orange);
  border-radius: 999px;
}

.pf-shield__mark::before {
  width: 148px;
  height: 34px;
}

.pf-shield__mark::after {
  width: 34px;
  height: 148px;
}

.pf-vax-board {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch;
}

.pf-vax-list {
  display: grid;
  gap: 14px;
}

.pf-vax-item {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid #F3D7C6;
  border-radius: 8px;
  padding: 16px;
  background: var(--pf-white);
}

.pf-vax-item i {
  color: var(--pf-orange);
  font-size: 20px;
}

.pf-vax-item strong {
  display: block;
}

.pf-vax-item span {
  color: var(--pf-muted);
  font-size: 14px;
}

.pf-immunizations .pf-photo {
  background-image: url("../images/generated/immunization-visit-support-v2.webp");
}

/* Physician supplies: operations dashboard */
.pf-supplies .pf-hero {
  background: linear-gradient(135deg, #F7FCFA 0%, #FFFFFF 54%, #F4F0FA 100%);
}

.pf-inventory {
  border: 1px solid #CFE8DF;
  border-radius: 8px;
  overflow: hidden;
  background: var(--pf-white);
  box-shadow: 0 24px 60px rgba(28, 91, 74, .14);
}

.pf-inventory__bar {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  background: #173E35;
  color: #ECFFF7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pf-inventory__rows {
  display: grid;
}

.pf-inventory__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid #E4F3ED;
}

.pf-inventory__row:last-child {
  border-bottom: 0;
}

.pf-inventory__row strong {
  display: block;
  margin-bottom: 4px;
}

.pf-inventory__row span {
  color: var(--pf-muted);
  font-size: 14px;
}

.pf-stock {
  border-radius: 999px;
  padding: 6px 11px;
  background: #E7F7F0;
  color: #276A55;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pf-supplies .pf-tile i {
  background: #E7F7F0;
  color: #276A55;
}

.pf-procurement {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pf-procurement article {
  border-left: 4px solid #276A55;
  border-radius: 8px;
  padding: 22px;
  background: var(--pf-white);
}

.pf-supplies .pf-photo {
  background-image: url("../images/generated/provider-partnership-consult.webp");
}

/* ED: private consultation */
.pf-ed {
  background: #15071F;
}

.pf-ed .pf-hero {
  background:
    linear-gradient(110deg, rgba(21, 7, 31, .98) 0%, rgba(42, 10, 62, .92) 58%, rgba(184, 72, 120, .75) 100%),
    url("../images/generated/ed-private-consult.webp") center / cover no-repeat;
}

.pf-ed .pf-kicker,
.pf-ed h1,
.pf-ed .pf-lead {
  color: var(--pf-white);
}

.pf-ed h1 em {
  color: #FFC8DE;
}

.pf-privacy {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.pf-privacy__lock {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 26px;
  border: 16px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}

.pf-privacy__lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  width: 72px;
  height: 58px;
  transform: translateX(-50%);
  border: 10px solid #FFC8DE;
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
}

.pf-privacy__lock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 92px;
  width: 96px;
  height: 70px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: var(--pf-white);
}

.pf-privacy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.pf-ed .pf-section {
  background: var(--pf-white);
}

.pf-ed .pf-section--cream {
  background: #FFF7FA;
}

.pf-ed .pf-tile i {
  background: #FCEAF3;
  color: var(--pf-rose);
}

/* Medication sync: calendar command center */
.pf-sync .pf-hero {
  background:
    linear-gradient(120deg, rgba(244, 240, 250, .98) 0%, rgba(251, 249, 246, .94) 58%, rgba(255, 240, 231, .82) 100%),
    url("../images/generated/stoneview-dose-capsules-v2.webp") center / cover no-repeat;
}

.pf-calendar {
  overflow: hidden;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: var(--pf-white);
  box-shadow: 0 24px 60px rgba(42, 10, 62, .14);
}

.pf-calendar__top {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--pf-purple);
  color: var(--pf-white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pf-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--pf-line);
}

.pf-calendar__cell {
  min-height: 70px;
  padding: 10px;
  background: var(--pf-white);
  color: var(--pf-muted);
  font-size: 13px;
}

.pf-calendar__cell.is-sync {
  background: #FFF0E7;
  color: var(--pf-orange);
  font-weight: 700;
}

.pf-calendar__cell.is-sync span {
  display: block;
  margin-top: 6px;
  color: var(--pf-deep);
  font-size: 12px;
}

.pf-cycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pf-cycle article {
  position: relative;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  padding: 24px;
  background: var(--pf-white);
}

.pf-cycle article::before {
  content: attr(data-step);
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--pf-orange);
  color: var(--pf-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.pf-sync-wave {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.pf-sync-wave::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 86px;
  border-top: 3px dashed rgba(123, 63, 160, .24);
  border-radius: 50%;
  transform: skewY(-5deg);
  pointer-events: none;
}

.pf-sync-wave article {
  position: relative;
  z-index: 1;
  min-height: 210px;
  border: 1px solid rgba(123, 63, 160, .16);
  border-radius: 18px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 44px rgba(42, 10, 62, .07);
}

.pf-sync-wave article:nth-child(even) {
  margin-top: 58px;
}

.pf-sync-wave article::before {
  content: attr(data-step);
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pf-purple), var(--pf-rose) 52%, var(--pf-orange));
  color: var(--pf-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(123, 63, 160, .18);
}

.pf-sync-benefits {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
}

.pf-sync-benefits > div:first-child > p {
  max-width: 620px;
}

.pf-sync-benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pf-sync-benefit-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(123, 63, 160, .12);
  color: var(--pf-muted);
}

.pf-sync-benefit-list li:last-child {
  border-bottom: 0;
}

.pf-sync-benefit-list i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--pf-lav);
  color: var(--pf-purple);
}

.pf-sync-benefit-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--pf-deep);
}

.pf-sync-sorter {
  overflow: hidden;
  border: 1px solid rgba(123, 63, 160, .16);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 82% 16%, rgba(212, 98, 26, .11), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f7f2fb 100%);
  box-shadow: 0 24px 60px rgba(42, 10, 62, .11);
}

.pf-sorter-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  color: var(--pf-deep);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.pf-sorter-title span {
  color: var(--pf-purple);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pf-sorter-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(123, 63, 160, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.pf-sorter-week:last-child {
  margin-bottom: 0;
}

.pf-sorter-week div {
  position: relative;
  min-height: 74px;
  padding: 9px 6px;
  border-right: 1px solid rgba(123, 63, 160, .10);
  color: #705d7b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

.pf-sorter-week div:last-child {
  border-right: 0;
}

.pill {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 12px;
  margin: 22px 1px 0;
  border-radius: 999px;
  transform: rotate(-42deg);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .34), 0 5px 12px rgba(42, 10, 62, .16);
  animation: pf-pill-settle 3.2s ease-in-out infinite;
}

.pf-sorter-week--after .pill {
  animation-delay: .35s;
}

.pill--blue { background: linear-gradient(90deg, #1570ef 0 48%, #60a5fa 48%); }
.pill--orange { background: linear-gradient(90deg, #f97316 0 48%, #fdba74 48%); }
.pill--green { background: linear-gradient(90deg, #22c55e 0 48%, #86efac 48%); }
.pill--purple { background: linear-gradient(90deg, #7c3aed 0 48%, #c4b5fd 48%); }

@keyframes pf-pill-settle {
  0%, 100% { transform: translateY(0) rotate(-42deg); }
  50% { transform: translateY(-3px) rotate(-42deg); }
}

/* Mental health support: care map */
.pf-mental .pf-hero {
  background:
    linear-gradient(120deg, rgba(251, 249, 246, .98) 0%, rgba(244, 240, 250, .94) 62%, rgba(252, 234, 243, .8) 100%);
}

.pf-care-map {
  display: grid;
  gap: 14px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  padding: 24px;
  background: var(--pf-white);
  box-shadow: 0 24px 60px rgba(42, 10, 62, .14);
}

.pf-care-node {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  padding: 18px;
  background: var(--pf-cream);
}

.pf-care-node i {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--pf-lav);
  color: var(--pf-purple);
}

.pf-care-node strong {
  display: block;
  margin-bottom: 4px;
}

.pf-care-node span {
  color: var(--pf-muted);
  font-size: 14px;
}

.pf-mental .pf-tile i {
  background: #FCEAF3;
  color: var(--pf-rose);
}

.pf-support-panel {
  border-left: 5px solid var(--pf-orange);
  border-radius: 8px;
  padding: 34px;
  background: var(--pf-white);
  box-shadow: 0 16px 36px rgba(42, 10, 62, .08);
}

@media (max-width: 1024px) {
  .pf-hero__grid,
  .pf-grid-2,
  .pf-vax-board {
    grid-template-columns: 1fr;
  }

  .pf-grid-4,
  .pf-dispill-steps,
  .pf-cycle,
  .pf-sync-wave {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-sync-benefits {
    grid-template-columns: 1fr;
  }

  .pf-hero-card {
    min-height: 0;
  }

  .pf-cta {
    grid-template-columns: 1fr;
  }

  .pf-cta .pf-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .pf-hero,
  .pf-section {
    padding: 52px 0;
  }

  .pf-grid-3,
  .pf-grid-4,
  .pf-dispill-steps,
  .pf-procurement,
  .pf-cycle,
  .pf-sync-wave {
    grid-template-columns: 1fr;
  }

  .pf-sync-wave {
    padding-top: 0;
  }

  .pf-sync-wave::before {
    display: none;
  }

  .pf-sync-wave article,
  .pf-sync-wave article:nth-child(even) {
    min-height: 0;
    margin-top: 0;
  }

  .pf-sync-sorter {
    padding: 18px;
  }

  .pf-pack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
  }

  .pf-calendar__cell {
    min-height: 54px;
    padding: 7px;
    font-size: 12px;
  }

  .pf-cta {
    padding: 28px 22px;
  }

}

@media (max-width: 520px) {
  .pf-actions .btn {
    width: 100%;
  }

  .pf-pack {
    grid-template-columns: 1fr;
  }

  .pf-pack__label {
    flex-direction: column;
  }

  .pf-inventory__row {
    grid-template-columns: 1fr;
  }
}
