/* ================================================================
   complete/speaking — local.css
   ================================================================ */

/* Separator between Part 2 examiner instruction blocks */
.sp-time-marker {
  text-align: center;
  font-size: .78rem;
  color: var(--gray4);
  letter-spacing: .15em;
  margin: .4rem 0;
  font-family: 'Raleway', sans-serif;
}

/* Consecutive paragraphs inside .a-aside */
.a-aside p + p {
  margin-top: .65rem;
}

@media (max-width: 640px) {
  .sp-time-marker {
    font-size: .72rem;
  }
}

/* ----------------------------------------------------------------
   CTA banner in まとめ section
   ---------------------------------------------------------------- */
.sp-cta {
  background: linear-gradient(135deg, #021f2e 0%, #063e56 100%);
  border-radius: 10px;
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(70,162,218,.1) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.sp-cta .sp-cta__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .4rem;
  position: relative;
  z-index: 1;
}
.sp-cta .sp-cta__desc {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  margin: 0 0 1.1rem;
  position: relative;
  z-index: 1;
}
.sp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.8rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff !important;
  text-decoration: none;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: background .2s ease, border-color .2s ease;
}
.sp-cta__btn:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  text-decoration: none;
  color: #fff !important;
}
.sp-cta__btn i {
  font-size: .82rem;
  transition: transform .2s ease;
}
.sp-cta__btn:hover i { transform: translateX(3px); }
