/* ========== Other News ========== */

.other-news { background:#fafafa; padding:6rem 0; border-top:1px solid #f5f5f5; }
.other-news .header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:3rem; }
.other-news .label { font-size:10px; font-weight:700; letter-spacing:0.4em; text-transform:uppercase; color:#a3a3a3; display:block; margin-bottom:0.5rem; }
.other-news .title {font-size:clamp(1.8rem,4vw,3rem);font-weight: 600; text-transform:uppercase; letter-spacing:-0.03em; color:#171717; }
.other-news .view-all { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.15em; display:flex; align-items:center; gap:0.5rem; padding-bottom:0.25rem; border-bottom:1px solid #000; transition:all 0.3s; }
.other-news .view-all:hover { gap:1rem; }
.other-news .view-all svg { width:14px; height:14px; }
.other-news .view-all i{font-size:14px;}

.other-news .grid { display:grid; grid-template-columns:1fr; gap:3rem; }
.other-news .item { cursor:pointer; }
.other-news .item .thumb {display:block; aspect-ratio:16/10; overflow:hidden; margin-bottom:1.5rem; background:#e5e5e5; }
.other-news .item .thumb img { width:100%; height:100%; object-fit:cover; transition:all 0.7s; }
.other-news .item h4 {font-size: 1.125rem;font-weight:700; text-transform:uppercase; line-height:1.35; margin-bottom:0.75rem; transition:color 0.3s; color:#171717; }
.other-news .item h4 a{color:inherit}
.other-news .item p { font-size:0.875rem; color:#737373; line-height:1.6; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

.other-news .item:hover .thumb img { transform:scale(1.05); }
.other-news .citem:hover h4 { color:#737373; }

@media(min-width:768px) { 
.other-news .grid {grid-template-columns:repeat(3,1fr); } 
}

@media screen and (max-width:768px){
.other-news{padding:3rem 0;}
}
