/* Template 4: Burgundy Professional */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #faf5f5;
    --surface: #ffffff;
    --text: #3e1f1f;
    --text-muted: #6d4c4c;
    --accent: #8b1538;
    --border: #f0d9d9;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    border-bottom: 3px solid var(--accent);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 1px;
}

header a {
    color: var(--accent);
    text-decoration: none;
}

.sidebar {
    background: var(--surface);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(139,21,56,0.08);
}

.sidebar h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.sidebar li:last-child {
    border-bottom: none;
}

.sidebar a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
}

.sidebar a:hover {
    color: var(--accent);
}

main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

article {
    background: var(--surface);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(139,21,56,0.08);
}

article h2 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

article h2 a {
    color: var(--accent);
    text-decoration: none;
}

article h2 a:hover {
    text-decoration: underline;
}

.meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

article p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.excerpt .business-info {
    background: #fef4f6;
    border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}

.excerpt .business-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.excerpt .business-info p:last-child {
    margin-bottom: 0;
}

.excerpt .read-more {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
}

.excerpt .read-more:hover {
    text-decoration: underline;
}

.excerpt .categories {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    font-style: italic;
}

/* Post page */
.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.post-container header {
    border-bottom: 3px solid var(--accent);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent);
    text-decoration: none;
    font-style: italic;
}

.back-link:hover {
    text-decoration: underline;
}

article h1 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--accent);
}

.content {
    margin-top: 2rem;
}

.content p {
    margin-bottom: 1.5rem;
}

.content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
    color: var(--accent);
}

.content ul, .content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.business-details {
    list-style: none;
    padding: 0;
}

.gmb-embed {
    margin: 2rem 0;
}

.gmb-embed iframe {
    width: 100%;
    height: 400px;
    border: 2px solid var(--border);
}

.post-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
}

@media (max-width: 768px) {
    .container, .post-container {
        padding: 1rem;
    }
}
