/* =========================================================
   PHC RESOURCE LIBRARY
   ========================================================= */


/* =========================================================
   1) DESIGN TOKENS
   ========================================================= */
:root {
  --phc-navy: #103b4d;
  --phc-teal: #0f766e;
  --phc-aqua: #0f6f7d;
  --phc-sky: #e8f5f7;
  --phc-mint: #edf8f3;
  --phc-gold: #d7b46a;
  --phc-orange: #f28732;
  --phc-text: #1f2937;
  --phc-muted: #5b6875;
  --phc-border: #dbe4ea;
  --phc-surface: rgba(255, 255, 255, 0.88);
  --phc-shadow: 0 16px 40px rgba(16, 59, 77, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1200px;
}


/* =========================================================
   2) BASE / RESET
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--phc-text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top right, rgba(19, 142, 160, 0.14), transparent 30%),
    radial-gradient(circle at left center, rgba(15, 118, 110, 0.1), transparent 28%),
    linear-gradient(180deg, #f4fbfc 0%, #ffffff 24%, #f8fbfd 100%);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.resource-select option[disabled] {
  color: #8a5a3b;
}

a {
  color: var(--phc-aqua);
}

img {
  max-width: 100%;
  display: block;
}

#phc-resources .content-grid {
  padding: 2rem 1rem 0rem;
}

/* default */
.meta-short {
  display: none;
}

/* mobile */
@media (max-width: 429px) {
  .meta-full {
    display: none;
  }

  .meta-short {
    display: inline;
  }
}


/* =========================================================
   3) SHARED LAYOUT CONTAINERS
   ========================================================= */
.hero-inner,
.section-inner,
.footer-spacer {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 0 1rem 2rem;
}

.stats-updated {
  display: flex;
  align-items: center;
  gap: 0.4rem;

  margin-top: 0.75rem;
  padding-top: 0.6rem;

  font-size: 0.78rem;
  color: var(--phc-muted);

  border-top: 1px solid var(--phc-border);
}

.stats-updated i {
  font-size: 0.8rem;
  opacity: 0.8;
}


/* =========================================================
   4) HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  padding: 2rem 1rem 1.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 480px;
  background:
    linear-gradient(120deg, rgba(16, 59, 77, 0.9), rgba(19, 142, 160, 0.78)),
    url("https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 24, 32, 0.12), rgba(7, 24, 32, 0.52));
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 2rem 0 3rem;
}

.hero-copy,
.hero-panel,
.category-spotlight,
.resource-card,
.empty-state,
.toolbar {
  /*border: 1px solid rgba(255, 255, 255, 0.35);*/
  border-radius: var(--radius-xl);
  box-shadow: var(--phc-shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 2rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #cceff4;
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 64ch;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}


/* =========================================================
   5) BUTTONS
   ========================================================= */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.88rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(0.82rem, 2.6vw, 0.96rem);
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-modern:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--phc-navy);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-home {
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: rgba(242, 135, 50, 0.94);
}


/* =========================================================
   6) HERO STATS PANEL
   ========================================================= */
.hero-panel {
  padding: 1.25rem;
  color: var(--phc-text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 245, 247, 0.78));
  overflow: hidden;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-panel h2 {
  margin: 0 0 0.4rem;
  color: var(--phc-navy);
  font-size: 1.2rem;
}

.hero-panel p {
  margin: 0;
  color: var(--phc-muted);
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.stat-pill {
  padding: 1rem;
  border: 1px solid var(--phc-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
}

.stat-pill strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--phc-navy);
  font-size: 1.55rem;
  line-height: 1;
}

.stat-pill span {
  color: var(--phc-muted);
  font-size: 0.9rem;
}

.stats-updated {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 0.4rem;

  margin-top: 0.75rem;
  padding-top: 0.65rem;

  font-size: 0.75rem;
  color: var(--phc-muted);

  border-top: 1px solid var(--phc-border);
}

/* icon refinement */
.stats-updated i {
  font-size: 0.75rem;
  opacity: 0.75;
}

/* subtle emphasis on date */
.stats-updated time {
  font-weight: 500;
  color: var(--phc-ink);
}


/* =========================================================
   7) SHARED SECTION HEADINGS
   ========================================================= */
.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  color: #8a4b1f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--phc-navy);
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  line-height: 1.1;
  font-weight: 600;
}

.section-copy {
  margin: 0.55rem 0 0;
  color: var(--phc-muted);
}

.results-summary {
  color: var(--phc-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: end;
}


/* =========================================================
   8) SEARCH / REFINE TOOLBAR
   - Embedded inside Resource Collection
   ========================================================= */
.toolbar {
  padding: 1.2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 1.5rem 0 2rem;

  border: 1px solid rgba(16, 59, 77, 0.2);
  background: #ffffff;

  box-shadow: 0 14px 34px rgba(16, 59, 77, 0.12);
}

.toolbar--embedded {
  position: relative;
  margin: 1.5rem 0 1rem;
  padding: 1.15rem;
  border-radius: 8px;

  border-left: 1px solid rgba(16, 59, 77, 0.12);
  border-right: 1px solid rgba(16, 59, 77, 0.12);
  border-bottom: 1px solid rgba(16, 59, 77, 0.12);

  background: #ffffff;

  box-shadow:
    0 18px 40px rgba(16, 59, 77, 0.14);
}

.toolbar--embedded::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg,
      var(--phc-gold),
      #e6c98a);
}

.toolbar--embedded .search-shell {
  background: #ffffff;
  border: 2px solid rgba(16, 59, 77, 0.18);
  box-shadow: 0 6px 16px rgba(16, 59, 77, 0.08);
}

.toolbar--embedded .search-shell:focus-within {
  border-color: var(--phc-navy);
  box-shadow:
    0 0 0 4px rgba(16, 59, 77, 0.12),
    0 10px 24px rgba(16, 59, 77, 0.12);
}

.toolbar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 1rem;
  align-items: center;
}

.search-shell {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border: 1px solid var(--phc-border);
  border-radius: 999px;
  background: #fff;
}

.search-shell i {
  color: var(--phc-aqua);
}

.search-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
  background: transparent;
  color: var(--phc-text);
  margin-bottom: 0 !important;
}

.toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.meta-chip,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.meta-chip {
  border: 1px solid rgba(215, 180, 106, 0.42);
  background: rgba(215, 180, 106, 0.16);
  color: #5c481a;
}

.toolbar .meta-chip:first-child {
  background: rgba(15, 118, 110, 0.12);
  border-color: rgba(15, 118, 110, 0.2);
  color: var(--phc-teal);
}

.filters-wrap {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.filter-chip {
  border: 1px solid rgba(15, 118, 110, 0.2);
  background: linear-gradient(135deg, #ffffff, var(--phc-sky));
  color: var(--phc-navy);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--phc-aqua), var(--phc-teal));
  color: #fff;
  box-shadow: 0 6px 14px rgba(16, 59, 77, 0.18);
}


/* =========================================================
   9) EXPLORE CATEGORIES SECTION
   ========================================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin-top: 1rem;
}

.category-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 220px;
  width: 100%;
  text-align: left;
  padding: 1.2rem;
  border-radius: 22px;

  border: 1px solid rgba(168, 124, 82, 0.22);
  background: linear-gradient(180deg, #ffffff, #fdfaf7);
  box-shadow:
    0 10px 24px rgba(92, 64, 51, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);

  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.category-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 141, 87, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(244, 226, 208, 0.55), transparent 55%);
  pointer-events: none;
}

.category-spotlight::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, #d7b46a, #b87444);
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.category-spotlight:hover,
.category-spotlight:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(184, 116, 68, 0.38);
  box-shadow:
    0 18px 42px rgba(92, 64, 51, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  outline: none;
}

.category-spotlight:hover::after,
.category-spotlight:focus-visible::after,
.category-spotlight.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.category-spotlight.is-active {
  border-color: rgba(160, 103, 67, 0.42);
  background:
    linear-gradient(180deg, rgba(248, 239, 230, 0.98), rgba(255, 251, 247, 1));
  box-shadow:
    0 20px 46px rgba(92, 64, 51, 0.18),
    0 0 0 1px rgba(160, 103, 67, 0.10);
}

.category-card-top {
  position: relative;
  z-index: 1;
  width: 100%;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;

  background: linear-gradient(135deg, rgba(216, 177, 138, 0.24), rgba(184, 116, 68, 0.20));
  color: #9a5a2f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);

  font-size: 1.1rem;
}

.category-spotlight h3 {
  margin: 0 0 0.45rem;
  color: #5f3d2a;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.category-spotlight p {
  margin: 0;
  color: #6f6258;
  font-size: 0.93rem;
  line-height: 1.55;
  max-width: 34ch;
}

.category-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.15rem;
}

.category-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 auto;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;

  background: rgba(184, 116, 68, 0.12);
  color: #8a4f2c;

  font-size: 0.82rem;
  font-weight: 800;
}

.category-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(140, 101, 76, 0.08);
  color: #5f3d2a;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-spotlight:hover .category-arrow,
.category-spotlight:focus-visible .category-arrow,
.category-spotlight.is-active .category-arrow {
  transform: translateX(3px);
  background: rgba(184, 116, 68, 0.16);
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-spotlight {
    min-height: 205px;
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .category-spotlight {
    min-height: unset;
    padding: 1rem;
    border-radius: 18px;
  }

  .category-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 0.85rem;
  }

  .category-spotlight h3 {
    font-size: 1rem;
  }

  .category-spotlight p {
    font-size: 0.9rem;
  }

  .category-card-bottom {
    margin-top: 1rem;
  }
}


/* =========================================================
   10) RESOURCE COLLECTION CARDS
   ========================================================= */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(219, 228, 234, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.96));
  box-shadow:
    0 12px 28px rgba(16, 59, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.resource-card:hover {
  /*transform: translateY(-4px);*/
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow:
    0 18px 36px rgba(16, 59, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

/* top row */
.resource-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

/* category (left) */
.resource-category {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;

  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.22);

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* status (right) */
.resource-status {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.resource-status.active {
  color: #067647;
  background: rgba(6, 118, 71, 0.1);
  border: 1px solid rgba(6, 118, 71, 0.14);
}

.resource-status.pending {
  color: #b54708;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(181, 71, 8, 0.14);
}

.resource-status.neutral {
  color: var(--phc-navy);
  background: rgba(16, 59, 77, 0.08);
  border: 1px solid rgba(16, 59, 77, 0.12);
}

/* content */
.resource-card h3 {
  margin: 0 0 0.55rem;
  color: var(--phc-navy);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.resource-desc {
  margin: 0 0 0.9rem;
  color: var(--phc-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.resource-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: #f2f7f9;
  color: var(--phc-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

/* links area */
.resource-links {
  margin-top: auto;
}

/* single link */
.resource-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--phc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--phc-aqua);
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.resource-link:hover {
  border-color: rgba(15, 118, 110, 0.28);
  border: 1px solid var(--phc-border) !important;
  box-shadow: 0 10px 22px rgba(16, 59, 77, 0.08);
  transform: translateY(-1px);
  text-decoration: none;
}

.resource-link.is-disabled {
  pointer-events: none;
  opacity: 0.92;
  color: var(--phc-muted);
  background: #f8fbfc;
}

/* dropdown (clean version) */
.resource-select-wrap {
  position: relative;
  width: 100%;
}

.resource-select {
  width: 100%;
  min-height: 50px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 0.85rem 2.6rem 0.85rem 0.95rem;

  border-radius: 14px;
  border: 1px solid rgba(140, 100, 70, 0.18);

  background: linear-gradient(180deg, #ffffff, #fdfaf7);
  margin-bottom: 0 !important;

  color: var(--phc-aqua) !important;

  font: inherit;
  font-size: 0.95rem;
  font-weight: 700 !important;

  cursor: pointer;

  box-shadow:
    0 6px 16px rgba(92, 64, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease,
    background 0.2s ease;
}

.resource-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
}

.resource-select::-ms-expand {
  display: none !important;
}

.resource-select:hover {
  border-color: rgba(184, 116, 68, 0.35);
  box-shadow: 0 10px 22px rgba(92, 64, 51, 0.12);
  transform: translateY(-1px);
}

.resource-select:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow:
    0 0 0 4px rgba(15, 111, 125, 0.12),
    0 10px 22px rgba(16, 59, 77, 0.08);
}

.resource-select-icon {
  position: absolute;
  top: 50%;
  right: 0.95rem;
  transform: translateY(-50%);
  color: var(--phc-aqua);
  pointer-events: none;
  font-size: 0.9rem;
}

.resource-select option {
  color: var(--phc-text);
  background: #fff;
}

/* responsive */
@media (max-width: 1100px) {
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    border-radius: 18px;
    padding: 1rem;
  }

  .resource-category,
  .resource-status {
    font-size: 0.72rem;
    padding: 0.4rem 0.6rem;
  }

  .resource-card h3 {
    font-size: 1rem;
  }

  .resource-desc {
    font-size: 0.91rem;
  }
}


/* =========================================================
   11) EMPTY STATE
   ========================================================= */
.empty-state {
  display: none;
  padding: 1.5rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.empty-state.visible {
  display: block;
}

/* ultra-mobile filter dropdown */
.filter-select-wrap {
  display: none;
}


/* =========================================================
   12) RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {

  .hero-card,
  .toolbar-grid {
    grid-template-columns: 1fr;
  }

  .toolbar-meta {
    justify-content: flex-end;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================================================
   CATEGORY MOBILE DROPDOWN — UPGRADED UI
   ========================================================= */
.category-mobile-select-wrap {
  display: none;
  margin-top: 0.9rem;
  padding: 0.9rem;
  border-radius: 8px;

  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  border: 1px solid rgba(16, 59, 77, 0.12);

  box-shadow:
    0 10px 26px rgba(16, 59, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  position: relative;
}

/* subtle top accent bar */
.category-mobile-select-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--phc-gold), var(--phc-teal));
}

/* label */
.category-mobile-select-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;

  margin-bottom: 0.55rem;

  color: var(--phc-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-mobile-select-label i {
  color: var(--phc-teal);
  font-size: 0.85rem;
}

/* select container */
.category-mobile-select-shell {
  position: relative;
}

/* select */
.category-mobile-select {
  width: 100%;
  min-height: 52px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  border-radius: 14px;
  border: 1px solid rgba(16, 59, 77, 0.18);

  background: #ffffff;
  color: var(--phc-navy);

  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;

  padding: 0.85rem 2.8rem 0.85rem 0.95rem;

  cursor: pointer;

  box-shadow: 0 6px 16px rgba(16, 59, 77, 0.08);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease,
    background 0.2s ease;
}

/* hover */
.category-mobile-select:hover {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 10px 22px rgba(16, 59, 77, 0.12);
  transform: translateY(-1px);
}

/* focus */
.category-mobile-select:focus {
  outline: none;
  border-color: var(--phc-teal);

  box-shadow:
    0 0 0 4px rgba(15, 118, 110, 0.12),
    0 10px 22px rgba(16, 59, 77, 0.12);
}

/* dropdown arrow */
.category-mobile-select-icon {
  position: absolute;
  top: 50%;
  right: 0.95rem;
  transform: translateY(-50%);

  color: var(--phc-teal);
  font-size: 0.9rem;
  pointer-events: none;

  transition: transform 0.2s ease;
}

/* little interaction hint */
.category-mobile-select-shell:focus-within .category-mobile-select-icon {
  transform: translateY(-50%) rotate(180deg);
}

/* mobile visibility */
@media (max-width: 480px) {
  .category-mobile-select-wrap {
    display: block;
  }

  .stats-updated {
    justify-content: flex-end;
  }
}


/* FILTER DROPDOWN: 768px and below
   tuned to fit the resource collection toolbar */
@media (max-width: 768px) {
  .filters-wrap {
    display: block;
    width: 100%;
    margin-top: 0.85rem;
    padding: 0;
    overflow: visible;
    max-width: 100%;
  }

  .filters-wrap .filter-chip {
    display: none;
  }

  .filter-select-wrap {
    display: block;
    width: 100%;
  }

  .filter-select-label {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin: 0 0 0.5rem;
    color: var(--phc-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .filter-select-label i {
    color: var(--phc-teal);
    font-size: 0.82rem;
  }

  .filter-select-shell {
    position: relative;
    width: 100%;
  }

  .filter-select-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 56%);
  }

  .filter-select {
    width: 100%;
    min-height: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    border: 1px solid rgba(16, 59, 77, 0.16);
    border-radius: 14px;

    background: linear-gradient(180deg, #ffffff, #f7fbfc);
    color: var(--phc-navy);

    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;

    padding: 0.86rem 2.7rem 0.86rem 0.95rem;
    cursor: pointer;

    box-shadow:
      0 6px 16px rgba(16, 59, 77, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);

    transition:
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.18s ease,
      background 0.2s ease;
  }

  .filter-select:hover {
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow:
      0 10px 22px rgba(16, 59, 77, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
  }

  .filter-select:focus {
    outline: none;
    border-color: var(--phc-aqua);
    box-shadow:
      0 0 0 4px rgba(15, 111, 125, 0.12),
      0 8px 18px rgba(16, 59, 77, 0.1);
  }

  .filter-select-icon {
    position: absolute;
    top: 50%;
    right: 0.95rem;
    transform: translateY(-50%);
    color: var(--phc-aqua);
    pointer-events: none;
    font-size: 0.84rem;
    transition: transform 0.2s ease;
  }

  .filter-select:focus+.filter-select-icon {
    transform: translateY(-50%) rotate(180deg);
  }
}


/* =========================================================
   HERO PANEL ENHANCEMENTS (MODERN UI)
   ========================================================= */

/* header spacing */
.hero-panel-header {
  margin-bottom: 0.75rem;
}

.hero-panel h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-panel h2 i {
  color: var(--phc-teal);
  font-size: 1rem;
}

/* stat pill layout upgrade */
.stat-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem;

  border: 1px solid var(--phc-border);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.92);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

/* hover interaction */
.stat-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: 0 12px 24px rgba(16, 59, 77, 0.12);
}

/* icon container */
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 12px;

  background: linear-gradient(135deg,
      rgba(15, 118, 110, 0.12),
      rgba(15, 111, 125, 0.18));

  color: var(--phc-teal);
  font-size: 1rem;

  flex-shrink: 0;
}

/* content block */
.stat-content {
  display: flex;
  flex-direction: column;
}

/* number emphasis */
.stat-pill strong {
  font-size: 1.4rem;
  margin-bottom: 0.1rem;
}

/* label */
.stat-pill span {
  font-size: 0.82rem;
}

/* subtle animation on load */
.stat-pill {
  animation: fadeUp 0.5s ease both;
}

.stat-pill:nth-child(2) {
  animation-delay: 0.05s;
}

.stat-pill:nth-child(3) {
  animation-delay: 0.1s;
}

.stat-pill:nth-child(4) {
  animation-delay: 0.15s;
}

.stat-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.stat-content span i {
  font-size: 0.75rem;
  opacity: 0.8;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .stat-pill {
    gap: 0.6rem;
    padding: 0.7rem;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .stat-pill strong {
    font-size: 1.1rem;
  }

  .stat-pill span {
    font-size: 0.75rem;
  }
}


/* =========================================================
   MOBILE UX IMPROVEMENTS
   ========================================================= */

.mobile-scroll-hint {
  display: none;
  margin: 0 0 0.7rem;
  color: var(--phc-muted);
  font-size: 0.83rem;
  font-weight: 600;
}

/* filter dropdown */
.filter-select-wrap {
  display: none;
}

/* remove native select arrow */
.filter-select,
.category-mobile-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: none !important;
  padding-right: 1rem !important;
}

/* old Edge / IE */
.filter-select::-ms-expand,
.category-mobile-select::-ms-expand {
  display: none;
}

.visually-hidden-phc {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.search-result-card {
  display: flex;
  align-items: center;
}

.search-result-body {
  flex: 1;
}

.search-result-external-icon {
  margin-left: auto;
  font-size: 0.8rem;
  color: #8a5a3b;
  opacity: 0.7;
}

/* tablet down */
@media (max-width: 900px) {
  .hero {
    padding: 1.25rem 1rem 1rem;
  }

  .hero-card {
    gap: 1rem;
    padding: 1rem 0 2rem;
  }

  .hero-copy,
  .hero-panel {
    padding: 1.25rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .section {
    padding: 0 0.8rem 1.5rem;
  }

  .section-heading {
    margin: 0.5rem 0 0.9rem;
  }

  .toolbar {
    padding: 1rem;
    margin: 1rem 0 1.25rem;
  }

  .toolbar-grid {
    gap: 0.8rem;
  }

  .toolbar-meta {
    gap: 0.5rem;
  }

  .meta-chip,
  .filter-chip {
    font-size: 0.82rem;
    padding: 0.55rem 0.78rem;
  }

  .results-summary {
    text-align: right;
    margin-bottom: 0.5rem;
  }

  .resource-card {
    padding: 1rem;
  }

  .resource-select {
    min-height: 50px;
    font-size: 0.95rem;
  }
}

@media (max-width: 786px) {
  #phc-resources .content-grid {
    padding: 1rem 0rem 1rem;
  }
}

/* FILTER DROPDOWN: 768px and below */
@media (max-width: 768px) {
  .filters-wrap {
    display: block;
    margin-top: 0.7rem;
    padding-bottom: 0;
    overflow: visible;
    max-width: 100%;
  }

  .filters-wrap .filter-chip {
    display: none;
  }

  .filter-select-wrap {
    display: block;
    width: 100%;
  }

  .filter-select-label {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin: 0 0 0.45rem;
    color: var(--phc-muted);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .filter-select-shell {
    position: relative;
    width: 100%;
  }

  .filter-select {
    width: 100%;
    min-height: 48px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid var(--phc-border);
    border-radius: 14px;
    background: #fff;
    color: var(--phc-navy);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.82rem 2.6rem 0.82rem 0.9rem;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(16, 59, 77, 0.06);
  }

  .filter-select:focus {
    outline: none;
    border-color: var(--phc-aqua);
    box-shadow:
      0 0 0 4px rgba(15, 111, 125, 0.12),
      0 8px 18px rgba(16, 59, 77, 0.08);
  }

  .filter-select-icon {
    position: absolute;
    top: 50%;
    right: 0.9rem;
    transform: translateY(-50%);
    color: var(--phc-aqua);
    pointer-events: none;
    font-size: 0.85rem;
  }
}

/* phone */
@media (max-width: 640px) {

  html,
  body {
    overflow-x: hidden;
  }

  .mobile-scroll-hint {
    display: block;
  }

  .section-inner,
  .content-card,
  .content-section,
  .toolbar,
  .resources-grid,
  .category-grid,
  .filters-wrap {
    max-width: 100%;
  }

  .hero {
    padding: 0.85rem 0.75rem 0.75rem;
  }

  .hero::before {
    min-height: 400px;
  }

  .hero-card {
    padding: 0.75rem 0 1.4rem;
    gap: 0.9rem;
  }

  .hero-copy,
  .hero-panel,
  .toolbar,
  .resource-card,
  .category-spotlight {
    border-radius: 18px;
  }

  .hero-copy,
  .hero-panel {
    padding: 1rem;
  }

  .hero h1 {
    margin-bottom: 0.75rem;
  }

  .hero-lead {
    margin-bottom: 1rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 0.6rem;
  }

  .hero-actions .btn-modern {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 0 0.7rem 1.25rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .section-copy {
    font-size: 0.93rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .stat-pill {
    padding: 0.85rem;
  }

  .stat-pill strong {
    font-size: 1.3rem;
  }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-spotlight {
    min-height: 190px;
    padding: 1rem;
    scroll-snap-align: start;
  }

  .category-spotlight p {
    max-width: none;
  }

  .toolbar--embedded {
    margin: 1rem 0 0.9rem;
    padding: 0.9rem;
    border-radius: 16px;
  }

  .toolbar-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .search-shell {
    grid-template-columns: auto 1fr;
    padding: 0.72rem 0.85rem 0.72rem 0.9rem;
    border-radius: 16px;
  }

  .search-shell input {
    min-width: 0;
    font-size: 0.95rem;
  }

  .results-summary {
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .resource-card {
    padding: 0.95rem;
  }

  .resource-top {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
  }

  .resource-category,
  .resource-status {
    font-size: 0.71rem;
    padding: 0.42rem 0.62rem;
    max-width: 100%;
  }

  .resource-card h3 {
    font-size: 0.98rem;
    line-height: 1.35;
    margin-bottom: 0.45rem;
  }

  .resource-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }

  .resource-meta {
    gap: 0.45rem;
    margin-bottom: 0.85rem;
  }

  .resource-meta span {
    font-size: 0.74rem;
    padding: 0.4rem 0.62rem;
  }

  .resource-link,
  .resource-select {
    min-height: 50px;
    border-radius: 14px;
    font-size: 0.93rem;
  }

  .empty-state {
    padding: 1.1rem;
    margin-top: 0.8rem;
  }

  .page-container,
  .content-grid,
  .section,
  .section-inner,
  .content-card,
  .content-section {
    overflow: visible;
    min-width: 0;
  }
}

/* very small phones */
@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .resource-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .resource-meta span {
    width: 100%;
    justify-content: center;
  }

  .meta-chip,
  .filter-chip {
    font-size: 0.65rem;
    padding: 0.55rem 0.48rem;
  }
}

/* =========================================================
   ULTRA-MOBILE LAYOUT
   480px and below
   ========================================================= */
@media (max-width: 480px) {

  .hero {
    padding: 0.65rem 0.55rem 0.6rem;
  }

  .hero::before {
    min-height: 340px;
  }

  .hero-card {
    gap: 0.75rem;
    padding: 0.5rem 0 1rem;
  }

  .hero-copy,
  .hero-panel,
  .toolbar,
  .resource-card,
  .category-spotlight,
  .empty-state {
    border-radius: 16px;
  }

  .hero-copy,
  .hero-panel {
    padding: 0.9rem;
  }

  .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.55rem;
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
  }

  .hero-actions {
    gap: 0.5rem;
    margin-top: 0.9rem;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-modern {
    width: 100%;
    justify-content: center;
  }

  .btn-modern {
    min-height: 44px;
    padding: 0.78rem 0.25rem;
    font-size: 0.8rem;
  }

  .section {
    padding: 0 0.55rem 1rem;
  }

  .section-heading {
    margin: 0.35rem 0 0.7rem;
    gap: 0.55rem;
  }

  .section-label {
    margin-bottom: 0.45rem;
    font-size: 0.74rem;
  }

  .section-title {
    font-size: 1.22rem;
  }

  .section-copy {
    font-size: 0.88rem;
    margin-top: 0.35rem;
    line-height: 1.45;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.8rem;
  }

  .stat-pill {
    padding: 0.7rem;
    border-radius: 12px;
  }

  .stat-pill strong {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
  }

  .stat-pill span {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .mobile-scroll-hint {
    display: none;
  }

  .meta-chip,
  .filter-chip {
    font-size: 0.75rem;
    padding: 0.55rem 0.78rem;
  }

  .category-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.7rem;
  }

  .category-spotlight {
    min-height: unset;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
  }

  .category-card-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
  }

  .category-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 0;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .category-spotlight h3 {
    font-size: 0.85rem;
    line-height: 1.25;
    margin: 0 0 0.25rem;
    word-break: break-word;
  }

  .category-spotlight p {
    display: none;
  }

  .category-card-bottom {
    margin-top: 0.7rem;
    justify-content: flex-start;
  }

  .category-count {
    margin: 0;
    padding: 0.42rem 0.62rem;
    font-size: 0.74rem;
  }

  .toolbar {
    padding: 0.8rem;
    margin: 0.8rem 0 0.85rem;
  }

  .toolbar--embedded {
    padding: 0.8rem;
    margin: 0.85rem 0 0.8rem;
    border-radius: 14px;
  }

  .toolbar-grid {
    gap: 0.6rem;
  }

  .search-shell {
    padding: 0.62rem 0.78rem 0.62rem 0.82rem;
    border-radius: 14px;
  }

  .search-shell input {
    font-size: 0.92rem;
  }

  .results-summary {
    font-size: 0.8rem;
    margin-bottom: 0.55rem;
  }

  .resources-grid {
    gap: 0.7rem;
    margin-top: 0.75rem;
  }

  .resource-card {
    padding: 0.82rem;
    border-radius: 16px;
  }

  .resource-top {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
  }

  .resource-category,
  .resource-status {
    font-size: 0.63rem;
    padding: 0.38rem 0.25rem;
  }

  .resource-card h3 {
    font-size: 0.92rem;
    line-height: 1.28;
    margin-bottom: 0.35rem;
  }

  .resource-desc {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0.6rem;
  }

  .resource-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
  }

  .resource-meta span {
    flex: 0 1 auto;
    width: auto;
    justify-content: center;
    font-size: 0.72rem;
    padding: 0.42rem 0.58rem;
  }

  .resource-link,
  .resource-select {
    min-height: 46px;
    font-size: 0.88rem;
    border-radius: 12px;
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
  }

  .resource-select {
    padding-left: 0.82rem;
    padding-right: 2.4rem;
  }

  .resource-select-icon {
    right: 0.8rem;
    font-size: 0.8rem;
  }

  .empty-state {
    padding: 0.95rem;
    margin-top: 0.65rem;
  }

  .empty-state h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .empty-state p {
    font-size: 0.86rem;
    margin: 0;
  }
}

@media (max-width: 380px) {
  .category-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .category-count {
    margin: 0;
    padding: 0.42rem 0.2rem;
    font-size: 0.65rem;
  }

  .category-spotlight h3 {
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .section {
    padding: 0 0.4rem 0.85rem;
  }

  .resources-grid {
    gap: 0.6rem;
  }

  .resource-card {
    padding: 0.72rem;
    border-radius: 14px;
    min-width: 0;
    overflow: hidden;
  }

  .resource-top {
    flex-direction: row;
    align-items: stretch;
    gap: 0.4rem;
    margin-bottom: 0.55rem;
  }

  .resource-category,
  .resource-status {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: 0.64rem;
    padding: 0.36rem 0.48rem;
  }

  .resource-status {
    white-space: normal;
  }

  .resource-card h3 {
    font-size: 0.88rem;
    line-height: 1.24;
    word-break: break-word;
  }

  .resource-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .resource-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.32rem;
    margin-bottom: 0.6rem;
  }

  .resource-meta span {
    width: 100%;
    font-size: 0.68rem;
    padding: 0.38rem 0.5rem;
  }

  .resource-link,
  .resource-select {
    min-height: 42px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .resource-select {
    padding-left: 0.72rem;
    padding-right: 2rem;
  }

  .resource-select-icon {
    right: 0.7rem;
    font-size: 0.72rem;
  }
}