/*
Theme Name: Vanother Collective Minimal
Author: Custom
Description: A crisp, full-width theme with compact featured images designed for content creators.
Version: 1.0
*/

/* Reset & Core Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.65;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

/* Site Header */
.site-header {
    border-bottom: 1px solid #eaeaea;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.site-title a {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-navigation a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: #000;
}

/* Main Layout - Full Width Container */
.site-main {
    width: 100%;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Compact Featured Image Treatment */
.compact-featured-image {
    width: 100%;
    height: 280px; /* Limits vertical space taken */
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: block;
}

/* Article Styling */
.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2.25rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.entry-meta {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.entry-content {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

/* Video Responsive Container (Perfect for YouTube embeds) */
.entry-content iframe,
.entry-content embed {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 1.5rem 0;
}

/* Site Footer */
.site-footer {
    border-top: 1px solid #eaeaea;
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 4rem;
}
