/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 05 2025 | 19:04:20 */
.flight-results{
	padding: 90px 0px;
	width: 80%;
	margin: auto;
}
.flight-card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center; /* centers items when fewer than full row */
}

.flight-card {
  max-width: 350px; /* controls the card width */
  margin: 0 auto; /* keeps single cards centered */
  width: 100%;
	background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}


.flight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.flight-image {
  position: relative;
}

.flight-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.flight-type {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f3f3f3;
  color: #333;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.flight-content {
  padding: 18px 20px;
}

.flight-airline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.airline-logo {
    width: 75px;
    height: 40px;
    object-fit: contain;
}

.airline-name {
    color: #103E8E !important;
    font-weight: 700 !important;
    margin: 0;
    font-size: 20px !important;
}

.html-flight-route {
  margin: 10px 0 5px;
  font-size: 16px !important;
  color: #222;
}

.arrow {
  color: #103E8E;
  font-weight: bold;
  margin: 0 5px;
}

.flight-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.flight-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.flight-price {
  color: #f36c21;
  font-weight: 600;
  font-size: 15px;
}

.cstm-book-btn {
  background: #103E8E;
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cstm-book-btn:hover {
  background: #072b67;
}
