/* ==========================================================================
   Single Post Styles
   ========================================================================== */

.single-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--color-white);
}

/* ===== Header ===== */
.entry-header {
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 20px;
}

.entry-title {
    font-size: 2.2em;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.entry-meta {
    color: #666;
    font-size: 1em;
}

.entry-date {
    font-weight: 500;
}

/* ===== Content ===== */
.entry-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 50px;
}

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

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--color-primary);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
}

/* ===== Back Button ===== */
.back-to-news {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.back-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.back-button:hover {
    background: #004225;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 87, 49, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .single-post-container {
        padding: 20px 15px;
    }

    .entry-title {
        font-size: 1.8em;
    }

    .entry-content {
        font-size: 1em;
    }
}
