.tl-ask-learn-dashboard{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.tl-ask-learn-chat-row{
  align-items:stretch;
}
.tl-ask-learn-try-card{
  min-height:100%;
}
.tl-ask-provider-section{
  margin-top:2px;
  padding:18px;
  border:1px solid rgba(0,214,255,.55);
  box-shadow:0 0 0 1px rgba(148,74,255,.28), 0 0 34px rgba(100,63,255,.16), inset 0 1px 0 rgba(255,255,255,.04);
  background:linear-gradient(180deg,rgba(10,19,45,.96),rgba(6,13,32,.98));
}
.tl-ask-provider-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.tl-ask-provider-head h2{
  margin:2px 0 6px;
  color:#fff;
  font-size:clamp(22px,2.2vw,34px);
  letter-spacing:-.02em;
}
.tl-ask-provider-head p{
  max-width:860px;
  margin:0;
  color:#cfd8f0;
  line-height:1.55;
}
.tl-ask-section-kicker{
  margin:0 0 3px;
  color:#56e8ff;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
}
.tl-ask-provider-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.tl-ask-provider-card{
  position:relative;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  grid-template-areas:
    "logo body button"
    "logo body note";
  align-items:center;
  gap:14px;
  min-height:122px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(112,132,190,.34);
  background:linear-gradient(180deg,rgba(25,37,72,.92),rgba(13,22,48,.96));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.tl-ask-provider-logo{
  grid-area:logo;
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  border:1px solid rgba(112,132,190,.35);
  background:radial-gradient(circle at 35% 25%,rgba(255,255,255,.20),rgba(122,84,255,.22) 42%,rgba(12,20,46,.98) 74%);
  color:#fff;
  font-size:34px;
  font-weight:900;
}
.tl-ask-provider-chatgpt .tl-ask-provider-logo{ color:#54f2b4; }
.tl-ask-provider-gemini .tl-ask-provider-logo{ color:#9bd5ff; }
.tl-ask-provider-claude .tl-ask-provider-logo{ color:#ff8a66; }
.tl-ask-provider-perplexity .tl-ask-provider-logo{ color:#49f0f0; }
.tl-ask-provider-body{
  grid-area:body;
  min-width:0;
}
.tl-ask-provider-body h3{
  margin:0 0 8px;
  color:#fff;
  font-size:18px;
  letter-spacing:-.01em;
}
.tl-ask-provider-body p{
  margin:3px 0;
  color:#cfd8f0;
  font-size:13px;
  line-height:1.35;
}
.tl-ask-provider-body strong{
  color:#ffffff;
}
.tl-ask-provider-button{
  grid-area:button;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:154px;
  min-height:42px;
  padding:0 15px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  background:linear-gradient(90deg,#13b7a8 0%,#1fe1a5 100%);
  box-shadow:0 14px 32px rgba(0,0,0,.20);
}
.tl-ask-provider-gemini .tl-ask-provider-button{ background:linear-gradient(90deg,#3c72ff 0%,#3999ff 100%); }
.tl-ask-provider-claude .tl-ask-provider-button{ background:linear-gradient(90deg,#f06b4f 0%,#ff9b66 100%); }
.tl-ask-provider-perplexity .tl-ask-provider-button{ background:linear-gradient(90deg,#0a9fad 0%,#26d0cf 100%); }
.tl-ask-provider-button:hover,
.tl-ask-provider-button:focus{
  transform:translateY(-1px);
  filter:brightness(1.08);
}
.tl-ask-provider-note{
  grid-area:note;
  justify-self:center;
  color:#9cabcd;
  font-size:11px;
  text-align:center;
}
.tl-ask-provider-footnote{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:14px;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(112,132,190,.24);
  background:rgba(12,20,46,.74);
}
.tl-ask-provider-footnote p{
  margin:0;
  color:#cbd6ef;
  font-size:13px;
  line-height:1.45;
}
@media (max-width: 1240px){
  .tl-ask-provider-card{
    grid-template-columns:auto minmax(0,1fr);
    grid-template-areas:
      "logo body"
      "button button"
      "note note";
  }
  .tl-ask-provider-button{
    width:100%;
  }
}
@media (max-width: 980px){
  .tl-ask-provider-grid{
    grid-template-columns:1fr;
  }
  .tl-ask-provider-card{
    grid-template-columns:auto minmax(0,1fr) auto;
    grid-template-areas:
      "logo body button"
      "logo body note";
  }
  .tl-ask-provider-button{
    width:auto;
  }
}
@media (max-width: 680px){
  .tl-ask-provider-section{
    padding:14px;
  }
  .tl-ask-provider-card{
    grid-template-columns:1fr;
    grid-template-areas:
      "logo"
      "body"
      "button"
      "note";
    text-align:left;
    align-items:start;
  }
  .tl-ask-provider-logo{
    width:56px;
    height:56px;
    font-size:30px;
  }
  .tl-ask-provider-button{
    width:100%;
  }
  .tl-ask-provider-note{
    justify-self:start;
  }
}
