/* =========================================
   message Hero Styles (for Message Page)
   ========================================= */

.message-hero {
  position: relative;
  width: 100%;
  background: transparent;
  color: var(--color-white);
  padding-top: 220px;
  padding-bottom: 100px;
  text-align: center;
  overflow: hidden;
}

.message-hero__bg-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.message-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.message-hero__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* =========================================
   Message Page Styles
   ========================================= */

.message-main {
  padding-bottom: 140px;
  background: linear-gradient(
    100deg,
    rgba(185, 34, 51, 1) 0%,
    rgba(121, 42, 54, 1) 40%,
    rgba(223, 29, 49, 1) 100%
  );
}

.message-content {
  padding-top: 160px;
  padding-bottom: 80px;
  /* background-color: var(--color-bg-light); */
}

.message-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.message-layout__image {
  flex-basis: 40%;
  flex: 0 0 380px;
  position: sticky;
  top: 120px;
}

.message-layout__image img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  overflow: hidden;
}

.message-layout__image-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-top: 10px;
}

.message-layout__content {
  flex: 1;
  min-width: 0;
}

.message-section {
  margin-bottom: 80px;
}

.message-section:last-child {
  margin-bottom: 0;
}

.message-section__title {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.4;
}

.message-section__text {
  font-size: 16px;
  line-height: 2;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .message-hero {
    padding-top: 230px;
    padding-bottom: 150px;
  }

  .message-hero__title {
    font-size: 36px;
  }

  .message-hero__bg-text {
    font-size: 80px;
    top: 50%;
  }

  .message-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .message-layout {
    flex-direction: column;
    gap: 40px;
  }

  .message-layout__image {
    position: static;
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .message-section {
    margin-bottom: 60px;
  }

  .message-section__title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  .message-section__text {
    font-size: 15px;
    line-height: 1.8;
  }
}
