/* Template 7: Slate Gray Minimalist */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #fafafa;
    --surface: #ffffff;
    --text: #2f3640;
    --text-muted: #747d8c;
    --accent: #57606f;
    --border: #dfe4ea;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

header {
    padding: 0 0 2rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

header h1 {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.5px;
}

header a {
    color: var(--accent);
    text-decoration: none;
}

.sidebar {
    background: var(--surface);
    padding: 1.25rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.sidebar h2 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 0.5rem 0;
}

.sidebar a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
}

.sidebar a:hover {
    color: var(--accent);
}

main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

article {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

article:last-child {
    border-bottom: none;
}

article h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text);
}

article h2 a {
    color: var(--text);
    text-decoration: none;
}

article h2 a:hover {
    color: var(--accent);
}

.meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

article p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.excerpt .business-info {
    background: var(--surface);
    border-left: 2px solid var(--accent);
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
}

.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;
    font-size: 0.9rem;
}

.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.8rem;
}

/* Post page */
.post-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.post-container header {
    padding: 0 0 2rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    text-decoration: underline;
}

article h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content {
    margin-top: 2rem;
}

.content p {
    margin-bottom: 1.5rem;
}

.content h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.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;
    color: var(--text-muted);
}

.business-details {
    list-style: none;
    padding: 0;
}

.gmb-embed {
    margin: 2rem 0;
}

.gmb-embed iframe {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border);
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .container, .post-container {
        padding: 2rem 1rem;
    }
}
