.media-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.article {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
}
.article-image {
  width: 100%;
  height: 9.9rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.article-image::after {
  content: "";
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  z-index: 1;
}
.title-image {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-51%, -50%);
  width: 82px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  background-color: #00205b;
  border-radius: 4px;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
}
/* =========================
FOOTER IMAGE TEXT
========================= */

.title-image-footer {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  height: auto;
  display: block;
  font-size: clamp(16px, 3.5vw, 28px);
  font-weight: 600;
  color: white;
  background-color: transparent;
  border-radius: 0;
  z-index: 2;
  text-align: left;
  white-space: normal;
  line-height: 1.3;
  margin: 0;
  box-sizing: border-box;
}
.subtitle-image-footer {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  color: #efefef;
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  z-index: 2;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
}
.content-container {
  margin: auto;
  padding: 40px 20px;
  max-width: 1100px;
}
.top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.top-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.top-content h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #0b2c5d;
  line-height: 2rem;
}
.top-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #555555;
}
.bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.bottom-content h2 {
  font-size: 16px;
  color: #999999;
  margin-bottom: 6px;
}
.bottom-content h3 {
  font-size: 28px;
  color: #00205b;
  margin-bottom: 16px;
  font-weight: 600;
}
.bottom-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #4d4d4d;
  font-weight: 400;
}
.bottom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bottom-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
/* Single image variant */

.bottom-images.single {
  grid-template-columns: 1fr;
}
.bottom-images.single img {
  height: 300px;
}
.section-title1 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 15px;
  color: black;
}
.section-title2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #00205b;
}
.section-subtitle1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #00205b;
}
.baggage-section {
  margin-top: 30px;
}
.baggage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.baggage-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-image {
  height: 160px;
  background-size: cover;
}
.card-body {
  padding: 20px;
}
.card-title {
  font-size: 26px;
  font-weight: 500;
  color: #00205b;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 14px;
  color: #555555;
  margin-bottom: 16px;
}
.inner-span {
  font-weight: 500;
  font-size: 14px;
  color: #002058;
}
.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-features li {
  font-size: 14px;
  color: #333333;
  padding: 6px 0;
}
/* =========================
FEATURES GRID
========================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: transparent;
}
.feature-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-image img {
  transform: scale(1.05);
}
.feature-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.93), transparent);
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
}
.section-title1 h4 {
  font-size: 25px;
  color: black;
  font-weight: 400;
  margin-bottom: 15px !important;
}
/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px) {
  .article-image {
    height: 260px;
    width: 100%;
  }
  .title-image {
    width: 16%;
    height: auto;
    padding: 8px 0px;
    font-size: 22px;
    white-space: normal;
  }
  .media-articles:last-of-type .article-image {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
  }
  .title-image-footer {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .subtitle-image-footer {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .baggage-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .top-section,
  .bottom-section {
    grid-template-columns: 1fr;
  }
  .bottom-images {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .article-image {
    height: 240px;
  }
  .title-image {
    width: auto;
    padding: 8px 14px;
    font-size: 20px;
    white-space: normal;
  }
  .baggage-cards {
    grid-template-columns: 1fr;
  }
  .bottom-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bottom-images {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .baggage-cards {
    grid-template-columns: 1fr;
  }
  .media-articles:last-of-type .article-image {
    padding: 24px 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
