body {
  background: white !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.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;
  overflow-x: hidden;
}
.article-image {
  width: 100vw;
  height: 9.9rem;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-size: cover;
  background-position: center;
  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(-50%, -50%);
  width: 284px;
  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;
}
.leadership-section {
  max-width: 1220px;
  margin: auto;
  color: #222222;
  padding: 40px;
}
.top-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}
.heading p {
  margin: 0;
  font-size: 16px;
}
.heading h2 {
  margin: 5px 0;
  color: #00205b;
  font-weight: 600;
  font-size: 32px;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.underline {
  display: block;
  width: 40px;
  height: 3px;
  background: #0a2a66;
  margin: 8px 0;
}
.subtext {
  font-size: 16px;
  color: #4d4d4d;
  font-weight: 400;
}
.quote {
  font-size: 14px;
  color: #4d4d4d;
  max-width: 280px;
  text-align: right;
  font-weight: bold;
  width: 225px;
}
.quote span {
  display: block;
  margin-top: 5px;
}
.ceo-box {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  padding: 28px;
  margin-bottom: 30px;
  gap: 50px;
}
.ceo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #d9d9d9;
  flex-shrink: 0;
}
.ceo-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.3s ease;
}
.ceo-img img:hover {
  transform: scale(1.08);
}
.ceo-text p {
  font-size: 15px;
  color: #4d4d4d;
  font-weight: 500;
}
.ceo-text h4 {
  margin-top: 10px;
  color: #00205b;
  font-size: 15px;
  font-weight: 700;
}
.ceo-text span {
  font-size: 13px;
  color: #4d4d4d;
  font-weight: 400;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 60px;
}
.member {
  text-align: left;
  transition: 0.3s ease;
  cursor: pointer;
}
.member-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 8px;
}
.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.member-img img:hover {
  transform: scale(1.05);
}
.member h5 {
  margin: 0;
  font-size: 15px;
  color: #0a2a66;
  font-weight: 700;
}
.member p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #4d4d4d;
  font-weight: 400;
}
.title-image-footer {
  position: absolute;
  top: 50%;
  left: 26.5%;
  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;
  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;
}
@media (max-width: 900px) {
  .leadership-section {
    padding: 30px 20px;
  }
  .top-header {
    flex-direction: column;
    gap: 20px;
  }
  .quote {
    text-align: left;
    width: 100%;
    max-width: 100%;
  }
  .heading h2 {
    font-size: 28px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .member-img {
    height: 200px;
  }
  .title-image-footer {
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
  }
  .subtitle-image-footer {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin: 0;
    width: 90%;
  }
}
@media (max-width: 600px) {
  .article-image {
    height: 180px;
  }
  .title-image {
    width: 220px;
    height: 38px;
    font-size: 1.2rem;
    padding: 0 12px;
    white-space: normal;
  }
  .leadership-section {
    padding: 20px 15px;
  }
  .heading h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  .subtext {
    font-size: 14px;
    line-height: 1.6;
  }
  .ceo-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
    min-height: auto;
  }
  .ceo-img {
    width: 100px;
    height: 100px;
  }
  .ceo-text p {
    font-size: 14px;
    line-height: 1.6;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .member-img {
    height: 260px;
  }
  .member h5 {
    font-size: 16px;
  }
  .member p {
    font-size: 14px;
  }
  .title-image-footer {
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    padding: 0 10px;
    text-align: center;
  }
  .subtitle-image-footer {
    position: absolute;
    left: 50%;
    top: 62%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    font-size: 14px;
    margin: 0;
  }
}
@media (max-width: 380px) {
  .title-image {
    width: 200px;
    font-size: 1rem;
  }
  .heading h2 {
    font-size: 22px;
  }
  .member-img {
    height: 220px;
  }
  .title-image-footer {
    font-size: 18px;
  }
  .subtitle-image-footer {
    font-size: 13px;
  }
}
