/* Block wrapper */
.tws-clc {
  width: 100%;
}

/* Inner card (minimal, clean) */
.tws-clc__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.06);
}

/* Centered H3 */
.tws-clc__title {
  margin: 0 0 18px 0;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

/* Two columns */
.tws-clc__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
  align-items: start;
}

/* List with subtle check icon */
.tws-clc__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tws-clc__list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  line-height: 1.45;
  color: rgba(17, 24, 39, 0.85);
}

.tws-clc__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: rgba(37, 99, 235, 0.95);
  font-weight: 700;
  font-size: 12px;
}

/* CTA area */
.tws-clc__cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

/* Button – wide, clean */
.tws-clc__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.20);
  background: rgba(37, 99, 235, 0.10);
  color: rgba(17, 24, 39, 0.95);
  text-decoration: none;
  font-weight: 700;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.tws-clc__button:hover {
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.28);
  transform: translateY(-1px);
}

.tws-clc__button:active {
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 720px) {
  .tws-clc__inner {
    padding: 22px 16px;
    border-radius: 16px;
  }
  .tws-clc__cols {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tws-clc__button {
    width: 100%;
    min-width: 0;
  }
}

/* Optional centered image between title and lists */
.tws-clc__media{
  display:flex;
  justify-content:center;
  margin: 12px 0 18px;
}
.tws-clc__img{
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(17,24,39,.08);
}
@media (max-width:720px){
  .tws-clc__img{ max-width: 100%; border-radius: 12px; }
}

/* --- OVERRIDES (force match to reference checklist) --- */
.tws-clc .tws-clc__list li{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;

  padding-left:0 !important;
  position:static !important;
  line-height: 1.55 !important;
}

.tws-clc .tws-clc__list li::before{
  content:"✓" !important;

  /* remove circle badge */
  width:auto !important;
  height:auto !important;
  background:transparent !important;
  border-radius:0 !important;
  box-shadow:none !important;

  /* keep it attached to first line */
  position:static !important;
  left:auto !important;
  top:auto !important;
  margin:0 !important;

  display:inline-flex !important;
  align-items:center !important;

  color: rgba(37,99,235,1) !important;
  font-weight:700 !important;

  /* Make icon follow text sizing */
  font-size: 1em !important;
  line-height: 1 !important;

  /* Optical baseline alignment with first text line */
  transform: translateY(0.30em) !important;
}

/* CTA button (reference-like) */
.tws-clc__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 22px;
  min-width: 170px;
  border-radius: 999px;
  background: rgba(17,24,39,1);
  border: 1px solid rgba(17,24,39,1);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  line-height:1;
  box-shadow: 0 10px 22px rgba(17,24,39,.12);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.tws-clc__button:hover{
  background: rgba(17,24,39,.92);
  box-shadow: 0 12px 26px rgba(17,24,39,.14);
  transform: translateY(-1px);
}
.tws-clc__button:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(17,24,39,.10);
}
