.elementor-4693 .elementor-element.elementor-element-faf235b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-58084db *//* ===== Larger Project Grid ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2-up on desktop */
  gap: 28px;
}

/* Tablet */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.project-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 16 / 11; /* slightly taller for more visual weight */
  background: #f2f2f2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 260ms ease;
}

/* Hover overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 200ms ease;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0) 100%
  );
}

.project-title {
  color: #fff;
  font-size: clamp(18px, 2vw, 22px); /* slightly larger title */
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 220ms ease;
}

/* Hover / focus */
.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.05);
}

.project-card:hover .project-overlay,
.project-card:focus-visible .project-overlay {
  opacity: 1;
}

.project-card:hover .project-title,
.project-card:focus-visible .project-title {
  transform: translateY(0);
}

.project-card:hover,
.project-card:focus-visible {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-faf235b *//* ===== Larger Project Grid ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2-up on desktop */
  gap: 28px;
}

/* Tablet */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.project-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 16 / 11; /* slightly taller for more visual weight */
  background: #f2f2f2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 260ms ease;
}

/* Hover overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 200ms ease;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0) 100%
  );
}

.project-title {
  color: #fff;
  font-size: clamp(18px, 2vw, 22px); /* slightly larger title */
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 220ms ease;
}

/* Hover / focus */
.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.05);
}

.project-card:hover .project-overlay,
.project-card:focus-visible .project-overlay {
  opacity: 1;
}

.project-card:hover .project-title,
.project-card:focus-visible .project-title {
  transform: translateY(0);
}

.project-card:hover,
.project-card:focus-visible {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.post-password-form {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.post-password-form input[type="password"] {
  width: 100%;
}

@media only screen and (min-width: 769px) {
    .post-password-form input[type=password] {
        display: block;
        max-width: 1000%;
    }
}/* End custom CSS */