.weather-carousel .swiper-slide {
    flex: 0 0 auto;
    width: 621px !important;
    height: 520px !important;
    display: flex;
}

.weather-card {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.weather-card .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.weather-carousel .swiper-slide {
    
    flex: 0 0 auto;
}

.weather-carousel .swiper-wrapper {
    display: flex;
}

.weather-card .location-tag {
    padding: 5px 10px;
    background: #0758b4;
    border-radius: 3px;
    display: inline-block;
    font-size: 15px;
    margin-bottom: 10px;
    width: 139px;
    color: #fff;
    text-align: center;
}

.weather-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 1.3em;
}

.weather-card p {
    font-size: 14px;
    color: #f0f0f0;
    margin: 8px 0;
}

.weather-card .meta {
    font-size: 12px;
    color: #ccc;
}
@media screen and (max-width: 768px) {
  .weather-carousel .swiper-slide {
    height: 250px;
  }
}

