/* ----------[SINGLE POST STYLES]--------*
*/
.article-subheader {
  margin: auto;
  text-wrap: balance;
  color: var(--NU-Blue, #063966);
  text-align: center;
  font-family: var(--bodyFont);
  font-style: normal;
  font-weight: 300;
}

.et_pb_post_content {
  line-height: 1.3em;
}

.et_pb_post_content a {
  color: var(--jasper, #cd5334);
  font-weight: 400;
}

.wp-singular .et_pb_post_content .wp-block-image img {
  margin: 32px 0;
  border-radius: var(--border-lg);
}

/* Article Author Box Styles */
.article-author-container {
  padding: 20px 0;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border-top: 1px solid var(--timberwolf);
  border-bottom: 1px solid var(--timberwolf);
}

.author-image {
  flex-shrink: 0;
}

.author-image img {
  display: block;
  width: 47px;
  height: 47px;
  margin-top: 7px;
  object-fit: cover;
  border-radius: 50%;
}

.author-content {
  text-align: left;
  font-size: var(--copyFontSmall);
  line-height: 1.3em;
}

.short-bio {
  font-weight: 300;
}

/* ----------[ARTICLE TAGS AND SHARE ROW STYLES]--------*
*/
.article-meta-row .et_pb_column {
  display: flex;
}

/* Resource Tags Display */
.resource-tags-list {
  display: flex;
  flex-wrap: wrap;
}

.resource-tag-item {
  color: var(--nu-blue);
  font-family: var(--bodyFont);
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px;
}

/* Share Button and Links */
.share-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(204, 197, 185, 0.2);
  border: none;
  outline: none;
  border-radius: var(--border-xl);
  font-family: var(--bodyFont);
  font-size: var(--copyFontSmall);
  font-weight: 300;
  line-height: 1;
  color: var(--flame);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.share-btn:hover {
  background: rgba(204, 197, 185, 0.4);
}

.share-arrow-icon {
  width: 16px;
  height: 10px;
}

.share-menu-container {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.share-menu-container ul.share-menu {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 15px 30px;
  width: 30px;
  height: 30px;
  background: rgb(255, 252, 242);
  border-radius: 70px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition:
    transform 0.5s,
    width 0.5s,
    height 0.5s,
    opacity 0.3s,
    visibility 0.3s;
  transition-delay: 1s, 0.5s, 0.5s, 0s, 0s;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.share-menu-container.active ul.share-menu {
  width: 212px;
  height: 54px;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateY(-56px);
  transition-delay: 0s, 0.5s, 0.5s, 0s, 0s;
}

.share-menu-container ul.share-menu::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: rgb(255, 252, 242);
  transform: rotate(45deg);
  border-radius: 2px;
  transition: 0.5s;
}

.share-menu-container.active ul.share-menu::before {
  transition-delay: 0.5s;
  bottom: -6px;
}

.share-menu-container ul.share-menu li.share-menu-item {
  margin: 0;
  padding: 0;
  line-height: 1;
  list-style: none;
  list-style-type: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.25s;
  transition-delay: calc(0s + var(--i));
}

.share-menu-container.active ul.share-menu li.share-menu-item {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.2s ease;
  transition-delay: calc(0.75s + var(--i)), calc(0.75s + var(--i)), 0s;
}

.share-menu-container.active ul.share-menu li.share-menu-item:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease;
  transition-delay: 0s;
}

.share-menu-container ul.share-menu li.share-menu-item a {
  display: block;
}

.share-menu-container ul.share-menu li.share-menu-item:hover a svg {
  fill: var(--jasper);
}

.share-menu-container ul.share-menu li.share-menu-item a svg {
  padding: 0;
  margin: 0;
  line-height: 1;
  overflow: visible;
  transition: fill 0.3s ease;
}

.share-menu-container ul.share-menu li.share-menu-item a {
  width: 24px;
  height: 24px;
  overflow: visible;
}

/* ----------[RESOURCES PAGE GRID STYLES]--------*
*/
.resources-container {
  width: 100%;
  max-width: 100%;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
  margin: 2rem 0;
}

/* Card Styles */
.resources-grid .card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--border-md);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  height: 100%;
}

.resources-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-content {
  display: flex;
  flex-direction: column;
}

.resource-text-content {
  padding-left: 36px;
}

.resource-type {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  color: var(--NU-Blue, #063966);
  font-size: var(--copyFontLarge);
  font-weight: 300;
  line-height: 1em;
  text-transform: uppercase;
  margin: 0;
  border-bottom: 1px solid var(--timberwolf, #d6d3d1);
}

.resource-type > span {
  padding: 20px 20px 20px 0;
  display: flex;
  align-items: center;
}

.resource-type-icon-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  border-left: 1px solid var(--timberwolf, #d6d3d1);
}

.resource-type-icon {
  width: auto;
  height: 28px;
  flex-shrink: 0;
}

.resource-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resource-title {
  color: var(--black);
  line-height: 1.25em;
  font-style: normal;
  font-weight: 300;
}

.resource-title a {
  color: var(--black);
  text-decoration: none;
}

.resource-author {
  font-size: var(--copyFontSmall);
  font-weight: 500;
  line-height: 1.25em;
  margin: 0;
}

.resource-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: auto;
}

.resource-podcast .resource-thumbnail {
  background-size: 120%;
  background-position: 40% 60%;
}

.resource-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: block;
  line-height: 0;
}

.resource-arrow {
  width: 42px;
  height: 42px;
  display: block;
  transition: transform 0.2s ease;
}

.card:hover .resource-arrow {
  transform: translateX(4px);
}

/* Recommendation Staff Member */
.recommendation-staff-member {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 20px;
}

.recommendation-staff-member .staff-member-avatar {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.recommendation-staff-member .staff-member-name {
  font-size: var(--copyFontSmall);
  font-weight: 500;
  line-height: 1.25;
}

.staff-job-title {
  font-weight: 300;
  font-style: italic;
}

/* Categories Display Block */
.tags-display-block {
  background: var(--flame);
  border-radius: var(--border-md);
  width: 100%;
}

.tags-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 21px;
  row-gap: 30px;
}

.tag-button-item {
  margin: 0;
  padding: 0;
}

.tag-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 1px solid white;
  border-radius: var(--border-md);
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.tag-name {
  color: var(--floral-white, #fffcf2);
  font-size: var(--copyFontLarge);
  font-weight: 500;
  line-height: 1.25em;
}

.tag-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.tag-button:hover .tag-arrow {
  transform: translateX(4px);
}

/* Age Groups Display Block */
.age-groups-display-block {
  width: 100%;
}

.age-groups-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 57px;
}

.age-group-card {
  height: 149px;
  background-color: var(--nu-blue);
  border-radius: var(--border-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--box-shadow);
  transition: all 0.2s ease;
}

.age-group-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.age-group-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  text-decoration: none;
  width: 100%;
}

.age-group-name {
  color: var(--white);
  font-family: var(--headerFont);
  font-size: var(--mediumFontMax);
  line-height: 1.25em;
}

.age-group-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.age-group-card:hover .age-group-arrow {
  transform: translateX(4px);
}

/* Resource Search Bar */
.resource-search-container {
  width: 100%;
  max-width: 100%;
}

.resource-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(204, 197, 185, 0.4);
  border-radius: var(--border-xl);
  padding: 7px 7px 7px 25px;
}

.resource-search-input {
  flex: 1;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  font-family: var(--bodyFont);
  font-size: var(--copyFontLarge);
  font-weight: 300;
  color: var(--nu-blue) !important;
  text-transform: uppercase;
  outline: none;
}

.resource-search-input::placeholder {
  color: var(--nu-blue);
  text-transform: uppercase;
}

.resource-search-button {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-search-arrow {
  width: 42px;
  height: 42px;
  display: block;
}

/* Resource Controls */
.resource-controls-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  align-items: center;
}

/* Desktop layout */
.resource-filters-desktop {
  display: flex;
  gap: 15px;
  width: 100%;
}

.resource-count {
  order: 2;
  color: var(--flame);
  font-size: var(--copyFontLarge);
  padding-left: 12px;
  margin-right: 20px;
  height: 24px;
  display: flex;
  align-items: center;
  padding-bottom: 4px;
}

.sort-dropdown {
  order: 5;
  height: 24px;
  margin-left: 20px;
  padding-right: 12px;
}

/* When there are no active filters, push sort to the right */
.no-active-filters .sort-dropdown {
  margin-left: auto;
}

.sort-dropdown-button {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 24px;
  background: transparent;
  border: none;
  font-size: var(--copyFontSmall);
  line-height: 1.2;
  font-weight: 300;
  color: var(--nu-blue);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Sort Dropdown Arrow */
.sort-dropdown-button::after {
  content: "";
  width: 14px;
  height: 10px;
  flex-shrink: 0;
  background-image: url("../../img/blue-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.sort-dropdown.open .sort-dropdown-button::after {
  transform: rotate(270deg);
}

.sort-dropdown .custom-dropdown-menu {
  left: auto;
  right: 0;
  width: max-content;
}

.filter-dropdown-wrapper {
  flex: 1;
  position: relative;
}

/* Custom Dropdown Styles */
.custom-dropdown-button {
  width: 100%;
  padding: 15px;
  background: rgba(204, 197, 185, 0.2);
  border: none;
  border-radius: var(--border-xl);
  font-size: var(--copyFontSmall);
  font-weight: 300;
  color: var(--nu-blue);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  text-align: left;
}

.custom-dropdown-button:hover {
  background: rgba(204, 197, 185, 0.4);
  border-color: rgba(6, 57, 102, 0.4);
}

.filter-dropdown-wrapper.open .custom-dropdown-button {
  background: rgba(204, 197, 185, 0.4);
}

.sort-dropdown.open .sort-dropdown-button {
  background: transparent;
}

.custom-dropdown-label {
  flex: 1;
}

.custom-dropdown-label.active-filter {
  color: var(--flame);
  font-weight: 400;
}

/* Filter Dropdown Arrow */
.custom-dropdown-button::after {
  content: "";
  width: 18px;
  height: 12px;
  flex-shrink: 0;
  background-image: url("../../img/blue-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.filter-dropdown-wrapper.open .custom-dropdown-button::after {
  transform: rotate(270deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  box-shadow: 2px 4px 18px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.filter-dropdown-wrapper.open .custom-dropdown-menu,
.sort-dropdown.open .custom-dropdown-menu {
  display: block;
}

.custom-dropdown-option {
  line-height: 1.25em;
  font-weight: 300;
}

.custom-dropdown-option:last-child {
  border-bottom: none;
}

.custom-dropdown-option:hover {
  background: rgba(204, 197, 185, 0.2);
}

.custom-dropdown-option.selected {
  background: rgba(204, 197, 185, 0.4);
  font-weight: 400;
}

/* Active Filter Chips */
.active-filters-chips {
  flex-wrap: wrap;
  order: 3;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-right: 10px;
  background: var(--flame);
  border: none;
  border-radius: var(--border-xl);
  font-size: var(--copyFontSmall);
  font-weight: 300;
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.active-filter-chip:hover {
  background: var(--jasper);
}

.filter-chip-label {
  line-height: 1.25;
  padding-bottom: 2px;
}

.filter-chip-close {
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
}

/* Reset Filters Button */
.reset-filters-button {
  display: none;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  font-family: var(--bodyFont);
  font-size: var(--copyFontSmall);
  font-weight: 300;
  color: var(--flame);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  order: 4;
  margin-left: auto;
}

.reset-filters-button.is-visible {
  display: flex;
}

.reset-filters-button:hover {
  color: var(--jasper);
}

/* Mobile Filter Drawer - Hidden on Desktop */
.filter-by-button,
.mobile-filter-drawer,
.mobile-filter-overlay {
  display: none;
}

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* Large Tablets and Below */
@media (max-width: 1200px) {
  .tags-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets and Below */
@media (max-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .age-groups-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Desktop and Above */
@media (min-width: 768px) {
  .article-subheader {
    font-size: var(--mediumFontMin);
    line-height: 1.3em;
    max-width: 872px;
    margin-bottom: 19px;
  }

  .article-meta-row .et_pb_column {
    flex-direction: row;
    justify-content: space-between;
  }

  .resource-tag-item {
    font-size: var(--copyFontLarge);
  }

  .resource-tags-list {
    gap: 30px;
  }

  .et_pb_post_content p {
    font-size: var(--copyFontLarge);
  }

  .et_pb_post_content a {
    text-decoration: none;
    transition: text-decoration 0.2s ease;
  }

  .et_pb_post_content a:hover {
    text-decoration: underline;
  }

  .wp-singular .et_pb_post_content h3 {
    margin-bottom: 20px;
  }

  .tags-display-block {
    padding: 62px 42px 62px 72px;
  }

  .tag-arrow {
    width: 24px;
    height: 24px;
  }

  .resource-title {
    font-size: var(--mediumFontMax);
  }

  .resource-info {
    padding: 20px 46px 46px 0;
  }

  .custom-dropdown-menu {
    background: white;
    max-height: 300px;
    border-radius: var(--border-lg);
    border: 1px solid rgba(204, 197, 185, 0.3);
  }

  .custom-dropdown-option {
    padding: 12px 15px;
    font-size: var(--copyFontSmall);
    color: var(--nu-blue);
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid rgba(204, 197, 185, 0.3);
    text-transform: uppercase;
  }
}

/* Mobile Devices */
@media (max-width: 767px) {
  .article-title h1 {
    font-size: var(--bigFontMin);
  }

  .article-subheader {
    font-size: var(--smallestFontMin);
    max-width: 75vw;
    line-height: 1.2em;
    margin-bottom: 12px;
  }

  .article-meta-row .et_pb_column {
    flex-direction: column;
    gap: 12px;
  }

  .resource-tag-item {
    font-size: var(--copyFontSmall);
  }

  .et_pb_post_content p {
    font-size: var(--copyFontSmall);
  }

  .et_pb_post_content a {
    text-decoration: underline;
  }

  .wp-singular .et_pb_post_content h3 {
    font-size: var(--smallFontMin);
    margin-bottom: 10px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .resource-title {
    font-size: var(--mediumFontMin);
  }

  .resource-type {
    font-size: var(--copyFontSmall);
  }

  .resource-type-icon {
    height: 20px;
  }

  .resource-info {
    gap: 6px;
    padding: 15px 25px 25px 0;
  }

  .resource-blurb {
    font-size: var(--copyFontSmall);
    line-height: 1.3em;
  }

  .resource-thumbnail {
    padding-bottom: 60%;
  }

  .tags-display-block {
    padding: 20px;
  }

  .tags-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 20px;
  }

  .tag-name {
    font-size: var(--smallestFontMin);
  }

  .tag-arrow {
    width: 18px;
    height: 18px;
  }

  .age-groups-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .age-group-name {
    font-size: var(--mediumFontMin);
  }

  .resource-tags-list {
    gap: 12px;
  }

  /* Share Menu Mobile */
  .share-menu-container ul.share-menu {
    left: 0;
  }

  .share-menu-container.active ul.share-menu::before {
    left: 25%;
  }

  /* Mobile Filter Drawer Styles */
  .mobile-filter-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    pointer-events: none;
  }

  .mobile-filter-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-filter-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: var(--floral-white);
    z-index: 999999;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition:
      right 0.3s ease-in-out,
      visibility 0.3s ease-in-out,
      opacity 0.3s ease-in-out;
  }

  .mobile-filter-drawer.open {
    right: 0;
    visibility: visible;
    opacity: 1;
  }

  /* Hide header when drawer is open */
  body.drawer-open #header-mobile {
    transform: translateY(-130px);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-filter-drawer-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile layout - Filter By and Sort on first row, chips/reset below */
  .resource-controls-container {
    flex-wrap: wrap;
    padding: 12px;
    justify-content: space-between;
    border-bottom: 1px solid var(--timberwolf);
  }

  .resource-filters-desktop {
    display: none;
  }

  .filter-by-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    font-size: var(--copyFontSmall);
    font-weight: 300;
    color: var(--nu-blue);
    text-transform: uppercase;
    cursor: pointer;
  }

  /* Filter By Button Arrow */
  .filter-by-button::after {
    content: "";
    width: 14px;
    height: 10px;
    flex-shrink: 0;
    background-image: url("../../img/blue-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
  }

  .sort-dropdown {
    order: 2;
    flex-shrink: 0;
    padding: 0;
  }

  .sort-dropdown .custom-dropdown-menu {
    background: white;
    border-radius: var(--border-md);
    border: 1px solid rgba(204, 197, 185, 0.3);
    margin-top: -15px;
  }

  .sort-dropdown .custom-dropdown-option {
    padding: 12px 15px;
    font-size: var(--copyFontSmall);
    color: var(--nu-blue);
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid rgba(204, 197, 185, 0.3);
    text-transform: uppercase;
  }

  /* Hide count, chips, and reset on mobile (they go in drawer) */
  .resource-count,
  .active-filters-chips,
  .resource-controls-container > .reset-filters-button {
    display: none;
  }

  .drawer-action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
  }

  .drawer-cancel-button {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--nu-blue);
    text-transform: uppercase;
    cursor: pointer;
    flex: 0 0 auto;
  }

  .drawer-action-buttons .active-filters-chips {
    display: flex;
    justify-content: center;
    flex: 1;
    height: auto;
    padding: 0;
    margin-left: 0;
  }

  .drawer-action-buttons .reset-filters-button {
    display: none;
    flex: 0 0 auto;
    height: auto;
    padding: 0;
    background: transparent;
    color: var(--flame);
    text-transform: uppercase;
    margin-left: 0;
  }

  .drawer-action-buttons .reset-filters-button.is-visible {
    display: flex;
  }

  .drawer-action-buttons .reset-filters-button:hover {
    color: var(--jasper);
  }

  .drawer-cancel-label,
  .reset-filters-label {
    font-size: 14px;
  }

  .drawer-action-buttons .filter-chip-label {
    font-size: 14px;
  }

  .mobile-filter-drawer .custom-dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    max-height: none;
    border-radius: 0;
    padding: 10px;
  }

  .mobile-filter-drawer .filter-dropdown-wrapper.open .custom-dropdown-menu {
    display: block;
  }

  .mobile-filter-drawer .custom-dropdown-button {
    font-size: var(--copyFontSmall);
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid var(--timberwolf);
    border-radius: 0;
    cursor: pointer;
    background: transparent;
  }

  .mobile-filter-drawer .filter-dropdown-wrapper.open .custom-dropdown-button {
    background: transparent;
  }

  .mobile-filter-drawer .custom-dropdown-label.active-filter {
    color: var(--nu-blue);
    font-weight: 400;
  }

  .mobile-filter-drawer .custom-dropdown-arrow {
    display: none;
  }

  .mobile-filter-drawer .custom-dropdown-option {
    font-size: var(--copyFontSmall);
    padding: 8px 5px;
    text-transform: uppercase;
  }

  .mobile-filter-drawer .custom-dropdown-option.selected {
    background: transparent;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .tags-list {
    grid-template-columns: 1fr;
  }
}
