/* ============================================
   BLOG POST 16 — The END Project
   ============================================ */
:root {
    --color-end-accent: #c5a059;
    --color-end-bg-alt: #1a1a1a;
    --gradient-end: linear-gradient(135deg, #c5a059 0%, #3d2b1f 100%);
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.hero-header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--color-end-accent);
    padding-bottom: 40px;
}

.post-section {
    background: rgba(197, 160, 89, 0.02);
    border-left: 4px solid var(--color-end-accent);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    backdrop-filter: blur(5px);
}

.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-end-accent);
    font-weight: bold;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

blockquote {
    font-family: 'Georgia', serif;
    font-style: italic;
    border-left: 2px solid var(--color-end-accent);
    padding-left: 20px;
    margin: 30px 0;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

.artifact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.artifact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 20px;
    border-radius: var(--radius-md);
}

.artifact-title {
    color: var(--color-end-accent);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.divider {
    height: 1px;
    background: var(--gradient-end);
    margin: 60px 0;
    opacity: 0.3;
}

.back-nav {
    margin-top: 50px;
    text-align: center;
}

.post-meta {
    color: var(--color-end-accent);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

h1,
h2,
h3 {
    margin-top: 0;
    background: var(--gradient-end);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conclusion-box {
    background: var(--gradient-end);
    padding: 2px;
    border-radius: var(--radius-lg);
    margin-top: 60px;
}

.conclusion-content {
    background: var(--color-bg);
    padding: 40px;
    border-radius: calc(var(--radius-lg) - 2px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 30px auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-end-accent);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
