/* =========================
   ACKG ACTIVITES - INDEPENDENT
========================= */

.ackActShell{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:24px;
  align-items:start;
  margin-top:24px;
}

.ackActLeft{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.ackActCard{
  width:100%;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(15,23,42,.06);
  cursor:pointer;
  padding:0;
  text-align:left;
  transition:all .18s ease;
}

.ackActCard:hover,
.ackActCard.active{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(15,23,42,.10);
  border-color:rgba(37,99,235,.18);
}

.ackActCardMedia{
  width:100%;
  height:150px;
  background:#e5e7eb;
  overflow:hidden;
}

.ackActCardMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ackActCardBody{
  min-height:150px;
  padding:16px 18px 14px;
  display:flex;
  flex-direction:column;
}

.ackActCardTitle{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.25;
  color:#0f172a;
}

.ackActCardExcerpt{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#64748b;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.ackActCardMore{
  margin-top:auto;
  align-self:flex-end;
  font-size:14px;
  font-weight:700;
  color:#1d4ed8;
}

.ackActRight{
  min-width:0;
}

.ackActPanel{
  display:none;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(15,23,42,.07);
}

.ackActPanel.active{
  display:block;
}

.ackActHero{
  width:100%;
  height:340px;
  overflow:hidden;
  background:#e5e7eb;
}

.ackActHero img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ackActContent{
  padding:28px;
}

.ackActContentTitle{
  margin:0 0 16px;
  font-size:34px;
  line-height:1.15;
  color:#0f172a;
}

.ackActContentBody{
  font-size:17px;
  line-height:1.8;
  color:#1f2937;
}

.ackActContentBody hr{
  border:none;
  height:1px;
  background:rgba(15,23,42,.08);
  margin:34px 0;
}

.ackActContentBody .courseInfoGrid,
.ackActContentBody .activitiesMainBlocks{
  margin-top:18px;
}

.ackActContentBody .courseInfoCard,
.ackActContentBody .activitiesMainBlock{
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.06);
  border-radius:20px;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

@media (max-width:1100px){
  .ackActShell{
    grid-template-columns:320px minmax(0,1fr);
  }
}

@media (max-width:900px){
  .ackActShell{
    grid-template-columns:1fr;
  }

  .ackActHero{
    height:240px;
  }

  .ackActContent{
    padding:20px;
  }

  .ackActContentTitle{
    font-size:28px;
  }

  .ackActContentBody{
    font-size:16px;
  }
}