.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: 185px;
  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: 0px 20px;
  max-width: 1200px;
}
/* HEADER */

h2 {
  color: #00205b;
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0px;
}
h2::first-letter {
  text-transform: uppercase;
}
.subtitle {
  color: black;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 400;
}
/* TWO COLUMN LAYOUT */

.destination-wrapper {
  display: flex;
  gap: 40px;
  position: relative;
}
/* VERTICAL DIVIDER */

.destination-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dddddd;
}
/* COLUMN */

.column {
  flex: 1;
}
/* TAG (Domestic / International) */

.tag {
  display: inline-block;
  background: #00205b;
  color: white;
  padding: 5px 12px;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  width: 166px;
  height: 32px;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
}
/* HEADINGS */

h4 {
  margin: 10px 0;
  color: #00205b;
  font-size: 22px;
  font-weight: 600;
  margin-left: 9px;
}
/* LIST */

ul {
  padding-left: 18px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration-style: solid;
  color: #4d4d4d;
  cursor: pointer;
}
strong {
  color: #1f3c88;
}
/* MAP */

.map {
  margin-top: 30px;
}
.map img {
  width: 100%;
  max-width: 440px;
}
/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .top-section,
  .bottom-section {
    grid-template-columns: 1fr;
  }
  .bottom-images {
    grid-template-columns: 1fr;
  }
}
