
/* VIDEO CARDS FINAL — isolated to .atv-video-page only */
.atv-video-page .atv-video-content-section{
  padding:48px 0 64px;
}
.atv-video-page .atv-video-content-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}
.atv-video-page .atv-video-content-head h2{
  margin:4px 0 0;
  color:#071f3b;
  font-size:clamp(28px,2.3vw,38px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.035em;
}
.atv-video-page .atv-video-content-head > p{
  margin:0 0 5px;
  color:#60758e;
  font-size:13px;
  font-weight:700;
}
.atv-video-page .atv-video-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}
.atv-video-page .atv-video-card{
  min-width:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #dbe5ee;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(7,31,59,.08);
  transition:transform .2s ease,box-shadow .2s ease;
}
.atv-video-page .atv-video-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(7,31,59,.12);
}
.atv-video-page .atv-video-media{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#061b31;
}
.atv-video-page .atv-video-media iframe,
.atv-video-page .atv-video-poster{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.atv-video-page .atv-video-poster{
  display:block;
  padding:0;
  margin:0;
  cursor:pointer;
  appearance:none;
  background:#061b31;
}
.atv-video-page .atv-video-poster img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .28s ease;
}
.atv-video-page .atv-video-poster::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(3,18,34,.28),rgba(3,18,34,.02) 55%);
}
.atv-video-page .atv-video-card:hover .atv-video-poster img{
  transform:scale(1.025);
}
.atv-video-page .atv-video-play{
  position:absolute;
  z-index:3;
  left:50%;
  top:50%;
  width:58px;
  height:58px;
  transform:translate(-50%,-50%);
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.78);
  border-radius:50%;
  color:#fff;
  background:rgba(3,24,43,.66);
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}
.atv-video-page .atv-video-play svg{
  width:28px;
  height:28px;
  fill:currentColor;
}
.atv-video-page .atv-video-badge{
  position:absolute;
  z-index:4;
  top:12px;
  left:12px;
  right:auto;
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.95);
  color:#007f86;
  font-size:10px;
  line-height:1;
  font-weight:800;
  letter-spacing:.025em;
  text-transform:uppercase;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.atv-video-page .atv-video-content{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:17px 16px 19px;
}
.atv-video-page .atv-video-meta{
  display:flex;
  gap:6px;
  align-items:center;
  margin:0 0 9px;
  color:#008d9a;
  font-size:10px;
  line-height:1.25;
  font-weight:800;
  letter-spacing:.025em;
  text-transform:uppercase;
}
.atv-video-page .atv-video-content h2{
  margin:0 0 9px;
  color:#071f3b;
  font-size:16px;
  line-height:1.3;
  font-weight:800;
  letter-spacing:-.015em;
}
.atv-video-page .atv-video-content p{
  margin:0;
  color:#667a91;
  font-size:13px;
  line-height:1.6;
}
@media(max-width:1100px){
  .atv-video-page .atv-video-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:640px){
  .atv-video-page .atv-video-content-section{padding:34px 0 46px;}
  .atv-video-page .atv-video-content-head{align-items:flex-start;flex-direction:column;gap:8px;}
  .atv-video-page .atv-video-grid{grid-template-columns:1fr;gap:17px;}
  .atv-video-page .atv-video-card{border-radius:16px;}
}
