.hero {
  display: flex;
  align-items: stretch;
  height: 360px;
  background: #eef5fd;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a8aaa;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: #7a8aaa;
  text-decoration: none;
}
.breadcrumb .sep {
  color: #c0cad8;
}
.breadcrumb .current {
  color: #c0954a;
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #0d2a6e;
  line-height: 1.1;
  margin-bottom: 14px;
}

.rule {
  width: 48px;
  height: 3px;
  background: #c0954a;
  border-radius: 2px;
  margin-bottom: 16px;
}

p {
  font-size: 15px;
  line-height: 1.75;
  color: #2f4165;
  max-width: 460px;
}

.hero-right {
  width: 45%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(30%) brightness(1.1);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 20%);
  mask-image: linear-gradient(to right, transparent 0%, white 20%);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {
  .hero {
    height: auto;
    flex-direction: column;
  }

  .hero-left {
    padding: 40px;
  }

  .hero-right {
    width: 100%;
    height: 300px;
  }

  .hero-right img {
    height: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .hero-left {
    padding: 30px 20px;
  }

  p {
    max-width: 100%;
  }

  .hero-right {
    height: 240px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 11px;
    flex-wrap: wrap;
  }

  .hero-left {
    padding: 20px 15px;
  }

  .hero-right {
    height: 200px;
  }
}

/* =========================
   LARGE DESKTOP (1600px+)
========================= */

@media (min-width: 1600px) {
  .hero-left {
    padding: 40px 140px;
  }

  h1 {
    font-size: 56px;
  }

  p {
    font-size: 17px;
    max-width: 550px;
  }
}

/* =========================
   LAPTOP (1200px)
========================= */

@media (max-width: 1200px) {
  .hero-left {
    padding: 40px 70px;
  }

  h1 {
    font-size: 42px;
  }
}

/* =========================
   TABLET LANDSCAPE (1024px)
========================= */

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero-left {
    padding: 40px 50px;
  }

  h1 {
    font-size: 40px;
  }

  p {
    max-width: 100%;
  }
}

/* =========================
   TABLET (768px)
========================= */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #eef4fb 0%, #e3ebf7 40%, #d9e4f3 100%);
  }

  .hero-left {
    width: 100%;
    padding: 45px 25px 30px;
    position: relative;
    z-index: 2;
  }

  .hero-right {
    width: 100%;
    height: 240px;
    position: relative;
  }

  .hero-right::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
      to bottom,
      rgba(238, 245, 253, 1) 0%,
      rgba(238, 245, 253, 0.3) 35%,
      rgba(238, 245, 253, 0) 100%
    );

    z-index: 1;
  }

  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    -webkit-mask-image: none;
    mask-image: none;

    opacity: 0.85;
    filter: grayscale(15%);
  }

  h1 {
    font-size: 36px;
  }

  p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -120px;
    right: -120px;

    border-radius: 50%;

    background: radial-gradient(
      circle,
      rgba(23, 52, 107, 0.08) 0%,
      transparent 70%
    );

    pointer-events: none;
  }
}
/* =========================
   MOBILE (576px)
========================= */

@media (max-width: 576px) {
  .hero-left {
    padding: 35px 20px;
  }

  h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .breadcrumb {
    font-size: 12px;
    margin-bottom: 15px;
  }

  p {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-right {
    height: 260px;
  }

  .rule {
    width: 40px;
  }
}

/* =========================
   SMALL MOBILE (480px)
========================= */

@media (max-width: 480px) {
  .hero-left {
    padding: 30px 15px;
  }

  h1 {
    font-size: 26px;
  }

  .hero-right {
    height: 220px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    gap: 5px;
  }
}

/* =========================
   EXTRA SMALL (375px)
========================= */

@media (max-width: 375px) {
  .hero-left {
    padding: 25px 15px;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 13px;
  }

  .hero-right {
    height: 180px;
  }

  .breadcrumb {
    font-size: 11px;
  }
}