.banner_module {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner_module:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.banner_link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.banner_image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner_img {
  width: 100%;
  transition: transform 0.5s ease;
}

.banner_module:hover .banner_img {
  transform: scale(1.05);
}

.banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner_content {
  max-width: 600px;
  padding: 0 20px;
}

.banner_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner_text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.5;
  opacity: 0.95;
}

.banner_btn {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ffffff;
}

.banner_module:hover .banner_btn {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
  
  .banner_title {
    font-size: 2rem;
  }
  
  .banner_text {
    font-size: 1.1rem;
  }
}

@media (max-width: 620px) {
  
  .banner_title {
    font-size: 1.6rem;
  }
  
  .banner_text {
    font-size: 1rem;
  }
  
  .banner_btn {
    display: none;
    padding: 10px 25px;
    font-size: 1rem;
  }
}