.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;
}
.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: 62%;
  left: 50%;
  transform: translate(-51%, -50%);
  width: 280px;
  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;
}
.custom-btn {
  background: linear-gradient(180deg, #274783, #00205b);
  color: white;
  padding: 14px 16px;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}
/* Hover effect */

.custom-btn:hover {
  background: linear-gradient(180deg, #2f4175, #16224d);
  transform: translateY(-1px);
}
.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: 50%;
  left: 25%;
  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: 50%;
  left: 18%;
  color: #efefef;
  font-size: 16px;
  font-weight: 400;
  margin: 0.3rem 50px;
}
* {
  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;
  max-width: 1300px;
}
h2 {
  font-size: 28px;
  color: #00205b;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}
p {
  font-size: 19px;
  color: black;
  font-weight: 400;
  line-height: 1.2;
  text-align: justify;
}
/* ---------- 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: justify;
}
.about-airblue span {
  color: #00205b;
  font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize !important;
}
/* =========================
TABLET
========================= */

@media screen and (max-width: 1024px) {
  .content-container {
    padding: 32px 18px;
  }
  .article-image {
    width: 100%;
    height: 260px;
  }
  .title-image {
    width: auto;
    min-width: 220px;
    max-width: 90%;
    padding: 10px 18px;
    font-size: 24px;
    white-space: normal;
    line-height: 1.3;
  }
  .title-image-footer {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    justify-content: flex-start;
    text-align: left;
    font-size: 24px;
    margin-top: 0;
  }
  .subtitle-image-footer {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    margin: 0;
    font-size: 15px;
    text-align: left;
  }
  h2 {
    font-size: 24px;
  }
  p {
    font-size: 17px;
    line-height: 1.5;
  }
}
/* =========================
TABLET + MOBILE
========================= */

@media screen and (max-width: 768px) {
  .content-container {
    padding: 24px 16px;
  }
  .article-image {
    width: 100%;
    height: 220px;
  }
  .title-image {
    top: 55%;
    width: auto;
    max-width: 92%;
    min-width: unset;
    height: auto;
    padding: 10px 14px;
    font-size: 20px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }
  .title-image-footer {
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    height: auto;
    justify-content: flex-start;
    text-align: left;
    font-size: 21px;
    line-height: 1.4;
    white-space: normal;
    margin-top: 0;
  }
  .subtitle-image-footer {
    top: 62%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
  .custom-btn {
    width: 100%;
    font-size: 16px;
    padding: 12px 14px;
  }
  h2 {
    font-size: 22px;
    line-height: 1.4;
  }
  p {
    font-size: 15px;
    line-height: 1.6;
  }
  .top-section,
  .bottom-section,
  .bottom-text,
  .about-top {
    flex-direction: column;
  }
  .journey-cards {
    flex-wrap: wrap;
    gap: 16px;
  }
  .card {
    flex: 1 1 100%;
  }
  .about-image img,
  .bottom-image img {
    width: 100%;
    height: auto;
  }
}
/* =========================
SMALL MOBILE
========================= */

@media screen and (max-width: 480px) {
  .content-container {
    padding: 20px 12px;
  }
  .article-image {
    height: 180px;
  }
  .title-image {
    font-size: 17px;
    padding: 8px 12px;
    max-width: 94%;
  }
  .title-image-footer {
    top: 40%;
    width: 94%;
    font-size: 17px;
    line-height: 1.4;
  }
  .subtitle-image-footer {
    top: 62%;
    width: 94%;
    font-size: 12px;
    line-height: 1.4;
  }
  .custom-btn {
    font-size: 15px;
    padding: 11px 12px;
    border-radius: 10px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
    line-height: 1.6;
  }
  .card {
    flex: 1 1 100%;
  }
}
