/* --- Page Layout --- */
        .page-container { flex-grow: 1; }
        .content-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
        }
        .content-section h2 {
            font-size: 3rem;
            margin-bottom: 4rem;
            font-weight: 400;
            color: var(--primary-color);
            text-align: center;
        }
        .post-image {
            width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 2rem;
        }
        .content-section h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 400;
            color: var(--primary-color);
        }
        .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #7a7373;
        }
        /* --- Footer --- */
        .main-footer {
            padding: 3rem 5%;
            background-color: var(--surface-color);
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .footer-socials {
            display: flex;
            gap: 2rem;
        }
        .footer-socials a {
            color: var(--text-color);
            transition: transform 0.3s ease, color 0.3s ease;
            display: inline-block;
        }
        .footer-socials a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .footer-socials i { font-size: 24px; }
        .footer-copyright { font-size: 0.9rem; opacity: 0.8; }
        /* --- Responsive --- */
        @media (min-width: 769px) {
            .page-container { padding-top: 80px; }
            .main-header {
                background-color: var(--nav-bg);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid var(--border-color);
            }
        }
        @media (max-width: 768px) {
            .page-container { padding-top: 80px; }
            .desktop-nav-links { display: none; }
            .mobile-nav-toggle { display: block; }
            .main-header {
                 padding: 0 5%;
                 background-color: transparent;
                 border-bottom: none;
                 backdrop-filter: none;
            }
        }