/* /themes/custom/pt_theme/css/front/tfc-weekly-review.css */

.tfc-review-section{
  padding:120px 20px;
  background:linear-gradient(
    135deg,
    #f8fbff 0%,
    #f4f6ff 100%
  );
}

.tfc-review-inner{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.tfc-review-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e5ecff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  color:#2f63ff;
  margin-bottom:24px;
}

.tfc-review-pill svg{
  width:16px;
  height:16px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
}

.tfc-review-copy h2{
  font-size:72px;
  line-height:.95;
  font-weight:900;
  margin:0 0 24px;
  color:#08152f;
}

.tfc-review-copy h2 span{
  display:block;
  background:linear-gradient(
    90deg,
    #2f63ff,
    #6a4dff
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.tfc-review-lead{
  font-size:24px;
  line-height:1.6;
  color:#59657f;
  max-width:650px;
  margin-bottom:35px;
}

.tfc-review-points{
  display:grid;
  gap:16px;
}

.tfc-review-point{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:18px;
  font-weight:700;
  color:#08152f;
}

.tfc-review-point span{
  width:32px;
  height:32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#e8fff1;
  color:#11b560;
}

.tfc-review-callout{
  margin-top:35px;
  padding:18px 22px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e5ecff;
  font-size:18px;
  color:#59657f;
}

.tfc-review-callout strong{
  color:#08152f;
}

.tfc-review-image{
  position:relative;
  display:flex;
  justify-content:center;
}

.tfc-review-glow{
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(47,99,255,.15),
    transparent 70%
  );
}

.tfc-review-image img{
  position:relative;
  width:100%;
  max-width:430px;
  z-index:2;
}

@media(max-width:900px){

  .tfc-review-inner{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
  }

  .tfc-review-copy h2{
    font-size:52px;
  }

  .tfc-review-lead{
    font-size:20px;
    margin-left:auto;
    margin-right:auto;
  }

  .tfc-review-point{
    justify-content:center;
  }
}