/* [project]/src/app/[locale]/projects/projects.module.css [app-client] (css) */
.projects-module__rqmUHq__projectsPage {
  background-color: var(--marketing-cream);
  min-height: 100vh;
}

.projects-module__rqmUHq__hero {
  height: 35vh;
  min-height: 300px;
  color: var(--marketing-white);
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.projects-module__rqmUHq__background {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.projects-module__rqmUHq__heroImage {
  object-fit: cover;
  filter: brightness(.6);
}

.projects-module__rqmUHq__heroContent {
  z-index: 2;
  text-align: center;
  width: 100%;
  position: relative;
}

.projects-module__rqmUHq__heroTitle {
  font-family: var(--font-heading);
  color: var(--marketing-white);
  margin-bottom: 1rem;
  font-size: 3.5rem;
}

.projects-module__rqmUHq__heroSubtitle {
  color: var(--marketing-gold);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.projects-module__rqmUHq__filterBar {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  display: flex;
}

.projects-module__rqmUHq__filterBtn {
  border: 1px solid var(--marketing-border);
  color: var(--marketing-navy);
  cursor: pointer;
  background: none;
  border-radius: 30px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .3s;
}

.projects-module__rqmUHq__filterBtn:hover, .projects-module__rqmUHq__filterBtn.projects-module__rqmUHq__active {
  background-color: var(--marketing-navy);
  color: var(--marketing-white);
  border-color: var(--marketing-navy);
}

.projects-module__rqmUHq__grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  padding-bottom: 6rem;
  display: grid;
}

.projects-module__rqmUHq__card {
  background: var(--marketing-white);
  border-radius: 12px;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 20px #0000000d;
}

.projects-module__rqmUHq__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #0000001a;
}

.projects-module__rqmUHq__imageWrapper {
  width: 100%;
  height: 250px;
  position: relative;
}

.projects-module__rqmUHq__image {
  object-fit: cover;
  transition: transform .5s;
}

.projects-module__rqmUHq__card:hover .projects-module__rqmUHq__image {
  transform: scale(1.05);
}

.projects-module__rqmUHq__content {
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
}

.projects-module__rqmUHq__category {
  color: var(--marketing-gold);
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .8rem;
  font-weight: 600;
  display: block;
}

.projects-module__rqmUHq__title {
  font-family: var(--font-heading);
  color: var(--marketing-navy);
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.projects-module__rqmUHq__location {
  color: var(--marketing-grey);
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  display: flex;
}

.projects-module__rqmUHq__meta {
  border-top: 1px solid var(--marketing-border);
  color: var(--marketing-dark-grey);
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  font-size: .85rem;
  display: flex;
}

@media (max-width: 900px) {
  .projects-module__rqmUHq__heroTitle {
    font-size: 2.5rem;
  }

  .projects-module__rqmUHq__heroSubtitle {
    padding: 0 1rem;
    font-size: 1rem;
  }

  .projects-module__rqmUHq__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .projects-module__rqmUHq__hero {
    height: 28vh;
    min-height: 220px;
    margin-bottom: 2rem;
  }

  .projects-module__rqmUHq__heroTitle {
    font-size: 2rem;
  }

  .projects-module__rqmUHq__filterBar {
    gap: .5rem;
  }

  .projects-module__rqmUHq__filterBtn {
    padding: .5rem 1rem;
    font-size: .9rem;
  }

  .projects-module__rqmUHq__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .projects-module__rqmUHq__imageWrapper {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .projects-module__rqmUHq__heroTitle {
    font-size: 1.75rem;
  }

  .projects-module__rqmUHq__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .projects-module__rqmUHq__imageWrapper {
    height: 220px;
  }

  .projects-module__rqmUHq__title {
    font-size: 1.25rem;
  }
}

/* [project]/src/components/projects/projects.module.css [app-client] (css) */
.projects-module__QCVL6G__projectsPage {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.projects-module__QCVL6G__hero {
  background-color: var(--marketing-navy);
  color: var(--marketing-white);
  text-align: center;
  margin-bottom: 3rem;
  padding: 6rem 0 4rem;
}

.projects-module__QCVL6G__heroTitle {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 3.5rem;
  line-height: 1.2;
}

.projects-module__QCVL6G__heroSubtitle {
  font-family: var(--font-outfit);
  opacity: .9;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.projects-module__QCVL6G__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.projects-module__QCVL6G__projects {
  background-color: var(--marketing-white);
  padding: 8rem 0;
}

.projects-module__QCVL6G__header {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  padding: 0 1rem;
  display: flex;
}

.projects-module__QCVL6G__subtitle {
  color: var(--marketing-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 600;
  display: block;
}

.projects-module__QCVL6G__sectionTitle, .projects-module__QCVL6G__headingTitle {
  font-family: var(--font-heading);
  color: var(--marketing-navy);
  font-size: 3rem;
  line-height: 1.1;
}

.projects-module__QCVL6G__viewAll {
  color: var(--marketing-navy);
  text-underline-offset: 4px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--marketing-gold);
  text-decoration-color: var(--marketing-gold);
  font-weight: 600;
  transition: color .2s;
}

.projects-module__QCVL6G__viewAll:hover {
  color: var(--marketing-gold);
}

.projects-module__QCVL6G__grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  display: grid;
}

.projects-module__QCVL6G__projectCard {
  cursor: pointer;
  border-radius: 8px;
  grid-column: span 6;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.projects-module__QCVL6G__projectCard:nth-child(3n+1) {
  grid-column: span 8;
}

.projects-module__QCVL6G__projectCard:nth-child(3n+2) {
  grid-column: span 4;
}

.projects-module__QCVL6G__projectCard:nth-child(3n+3) {
  grid-column: span 12;
  height: 600px;
}

.projects-module__QCVL6G__overlay {
  width: 100%;
  color: var(--marketing-white);
  background: linear-gradient(to top, #000c, #0000);
  padding: 2rem;
  transition: transform .4s;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(20px);
}

.projects-module__QCVL6G__projectCard:hover .projects-module__QCVL6G__overlay {
  transform: translateY(0);
}

.projects-module__QCVL6G__projectCard:hover .projects-module__QCVL6G__image {
  transform: scale(1.05);
}

.projects-module__QCVL6G__projectCategory {
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .9;
  margin-bottom: .5rem;
  font-size: .85rem;
  display: block;
}

.projects-module__QCVL6G__projectTitle {
  font-family: var(--font-heading);
  margin-bottom: 0;
  font-size: 1.75rem;
}

@media (max-width: 900px) {
  .projects-module__QCVL6G__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .projects-module__QCVL6G__projectCard, .projects-module__QCVL6G__projectCard:nth-child(3n+1), .projects-module__QCVL6G__projectCard:nth-child(3n+2), .projects-module__QCVL6G__projectCard:nth-child(3n+3) {
    grid-column: span 12;
    height: 400px;
  }
}

.projects-module__QCVL6G__uniformGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  display: grid;
}

.projects-module__QCVL6G__controls {
  background: #f8f9fa;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  display: flex;
}

.projects-module__QCVL6G__filterGroup {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.projects-module__QCVL6G__searchGroup {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.projects-module__QCVL6G__searchInput {
  min-width: 200px;
  font-family: var(--font-outfit);
  color: var(--marketing-navy);
  background: #fff;
  border: 2px solid #e1e4e8;
  border-radius: 8px;
  flex: 1;
  padding: .75rem 1rem;
  font-size: .95rem;
  transition: all .2s;
}

.projects-module__QCVL6G__searchInput:focus {
  border-color: var(--marketing-gold);
  outline: none;
  box-shadow: 0 0 0 3px #d4a0171a;
}

.projects-module__QCVL6G__sortSelect {
  font-family: var(--font-outfit);
  color: var(--marketing-navy);
  cursor: pointer;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right .75rem center;
  background-repeat: no-repeat;
  border: 2px solid #e1e4e8;
  border-radius: 8px;
  min-width: 160px;
  padding: .75rem 2rem .75rem 1rem;
  font-size: .95rem;
  transition: all .2s;
}

.projects-module__QCVL6G__sortSelect:focus {
  border-color: var(--marketing-gold);
  outline: none;
}

.projects-module__QCVL6G__filterButton {
  color: var(--marketing-navy);
  font-family: var(--font-outfit);
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 6px;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.projects-module__QCVL6G__filterButton:hover {
  background: #eef0f2;
}

.projects-module__QCVL6G__activeFilter {
  border-color: var(--marketing-gold);
  background: var(--marketing-gold) !important;
  color: var(--marketing-white) !important;
}

.projects-module__QCVL6G__clearButton {
  border: 1px solid var(--marketing-navy);
  color: var(--marketing-navy);
  font-family: var(--font-outfit);
  cursor: pointer;
  background: none;
  border-radius: 6px;
  margin-top: 1rem;
  padding: .75rem 1.5rem;
  font-weight: 500;
  transition: all .2s;
}

.projects-module__QCVL6G__clearButton:hover {
  background: var(--marketing-navy);
  color: #fff;
}

.projects-module__QCVL6G__card {
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 10px #0000000d;
}

.projects-module__QCVL6G__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #0000001a;
}

.projects-module__QCVL6G__imageWrapper {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.projects-module__QCVL6G__image {
  object-fit: cover;
  transition: transform .5s;
}

.projects-module__QCVL6G__card:hover .projects-module__QCVL6G__image {
  transform: scale(1.05);
}

.projects-module__QCVL6G__content {
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  display: flex;
}

.projects-module__QCVL6G__category {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--marketing-gold);
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 600;
}

.projects-module__QCVL6G__title {
  font-family: var(--font-heading);
  color: var(--marketing-navy);
  margin-bottom: .5rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.projects-module__QCVL6G__location {
  color: #666;
  margin-bottom: .25rem;
  font-size: .9rem;
}

.projects-module__QCVL6G__meta {
  color: #888;
  border-top: 1px solid #f0f0f0;
  gap: .5rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: .85rem;
  display: flex;
}

.projects-module__QCVL6G__readMore {
  color: var(--marketing-navy);
  align-items: center;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
  display: flex;
}

.projects-module__QCVL6G__card:hover .projects-module__QCVL6G__readMore {
  color: var(--marketing-gold);
}

.projects-module__QCVL6G__pagination {
  font-family: var(--font-outfit);
  color: var(--marketing-navy);
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  display: flex;
}

.projects-module__QCVL6G__pageButton {
  border: 1px solid var(--marketing-navy);
  color: var(--marketing-navy);
  cursor: pointer;
  background: none;
  border-radius: 4px;
  padding: .5rem 1rem;
  transition: all .2s;
}

.projects-module__QCVL6G__pageButton:disabled {
  opacity: .5;
  cursor: not-allowed;
  color: #ccc;
  border-color: #ccc;
}

.projects-module__QCVL6G__pageButton:not(:disabled):hover {
  background: var(--marketing-navy);
  color: var(--marketing-white);
}

.projects-module__QCVL6G__noResults {
  text-align: center;
  color: #666;
  flex-direction: column;
  grid-column: 1 / -1;
  align-items: center;
  padding: 4rem;
  font-size: 1.1rem;
  display: flex;
}

@media (max-width: 900px) {
  .projects-module__QCVL6G__grid, .projects-module__QCVL6G__uniformGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-module__QCVL6G__controls {
    flex-direction: column;
  }

  .projects-module__QCVL6G__searchGroup {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .projects-module__QCVL6G__grid {
    grid-template-columns: 1fr;
  }

  .projects-module__QCVL6G__uniformGrid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .projects-module__QCVL6G__imageWrapper {
    height: 200px;
  }

  .projects-module__QCVL6G__controls {
    padding: 1rem;
  }

  .projects-module__QCVL6G__searchInput {
    min-width: unset;
    width: 100%;
  }
}

/*# sourceMappingURL=src_13e7125f._.css.map*/