/* ============================= */
/* BASE */
/* ============================= */

.c-split-message{
  position: relative;
  padding: clamp(80px, 10vh, 120px) 0;
}

.c-split-message__container{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* ============================= */
/* GRID */
/* ============================= */

.c-split-message__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 482px;
  gap: 70px;
  align-items: center;
}

/* ============================= */
/* LEFT */
/* ============================= */

.c-split-message__left{
  max-width: 888px;
}

.c-split-message__title{
  margin: 0;
  color: #0A052D;
  font-family: "Lexend Deca", sans-serif;
  font-style: normal;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.c-split-message__title-light,
.c-split-message__title-strong{
  display: block;
  font-size: clamp(2.4rem, 4vw, 56px);
}

.c-split-message__title-light{
  font-weight: 300;
}

.c-split-message__title-strong{
  font-weight: 600;
}

.c-split-message__text{
  margin-top: 18px;
  max-width: 680px;

  color: #0A052D;
  font-family: "Lexend Deca", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.45;
}

.c-split-message__text p{
  margin: 0;
}

.c-split-message__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  margin-top: 28px;
  padding: 0 18px;

  border-radius: 6px;
  background: linear-gradient(90deg, #DFB37E 0%, #C98028 100%);
  color: #0A052D;

  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.c-split-message__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
  filter: brightness(1.03);
}

/* ============================= */
/* RIGHT CARD */
/* ============================= */

.c-split-message__right{
  display: flex;
  justify-content: center;
}

.c-split-message__card{
  width: 100%;
  padding: 86px;

  border-radius: 24px;
  background: linear-gradient(135deg, #050027 0%, #12004A 100%);
}

.c-split-message__card-intro{
  color: #C98028;
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.c-split-message__card-intro p{
  margin: 0;
}

.c-split-message__list{
  margin: 24px 0 0;
  padding-left: 20px;
}

.c-split-message__list-item{
  color: #C98028;
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.c-split-message__list-item + .c-split-message__list-item{
  margin-top: 18px;
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 991px){

  .c-split-message__container{
	width: calc(100% - 40px);
    align-items: center;
    text-align: center;
  }

  .c-split-message__grid{
	grid-template-columns: 1fr;
	gap: 40px;
  }

  .c-split-message__left{
	max-width: none;
  }

  .c-split-message__card{
	max-width: 482px;
  }
  
  .c-sticky-copy__messages p:first-child{
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 640px){

  .c-split-message{
	padding: 64px 0;
  }

  .c-split-message__container{
	width: calc(100% - 32px);
  }

  .c-split-message__grid{
	gap: 28px;
  }

  .c-split-message__title-light,
  .c-split-message__title-strong{
	font-size: clamp(2rem, 9vw, 3rem);
  }

  .c-split-message__text{
	margin-top: 14px;
	font-size: 1rem;
  }

  .c-split-message__btn{
	margin-top: 22px;
  }

  .c-split-message__right{
	justify-content: stretch;
  }

  .c-split-message__card{
	min-height: auto;
	padding: 28px 22px;
	border-radius: 18px;
  }

  .c-split-message__card-intro,
  .c-split-message__list-item{
	font-size: 14px;
  }

  .c-split-message__list{
	margin-top: 18px;
  }

  .c-split-message__list-item + .c-split-message__list-item{
	margin-top: 14px;
  }
}