.weather-advice-container {
  width: 100%;
  background: linear-gradient(to right, #0f4a66, #1e7ba3, #156080); /* left → right gradient */
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  line-height: 1.6;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  contain: content;
}

.weather-bar {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
  background: transparent; /* let container gradient show through */
  min-height: 96px;
}

.weather-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.14);
  padding: 10px 16px;
  border-radius: 16px;
  transition: all .3s ease;
  backdrop-filter: blur(4px);
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  height: 78px;
  box-sizing: border-box;
  contain: layout style;
}

.weather-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.weather-icon { font-size: 1.8rem; color: #FFD700; }

.location-name {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 100px;
  text-align: left;
}

.temp-group {
  display: flex;
  flex-direction: column;
  font-size: 0.86rem;
  line-height: 1.25;
  text-align: left;
}

.temp-group > div {
  display: block;
  line-height: 1.4;
}

.air-temp   { color: #A0E7FF; font-weight: 700; }
.water-temp { color: #FF8C8C; font-weight: 700; }

.advice-bar {
  padding: 18px 24px;
  font-size: 14.5px;
  line-height: 1.8;
  font-weight: 600;
  color: #FFFFFF;
  background: transparent; /* gradient shows here too */
  border-top: 1px solid rgba(255,215,0,0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.advice-bar strong { color: #FFD700; font-weight: 800; }

.advice-bar .highlight {
  background: #FFD700;
  color: #156080;
  padding: 4px 11px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95em;
  display: inline-block;
  line-height: 1.4;
  transform: translateY(1px);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.advice-bar .icon {
  margin: 0 6px;
  font-size: 1.15em;
  color: #A0E7FF;
}

/* Responsiveness */
@media (max-width: 992px) {
  .weather-bar { gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .weather-bar {
    flex-direction: column;
    gap: 14px;
    padding: 18px 12px;
  }
  .weather-item {
    width: 88%;
    max-width: 400px;
    height: 76px;
    min-width: unset;
  }
  .advice-bar {
    font-size: 14px;
    padding: 16px;
  }
}