@charset "utf-8";

/* 새글 스킨 (latest) */
.news-cards-wrap {display:flex;gap:20px;background:rgba(0,0,0,0.15);backdrop-filter:blur(14px);padding:20px;border-radius:10px;}
.news-cards-wrap .news-title a {color:rgba(255,255,255,0.5);font-size:1.8rem;font-weight:600;transition:color .3s ease;}
.news-cards-wrap .news-title a:hover {color:#fff}
.news-cards {display:flex;flex-direction:column;gap:20px;}
.news-card {max-width:420px;display:flex;gap:30px;}
.news-card a {color:#fff;font-size:1.8rem;line-height:1.4;}
.news-card a img {transition:transform .15s ease}
.news-card:hover a img {transform:scale(1.1)}
.card-text {display:flex;flex-direction:column;gap:10px;}
.card-img {}
.card-img img {width:125px;aspect-ratio:3/2;object-fit:cover;border-radius:5px;}
.card-info {}
.card-date {color:rgba(255,255,255,0.6);font-size:1.3rem}
.card-more {}

@media(max-width:768px){
    .news-cards-wrap {flex-direction:column;}
    .news-card {gap:20px;}
    .news-card a {font-size:1.6rem;}
    .card-img img {width:100px;}
}