/* WEBTRUST_PREMIUM_ACADEMY_V1 */

.wt-academy{
  padding:82px 0 94px;
}

.wt-academy-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.wt-academy-card{
  min-width:0;
  padding:26px 22px;
  border:1px solid var(--wt-line);
  border-radius:19px;
  background:linear-gradient(180deg,rgba(51,8,20,.82),rgba(23,3,9,.95));
  box-shadow:0 20px 50px rgba(0,0,0,.22);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.wt-academy-card:hover{
  transform:translateY(-5px);
  border-color:var(--wt-line-strong);
  box-shadow:0 26px 62px rgba(0,0,0,.30);
}

.wt-academy-icon{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border:1px solid rgba(218,170,66,.50);
  border-radius:50%;
  color:var(--wt-gold-light);
  background:rgba(218,170,66,.055);
  font-size:26px;
}

.wt-academy-card h3{
  margin:0 0 10px;
  color:var(--wt-gold-light);
  font-family:Georgia,"Times New Roman",serif;
  font-size:21px;
}

.wt-academy-card p{
  margin:0;
  color:var(--wt-muted);
  font-size:14px;
  line-height:1.64;
}

.wt-academy-status{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 24px;
  border:1px solid rgba(218,170,66,.36);
  border-radius:16px;
  background:rgba(218,170,66,.035);
}

.wt-academy-status strong{
  color:var(--wt-gold-light);
}

.wt-academy-status span{
  color:var(--wt-muted);
  font-size:13px;
}

@media(max-width:1000px){
  .wt-academy-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:620px){
  .wt-academy-grid{grid-template-columns:1fr}
  .wt-academy-status{align-items:flex-start;flex-direction:column}
}
