  /* --- Base & Desktop Styles (Default) --- */
.banner-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 360px;   
  background-color: #ffffff; 
  overflow: hidden;
  margin: 2rem 0;
}

.banner-image-wrapper,
.banner-content-wrapper {
  flex: 1;
  width: 50%;
}

/* Image block layout */
.banner-image-wrapper {
  position: relative;
}

.banner-image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

/* Content Side */
.banner-content-wrapper {
  background-color: #cfe3e6; 
  display: flex;
  align-items: center; 
  justify-content: center; 
  box-sizing: border-box;
}

.banner-content {
  max-width: 440px;
  text-align: center; 
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000000;
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.banner-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: #111111;
  line-height: 1.4;
  margin: 0 0 28px 0;
}

.banner-btn {
  display: inline-block;
  background-color: transparent;
  color: #000000;
  text-decoration: none;
  padding: 10px 28px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid #000000;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.banner-btn:hover {
  background-color: #000000; 
  color: #ffffff;            
}

/* --- Responsive Styles (Mobile & Small Screens) --- */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column; 
    min-height: auto;       
    margin: 1rem 0;
  }

  .banner-image-wrapper,
  .banner-content-wrapper {
    width: 100%;
  }

  .banner-image-wrapper {
    height: 280px;         
  }

  .banner-content-wrapper {
    padding: 36px 20px;    
  }

  .banner-title {
    font-size: 2rem;
  }
}