/*
Theme Name: Cosmic Curiosity
Description: Custom Magazine Layout
Version: 1.1
*/

* { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; background-color: #f4f6f8; margin: 0; line-height: 1.6; }
a { text-decoration: none; color: #1a56db; }
img { max-width: 100%; height: auto; display: block; border-radius: 6px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.custom-site-header { padding: 30px 0; border-bottom: 3px solid #f59e0b; }
.header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.site-title { margin: 0; font-size: 2.5rem; font-weight: 800; }
.site-description { margin: 0; opacity: 0.8; }
.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; font-weight: bold; text-transform: uppercase; }

/* Front Page Layout */
.front-page-layout { padding: 40px 0; }
.layout-grid { display: flex; gap: 40px; align-items: flex-start; }
.main-column { flex: 2; }
.sidebar-column { flex: 1; display: flex; flex-direction: column; gap: 30px; }

.section-title { border-bottom: 2px solid #1a56db; padding-bottom: 10px; margin-top: 0; font-weight: 800; text-transform: uppercase; color: #1f2937; }

/* 8 Post Grid */
.eight-post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.grid-post { background: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.grid-post-image { margin-bottom: 15px; }
.grid-post-image img { width: 100%; height: 200px; object-fit: cover; }
.grid-post-title { font-size: 1.1rem; margin: 0; line-height: 1.4; }
.grid-post-title a { color: #1f2937; }

/* Sidebar Boxes */
.sidebar-box { background: #fff; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); overflow: hidden; }
.box-title { background: #111827; color: #fff; margin: 0; padding: 15px; font-size: 1rem; text-transform: uppercase; }
.sidebar-list { list-style: none; margin: 0; padding: 0; }
.sidebar-list li { border-bottom: 1px solid #f3f4f6; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { display: block; padding: 12px 15px; color: #4b5563; font-weight: 600; }
.sidebar-list a:hover { background: #f9fafb; color: #1a56db; }

/* Footer */
.custom-site-footer { padding: 40px 0; text-align: center; border-top: 3px solid #f59e0b; margin-top: 40px; }
.footer-links { margin-bottom: 15px; font-weight: bold; }
.footer-links a { margin: 0 10px; }
.footer-copyright { margin: 0; font-size: 0.9rem; opacity: 0.8; }

@media (max-width: 900px) {
    .layout-grid { flex-direction: column; }
    .eight-post-grid { grid-template-columns: 1fr; }
}