/* [project]/src/styles/ProjectsSection.css [client] (css) */
.projects-section {
  background-color: var(--color-black);
  padding: 40px;
}

.projects-header {
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0;
  display: flex;
}

.projects-title {
  font-size: var(--font-size-h2);
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.projects-title .text-primary {
  color: #54b248;
}

.desktop-only-btn {
  display: flex !important;
}

.mobile-only-btn-wrapper {
  display: none !important;
}

.projects-view-all {
  background-color: var(--color-primary);
  color: #fff;
  border: 1.5px solid var(--color-primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  box-shadow: 0 4px 15px #54b24833;
}

.projects-view-all:hover {
  color: var(--color-primary);
  background-color: #0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #54b2484d;
}

.projects-grid {
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 20px;
  display: flex;
  overflow-x: auto;
}

.projects-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  cursor: pointer;
  background-color: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 20px);
  min-width: 340px;
  margin-bottom: 40px;
  transition: all .4s;
  display: flex;
  position: relative;
  overflow: visible;
}

.project-card:hover {
  border-color: #54b24880;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #0006;
}

.project-card-img {
  background-position: center;
  background-size: 110%;
  border-radius: 12px;
  width: 100%;
  height: 340px;
  transition: all .4s;
  position: relative;
}

.project-card-footer {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #54b248;
  text-align: center;
  z-index: 5;
  background-color: #eaf6e5f2;
  border: 2px solid #54b248;
  border-radius: 10px;
  min-width: 260px;
  max-width: 90%;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0 10px 30px #54b24840;
}

.project-card:hover .project-card-footer {
  color: #fff;
  background-color: #54b248;
  transform: translate(-50%, 40%)scale(1.05);
  box-shadow: 0 15px 35px #54b24866;
}

@media (max-width: 768px) {
  .projects-section {
    padding: 60px 20px;
  }

  .projects-header {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0;
  }

  .projects-title {
    font-size: 32px;
  }

  .projects-grid {
    flex-direction: column;
    align-items: center;
    overflow-x: visible;
  }

  .project-card {
    width: 100%;
    min-width: 100%;
    max-width: 400px;
    margin-bottom: 80px;
  }

  .project-card-img {
    height: 300px;
  }

  .desktop-only-btn {
    display: none !important;
  }

  .mobile-only-btn-wrapper {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    display: flex !important;
  }
}

/*# sourceMappingURL=src_styles_ProjectsSection_css_65f1660e._.single.css.map*/