/*!*************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/pnty-list/style.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************/
/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
/*
* PONTY JOB LIST
*/
.pnty-list {
  max-width: 1500px;
  align-items: center;
  margin: 0 auto;
  padding: var(--wp--preset--spacing--20);
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--20);
}

.filter-heading {
  text-align: center;
  font-family: var(--wp--preset--font-family--default);
  font-weight: 700;
  font-size: var(--wp--preset--font-size--medium);
  margin-bottom: 1rem;
  color: var(--wp--preset--color--contrast);
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.filter-group {
  position: relative;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wp--preset--color--primary-3);
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--default);
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: var(--wp--preset--font-size--small);
  font-family: var(--wp--preset--font-family--default);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.filter-toggle:hover,
.filter-toggle:active {
  filter: brightness(0.9);
}

.filter-toggle.active {
  background: var(--wp--preset--color--primary-3);
  color: var(--wp--preset--color--primary);
}

/* Filter dropdown */
.filter-options {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  background: #fff;
  border: 1px solid var(--wp--preset--color--contrast-3);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0.75rem;
  min-width: 300px;
  z-index: 10;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: var(--wp--preset--font-size--small), 14px;
  font-family: var(--wp--preset--font-family--default);
  color: var(--wp--preset--color--contrast);
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 4px;
  line-height: 30px;
}

.filter-options label:hover {
  background: var(--wp--preset--color--contrast-3);
}

.filter-options input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--wp--preset--color--primary-3);
}

.filter-group.open .filter-toggle {
  border-radius: 8px 8px 0 0;
}

.filter-group.open .filter-options {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  min-height: 34px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem 0.25rem 1rem;
  border: 1px solid var(--wp--preset--color--contrast-3);
  border-radius: 8px;
  background: transparent;
  color: var(--wp--preset--color--contrast);
  font-size: 0.85rem;
  font-weight: 500;
}

.active-filter-tag button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--wp--preset--font-family--default);
  color: var(--wp--preset--color--contrast);
  cursor: pointer;
}

.filter-results {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: space-between;
}

.filter-results > * {
  min-width: 0;
}

.ponty-list.filter-results.loading {
  opacity: 0.5;
  pointer-events: none;
}

.pnty-item {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--wp--preset--color--contrast-3);
  border-radius: 12px;
  padding: 0 1rem;
  flex-grow: 1;
  justify-content: space-between;
}

.item-title {
  font-size: var(--wp--preset--font-size--h3);
  font-weight: 700;
  color: var(--wp--preset--color--contrast);
  margin-bottom: 0.75rem;
}

.item-meta-container {
  color: var(--wp--preset--color--contrast-2);
  font-size: var(--wp--preset--font-size--small);
}

.item-meta-container p {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  font-size: var(--wp--preset--font-size--small);
  font-family: var(--wp--preset--font-family--default);
}

.item-excerpt {
  color: var(--wp--preset--color--contrast-2);
  font-size: var(--wp--preset--font-size--small);
  margin-right: 2.5rem;
  flex: 1;
  text-align: left;
}

.item-read-more {
  flex-shrink: 0;
  margin-top: auto;
}

.pnty-item.job .item-read-more a {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  color: var(--wp--preset--color--primary-3);
  text-decoration: none;
  transition: background-color 0.3s ease;
  line-height: 1.8rem;
}

.item-read-more a:hover {
  filter: brightness(0.9);
}

.pnty-item.event .item-read-more a {
  border-color: currentColor;
  color: var(--wp--preset--color--secondary-3);
  border-color: var(--wp--preset--color--secondary-4);
  color: var(--wp--preset--color--secondary-4);
}
.pnty-item.event .item-read-more a:hover {
  filter: brightness(0.9);
}

/* Responsive fallback */
@media (max-width: 1024px) {
  .filter-results {
    grid-template-columns: repeat(2, 1fr);
  }
  .item-meta-container p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .filter-results {
    grid-template-columns: 1fr;
  }
  .filter-container {
    justify-content: flex-start;
  }
  .filter-toggle {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  .item-meta-container p {
    font-size: 10px;
  }
}
@media (min-width: 1024px) {
  .filter-results {
    min-width: 90vw;
  }
}
@media (min-width: 1400px) {
  .filter-results {
    min-width: 1260px;
  }
}

/*# sourceMappingURL=style-index.css.map*/