/* css/newsstyle.css */
.news-container { max-width: 800px; margin: 0 auto; }
.glass-panel { background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.news-header { margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.news-date { display: inline-block; font-size: 0.85rem; color: #888; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.news-title { font-size: 1.8rem; margin: 0; color: #fff; }
.news-body { color: #ccc; line-height: 1.7; font-size: 1.05rem; }
.news-body p { margin-bottom: 1.5rem; }
.devlog-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin: 25px 0; }
.devlog-img-wrapper { position: relative; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.devlog-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.devlog-img:hover { transform: scale(1.03); }
.img-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.7); color: #fff; font-size: 0.8rem; padding: 5px 10px; text-align: center; }
.news-footer-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; background: rgba(255, 255, 255, 0.05); padding: 8px 20px 8px 8px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.1); text-decoration: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); width: fit-content; }
.news-footer-link:hover { transform: scale(1.05); background: rgba(255, 255, 255, 0.1); border-color: #4cd964; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.2); }
.author-info { display: flex; flex-direction: column; line-height: 1.2; }
.author-label { font-size: 0.7rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.author-name { font-size: 0.95rem; color: #fff; font-weight: bold; }
@media (max-width: 600px) { .news-title { font-size: 1.4rem; } .devlog-gallery { grid-template-columns: 1fr; } }