* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --surface: #f8f9fa;
    --border: #dee2e6;
    --text: #333333;
    --text-muted: #6c757d;
    --accent: #0066cc;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

header {
    grid-column: 1 / -1;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

header a {
    color: var(--text);
    text-decoration: none;
}

header a:hover {
    color: var(--accent);
}

.sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 0.75rem;
}

.sidebar a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.sidebar a:hover {
    color: var(--accent);
}

main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

article {
    background: var(--bg);
    padding: 1.5rem;
    border: none;
}

article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

article h2 a {
    color: var(--text);
    text-decoration: none;
}

article h2 a:hover {
    color: var(--accent);
}

.meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

article p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

article p:last-child {
    margin-bottom: 0;
}

/* Excerpt styles */
.excerpt .business-info {
    background: var(--surface);
    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: 500;
    margin-top: 1rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.excerpt .read-more:hover {
    color: var(--text);
}

.excerpt .categories {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
}

.excerpt .categories .label {
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.excerpt .categories a {
    color: var(--text-muted);
    text-decoration: none;
}

.excerpt .categories a:hover {
    color: var(--accent);
}

/* Post page specific */
.post-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
    display: block;
}

.post-container header {
    margin-bottom: 3rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: var(--accent);
}

article h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.content {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text);
}

.content ul, .content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.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 */
.business-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.business-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.business-details li:last-child {
    border-bottom: none;
}

/* GMB Embed */
.gmb-embed {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.gmb-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* Post footer */
.post-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.post-footer .categories {
    font-size: 0.85rem;
}

.post-footer .categories .label {
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.post-footer .categories a {
    color: var(--text-muted);
    text-decoration: none;
}

.post-footer .categories a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }
    
    header {
        padding: 1rem 0;
    }
    
    .post-container {
        padding: 1rem;
    }
    
    article h1 {
        font-size: 1.75rem;
    }
}

