/* ==========================================================================
   THEME-CTA
   ========================================================================== */

.theme-cta {
  position: relative;
  padding: 0 0 150px;
  background: var(--brand);
  overflow: hidden;
}

/* ---- Dashed decorative line ---- */
.theme-cta__lines {
  margin: 0 0 100px
}

/* ---- Grid ---- */
.theme-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 136px;
  max-width: 100%;
  margin-inline: auto;
}

/* ---- Card ---- */
.theme-cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #CCE1F4;
  border-radius: 0;
  padding: 48px 40px 40px;
  text-decoration: none;
  color: #fff;
  min-height: 604px;
  transition: transform .3s ease, box-shadow .3s ease;
  clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
}

.theme-cta__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.15);
}

/* Inner content area */
.theme-cta__card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

/* Gradient icon */
.theme-cta__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

/* Title */
.theme-cta__card-title {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 600;
  line-height: 126%;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin: 0;
}

.theme-cta__card-title em {
  font-style: italic;
}

/* Description */
.theme-cta__card-desc {
  font-family: var(--sans);
  font-size: 42px;
  font-weight: 500;
  line-height: 150%;
  color: var(--brand);
  margin: 0;
}

/* ---- Arrow area ---- */
.theme-cta__card-arrow {
  display: flex;
  justify-content: left;
  width: 100%;
  margin-top: 24px;
}

.theme-cta__arrow-circle {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #F26836;
}

.theme-cta__arrow-circle svg {
  width: 73px;
  height: auto;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1400px) {
  .theme-cta__grid {
    gap: 40px;
  }
  .theme-cta__card {
    min-height: auto;
    height: 100%;
  }
  .theme-cta__card-title {
    font-size: 52px;
  }

  .theme-cta__card-desc {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .theme-cta__card-title {
    font-size: 52px;
  }

  .theme-cta__card-desc {
    font-size: 23px;
  }

  .theme-cta__card {
    min-height: 480px;
    padding: 40px 32px 32px;
  }

  .theme-cta__arrow-circle {
    width: 72px;
    height: 72px;
  }
  .theme-cta__arrow-circle svg {
    width: 62px;
  }
}

@media (max-width: 768px) {
  .theme-cta__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .theme-cta__card {
    min-height: auto;
    padding: 36px 28px 28px;
  }

  .theme-cta__card-title {
    font-size: 40px;
  }

  .theme-cta__card-desc {
    font-size: 24px;
  }

  .theme-cta__arrow-circle {
    width: 64px;
    height: 64px;
  }

  .theme-cta__arrow-circle svg {
    width: 58px;
  }

  .theme-cta__deco {
    width: 200px;
    height: 60px;
  }
}

@media (max-width: 520px) {
  .theme-cta__card {
    padding: 28px 24px 24px;
  }

  .theme-cta__card-title {
    font-size: 32px;
  }

  .theme-cta__card-desc {
    font-size: 20px;
  }

  .theme-cta__arrow-circle {
    width: 56px;
    height: 56px;
  }

  .theme-cta__arrow-circle svg {
    width: 48px;
  }
}
