/* Our Enclosures Applications Module */
.jwell-enclosures-applications {
  position: relative;
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.jwell-enclosures-applications .container {
  position: relative;
  z-index: 2;
}

.jwell-enclosures-applications .enclosures-header {
  text-align: center;
  margin-bottom: 60px;
}

.jwell-enclosures-applications .enclosures-header .enclosures-title {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: var(--title-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.jwell-enclosures-applications .enclosures-header .enclosures-desc {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.jwell-enclosures-applications .enclosures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.jwell-enclosures-applications .enclosure-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
}

.jwell-enclosures-applications .enclosure-item:hover {
  background-color: var(--color-primary, #026EB7);
  border-color: var(--color-primary, #026EB7);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(2, 110, 183, 0.25);
}

.jwell-enclosures-applications .enclosure-img {
  width: 100%;
  height: 300px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
}

.jwell-enclosures-applications .enclosure-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jwell-enclosures-applications .enclosure-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 20px 24px 12px;
  line-height: 1.3;
  font-family: var(--title-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  transition: color 0.3s ease;
}

.jwell-enclosures-applications .enclosure-item:hover .enclosure-title {
  color: #fff;
}

.jwell-enclosures-applications .enclosure-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 24px 24px;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  transition: color 0.3s ease;
  flex: 1;
}

.jwell-enclosures-applications .enclosure-item:hover .enclosure-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .jwell-enclosures-applications .enclosures-header .enclosures-title {
    font-size: 42px;
  }
  
  .jwell-enclosures-applications .enclosures-grid {
    gap: 25px;
  }
  
  .jwell-enclosures-applications .enclosure-img {
    height: 260px;
  }
}

@media screen and (max-width: 991px) {
  .jwell-enclosures-applications {
    padding: 60px 0;
  }
  
  .jwell-enclosures-applications .enclosures-header {
    margin-bottom: 50px;
  }
  
  .jwell-enclosures-applications .enclosures-header .enclosures-title {
    font-size: 36px;
  }
  
  .jwell-enclosures-applications .enclosures-header .enclosures-desc {
    font-size: 16px;
  }
  
  .jwell-enclosures-applications .enclosures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .jwell-enclosures-applications .enclosure-img {
    height: 260px;
  }
  
  .jwell-enclosures-applications .enclosure-title {
    font-size: 18px;
    margin: 18px 20px 10px;
  }
  
  .jwell-enclosures-applications .enclosure-desc {
    font-size: 13px;
    margin: 0 20px 20px;
  }
}

@media screen and (max-width: 768px) {
  .jwell-enclosures-applications {
    padding: 50px 0;
  }
  
  .jwell-enclosures-applications .enclosures-header {
    margin-bottom: 40px;
  }
  
  .jwell-enclosures-applications .enclosures-header .enclosures-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .jwell-enclosures-applications .enclosures-header .enclosures-desc {
    font-size: 15px;
  }
  
  .jwell-enclosures-applications .enclosures-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .jwell-enclosures-applications .enclosure-img {
    height: 280px;
  }
  
  .jwell-enclosures-applications .enclosure-title {
    font-size: 18px;
    margin: 18px 20px 10px;
  }
  
  .jwell-enclosures-applications .enclosure-desc {
    font-size: 13px;
    margin: 0 20px 20px;
  }
}

@media screen and (max-width: 480px) {
  .jwell-enclosures-applications {
    padding: 40px 0;
  }
  
  .jwell-enclosures-applications .enclosures-header .enclosures-title {
    font-size: 28px;
  }
  
  .jwell-enclosures-applications .enclosures-header .enclosures-desc {
    font-size: 14px;
  }
  
  .jwell-enclosures-applications .enclosures-grid {
    gap: 18px;
    margin-top: 25px;
  }
  
  .jwell-enclosures-applications .enclosure-img {
    height: 260px;
  }
  
  .jwell-enclosures-applications .enclosure-title {
    font-size: 17px;
    margin: 16px 18px 8px;
  }
  
  .jwell-enclosures-applications .enclosure-desc {
    font-size: 12px;
    margin: 0 18px 18px;
  }
}
