.media-articles-container {
  margin: 0;
  padding: 0;
}
.media-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 32px;
  box-sizing: border-box;
}
.article {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
}
.article-image {
  margin: 0 auto;
  max-width: 100vw;
  width: 119.5rem;
  height: 9.9rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.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: 50%;
  left: 50%;
  transform: translate(-51%, -50%);
  width: 285px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  background-color: rgba(0, 32, 91, 0.75);
  border-radius: 4px;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
}
.article-content {
  padding: 0.5rem 1rem;
}
.description {
  margin: 0.5rem 0;
}
.subtitle {
  margin: 0.3rem 0;
}
.action span {
  color: blue;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .article-image {
    height: 180px;
  }
}
.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;
  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;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  color: #333333;
}
.content-container {
  margin: auto;
  padding: 40px 20px;
}
/* ---------- TOP SECTION ---------- */

.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;
}
.top-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #555555;
}
/* ---------- BOTTOM SECTION ---------- */

.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-text > div {
  flex: 1;
  /* each column takes equal width */

}
.bottom-content h3 {
  font-size: 22px;
  color: #0b2c5d;
  margin-bottom: 16px;
}
.bottom-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #555555;
}
.bottom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bottom-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.about-airblue {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333333;
}
/* ===== TOP ===== */

.about-top {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}
.about-image img {
  border-radius: 8px;
  height: 320px;
}
.about-text h2 {
  color: #1c3d6e;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0px;
}
.about-text p {
  line-height: 1.4;
  margin-bottom: 12px;
  color: #555555;
  font-weight: 400;
  font-size: 15px;
}
.about-text span {
  color: #00205b;
  font-weight: 600;
  font-size: 15px;
}
/* ===== JOURNEY ===== */

.section-title {
  color: black;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 400;
}
.section-heading {
  color: #1c3d6e;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
}
.journey-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.card h4 {
  color: #00205b;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.card p {
  font-size: 15px;
  color: #4d4d4d;
  font-weight: 400;
}
/* ===== BOTTOM ===== */

.bottom-section {
  display: flex;
  gap: 40px;
  align-items: center;
}
.bottom-image img {
  width: 420px;
  border-radius: 10px;
}
.bottom-text {
  display: flex;
  gap: 40px;
}
.bottom-text h3 {
  color: #00205b;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}
.bottom-text p {
  color: #4d4d4d;
  line-height: 1.4;
  font-size: 15px;
  font-weight: 400;
}
/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .top-section,
  .bottom-section {
    grid-template-columns: 1fr;
  }
  .bottom-images {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .about-top,
  .bottom-section {
    flex-direction: column;
    text-align: center;
  }
  .journey-cards {
    flex-wrap: wrap;
  }
  .card {
    flex: 1 1 calc(30%);
  }
  .bottom-text {
    flex-direction: column;
  }
  .about-image img,
  .bottom-image img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .card {
    flex: 1 1 100%;
  }
}
.about-airblue p {
  text-align: left;
}
.about-airblue span {
  color: #00205b;
  font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize !important;
}
/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

/* ---------- LARGE TABLETS ---------- */

@media (max-width: 992px) {
  .content-container,
  .about-airblue {
    padding: 30px 20px;
  }
  .article-image {
    width: 100%;
    height: 180px;
  }
  .title-image {
    width: 240px;
    font-size: 1.4rem;
  }
  .top-section,
  .bottom-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-top {
    flex-direction: column;
    text-align: center;
  }
  .about-image img,
  .bottom-image img {
    width: 100%;
    height: auto;
  }
  .journey-cards {
    flex-wrap: wrap;
  }
  .card {
    flex: 1 1 calc(30%);
  }
  .bottom-text {
    flex-direction: column;
    gap: 25px;
  }
  .top-content h1,
  .section-heading,
  .about-text h2 {
    font-size: 26px;
  }
  .bottom-text h3 {
    font-size: 24px;
  }
}
/* ---------- TABLETS ---------- */

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
  .content-container,
  .about-airblue {
    padding: 25px 16px;
  }
  .media-articles {
    gap: 20px;
    margin-top: 50px;
  }
  .article-image {
    width: 100%;
    height: 170px;
    background-position: center;
  }
  .title-image {
    width: 220px;
    height: 38px;
    font-size: 1.2rem;
    top: 50%;
  }
  .title-image-footer {
    top: 40%;
    font-size: 22px;
    text-align: center;
    padding: 0 16px;
  }
  .subtitle-image-footer {
    top: 58%;
    font-size: 14px;
    text-align: center;
    padding: 0 16px;
  }
  .top-section,
  .bottom-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .top-content,
  .bottom-content,
  .about-text {
    text-align: center;
  }
  .top-content h1,
  .section-heading,
  .about-text h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  .top-content p,
  .bottom-content p,
  .about-text p,
  .bottom-text p,
  .card p {
    font-size: 14px;
    line-height: 1.6;
  }
  .bottom-images {
    grid-template-columns: 1fr;
  }
  .bottom-images img {
    width: 100%;
  }
  .journey-cards {
    flex-direction: column;
  }
  .card {
    width: 100%;
  }
  .bottom-text {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .bottom-text h3 {
    font-size: 22px;
  }
  .section-title {
    font-size: 22px;
  }
}
/* ---------- MOBILE ---------- */

@media (max-width: 576px) {
  .article-image {
    height: 150px;
  }
  .title-image {
    width: 180px;
    height: 34px;
    font-size: 1rem;
  }
  .title-image-footer {
    top: 36%;
    font-size: 18px;
    line-height: 1.3;
  }
  .subtitle-image-footer {
    top: 55%;
    font-size: 13px;
    line-height: 1.5;
  }
  .top-content h1,
  .section-heading,
  .about-text h2 {
    font-size: 22px;
  }
  .section-title {
    font-size: 18px;
  }
  .bottom-text h3 {
    font-size: 20px;
  }
  .card h4 {
    font-size: 17px;
  }
  .card p,
  .about-text p,
  .bottom-text p {
    font-size: 13px;
  }
  .card {
    padding: 12px;
  }
  .about-airblue,
  .content-container {
    padding: 20px 14px;
  }
}
/* ---------- SMALL MOBILE ---------- */

@media (max-width: 400px) {
  .article-image {
    height: 130px;
  }
  .title-image {
    width: 160px;
    font-size: 0.9rem;
  }
  .title-image-footer {
    font-size: 16px;
    top: 34%;
  }
  .subtitle-image-footer {
    font-size: 11px;
    top: 52%;
  }
  .top-content h1,
  .section-heading,
  .about-text h2 {
    font-size: 20px;
  }
  .bottom-text h3 {
    font-size: 18px;
  }
  .card h4 {
    font-size: 16px;
  }
  .top-content p,
  .bottom-content p,
  .about-text p,
  .bottom-text p,
  .card p {
    font-size: 12px;
  }
}
