.media-articles-container {
  margin: 0;
  padding: 0;
}
.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;
}
.top-section .section:first-child {
  flex: 1.6;
}
.top-section .carry-card {
  flex: 1;
}
.article-image {
  width: 100%;
  /* FIXED */
  height: 9.9rem;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 6px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.article-image::after {
  content: "";
  position: absolute;
  inset: 0;
  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: 252px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  background-color: #00205b;
  border-radius: 4px;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.title-image-footer {
  position: absolute;
  top: 50%;
  left: 31%;
  transform: translate(-55%, -50%);
  width: 210px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: white;
  border-radius: 4px;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
  background-color: transparent !important;
  margin-top: -12px;
}
.subtitle-image-footer {
  position: absolute;
  top: 51%;
  left: 17%;
  color: #efefef;
  font-size: 16px;
  font-weight: 400;
  margin: 0.3rem 50px;
}
.content-container {
  margin: auto;
  padding: 40px 20px;
  max-width: 1200px;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 10px 0;
}
h4 {
  font-size: 20px;
  color: #00205b;
  font-weight: 600;
}
h2,
h3 {
  font-weight: 600;
  font-size: 28px;
  color: #00205b;
  text-transform: capitalize;
  letter-spacing: 1px;
  line-height: 40px !important;
}
a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.section img {
  max-width: 100%;
  height: auto;
}
.baggage-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.baggage-card {
  flex: 1;
  min-width: 280px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.baggage-card img {
  display: block;
}
.baggage-card .content {
  padding: 15px;
}
.baggage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.baggage-card li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.prohibited-banner {
  background-color: #f8f8f8;
  padding: 20px;
  border: 2px solid red;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
}
.prohibited-banner h3 {
  color: red;
  margin-bottom: 15px;
}
.prohibited-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px;
}
.prohibited-item {
  width: 120px;
  text-align: center;
}
.prohibited-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
}
.ticket-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ticket-card {
  flex: 1;
  min-width: 220px;
  border-radius: 8px;
  padding: 15px;
  text-align: justify;
}
.top-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 30px;
}
p {
  font-size: 15px;
  color: #4d4d4d;
  font-weight: 400;
}
.carry-card img {
  float: right;
}
.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;
}
body {
  overflow-x: hidden;
  /* prevents horizontal stretch */

}
.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;
}
.card-features li:last-child {
  border-bottom: none;
}
/* Responsive */

@media (max-width: 768px) {
  .top-section {
    flex-direction: column;
  }
  .carry-card img {
    float: none;
    display: block;
    margin: 10px auto 0;
  }
}
/* Responsive */

@media (max-width: 768px) {
  .baggage-grid {
    flex-direction: column;
  }
  .ticket-grid {
    flex-direction: column;
  }
  .prohibited-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .top-section,
  .bottom-section {
    flex-direction: column;
  }
  .bottom-images {
    flex-direction: column;
  }
}
