.ataf-videos-section{
    --ataf-primary:#0b63f6;
    --ataf-dark:#071537;
    --ataf-muted:#52617a;
    background:linear-gradient(180deg,#f6faff 0%,#ffffff 100%);
    padding:78px 20px;
    font-family:inherit;
}
.ataf-videos-container{
    max-width:1280px;
    margin:0 auto;
}
.ataf-videos-head{
    max-width:720px;
    margin:0 auto 34px;
    text-align:center;
}
.ataf-videos-eyebrow{
    display:block;
    color:var(--ataf-primary);
    font-size:13px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
    margin-bottom:10px;
}
.ataf-videos-head h2{
    color:var(--ataf-dark);
    font-size:clamp(32px,3.2vw,48px);
    line-height:1.08;
    font-weight:900;
    margin:0 0 14px;
}
.ataf-videos-head p{
    color:var(--ataf-muted);
    font-size:18px;
    line-height:1.7;
    margin:0;
}
.ataf-video-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}
.ataf-video-card{
    background:#fff;
    border:1px solid #dce7f7;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(7,21,55,.08);
    display:flex;
    flex-direction:column;
    min-height:100%;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ataf-video-card:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 55px rgba(7,21,55,.12);
    border-color:rgba(11,99,246,.28);
}
.ataf-video-media{
    position:relative;
    aspect-ratio:16/9;
    background:#eaf1fb;
    overflow:hidden;
}
.ataf-video-media iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}
.ataf-video-placeholder{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6b7a90;
    font-weight:700;
    background:linear-gradient(135deg,#edf5ff,#ffffff);
}
.ataf-video-content{
    padding:22px 22px 24px;
    display:flex;
    flex-direction:column;
    flex:1;
}
.ataf-video-content h3{
    color:var(--ataf-dark);
    font-size:20px;
    line-height:1.25;
    font-weight:850;
    margin:0 0 10px;
}
.ataf-video-content p{
    color:var(--ataf-muted);
    font-size:15px;
    line-height:1.6;
    margin:0 0 18px;
    flex:1;
}
.ataf-video-link{
    color:var(--ataf-primary);
    font-weight:800;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
}
.ataf-video-link::after{
    content:'→';
    transition:transform .2s ease;
}
.ataf-video-link:hover::after{
    transform:translateX(4px);
}
@media (max-width:1024px){
    .ataf-video-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:700px){
    .ataf-videos-section{padding:56px 16px;}
    .ataf-video-grid{grid-template-columns:1fr;}
    .ataf-videos-head{text-align:left;margin-bottom:24px;}
    .ataf-videos-head p{font-size:16px;}
}
