@charset "utf-8";

/* latest-news namespace */
.latest-news *{box-sizing:border-box}
.latest-news{padding:70px 20px;font-family:'Noto Sans KR',sans-serif;color:#333;text-align:center}
.latest-news .ln-title{font-size:32px;font-weight:800;margin:0 0 8px}
.latest-news .ln-sub{font-size:15px;color:#777;margin:0 0 40px}
.latest-news .ln-wrap{max-width:1300px;margin:0 auto;display:flex;gap:20px;justify-content:center}
.latest-news .ln-card{position:relative;isolation:isolate;flex:1;overflow:hidden;border-radius:12px;background:#f3f3f3;padding:26px;text-align:left;cursor:pointer;transition:transform .3s ease,box-shadow .3s ease}
.latest-news .ln-card::before{content:"";position:absolute;left:50%;top:50%;width:0%;height:250%;background:#0d47a1;transform:translate(-50%,-50%) rotate(45deg);opacity:0;transition:width .8s ease,opacity .6s ease;z-index:0}
.latest-news .ln-card:hover{transform:translateY(-4px);box-shadow:0 10px 24px rgba(0,0,0,.22)}
.latest-news .ln-card:hover::before{width:300%;opacity:1}
.latest-news .ln-ttl{position:relative;z-index:1;font-size:17px;font-weight:700;margin:0 0 12px}
.latest-news .ln-ttl a{color:#222;text-decoration:none;transition:color .3s}
.latest-news .ln-txt{position:relative;z-index:1;font-size:14px;line-height:1.6;margin:0 0 20px;color:#555;transition:color .3s}
.latest-news .ln-meta{position:relative;z-index:1;display:flex;align-items:center;gap:12px}
.latest-news .ln-date{font-size:13px;color:#999;transition:color .3s}
.latest-news .ln-arrow{margin-left:auto;opacity:0;transform:translateX(-8px);transition:opacity .3s,transform .3s}
.latest-news .ln-arrow svg{display:block;width:26px;height:26px;color:#fff}
.latest-news .ln-card:hover .ln-ttl,
.latest-news .ln-card:hover .ln-ttl a,
.latest-news .ln-card:hover .ln-txt,
.latest-news .ln-card:hover .ln-date{color:#fff}
.latest-news .ln-card:hover .ln-arrow{opacity:1;transform:translateX(0)}
@media (max-width:768px){
  .latest-news{padding:56px 16px}
  .latest-news .ln-wrap{flex-direction:column}
  .latest-news .ln-card{padding:22px}
}
