/* Beginner Guide — blog-style layout */

.guide-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
    line-height: 1.7;
    color: #2c2c2c;
}

.guide-attribution {
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #666;
}
.guide-attribution strong { color: #444; }

.guide-vintage-notice {
    background: #fff8e1;
    border-left: 4px solid #f5d77a;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.88rem;
    color: #6d5e10;
}

/* Table of Contents */
.guide-toc {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
}
.guide-toc h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #444;
}
.guide-toc ol {
    margin: 0;
    padding-left: 1.25rem;
}
.guide-toc li {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}
.guide-toc a {
    color: #4a6fa5;
    text-decoration: none;
}
.guide-toc a:hover { text-decoration: underline; }

/* Sections */
.guide-section {
    margin-bottom: 2.5rem;
}
.guide-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    border-left: 4px solid #f5d77a;
    padding-left: 0.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}
.guide-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #333;
}
.guide-section p {
    margin-bottom: 0.9rem;
}

/* Tip cards */
.guide-tip-card {
    display: flex;
    gap: 0.85rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.guide-tip-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4a6fa5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 2px;
}
.guide-tip-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: #1a1a1a;
}
.guide-tip-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.guide-tip-card p:last-child { margin-bottom: 0; }

/* Images */
.guide-img-wrap {
    text-align: center;
    margin: 0.75rem 0 1rem;
}
.guide-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.guide-img-caption {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.35rem;
}

/* Strategy cards (mid game) */
.guide-strategy-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    height: 100%;
}
.guide-strategy-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
}
.guide-strategy-card p {
    font-size: 0.93rem;
    margin-bottom: 0.5rem;
}
.guide-strategy-card p:last-child { margin-bottom: 0; }
.guide-strategy-card .guide-manager-list {
    font-size: 0.88rem;
    color: #555;
    padding-left: 1rem;
    margin: 0.4rem 0 0;
}

/* Callout boxes */
.guide-callout {
    background: #eef3ff;
    border-left: 4px solid #4a6fa5;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    font-size: 0.93rem;
}

/* Cross-links to other tabs */
.guide-cross-link {
    color: #4a6fa5;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #d0ddf0;
    transition: border-color 0.15s;
}
.guide-cross-link:hover {
    border-bottom-color: #4a6fa5;
    color: #355a8c;
}

/* Research priority colors */
.guide-priority-red { color: #e74c3c; font-weight: 600; }
.guide-priority-green { color: #27ae60; font-weight: 600; }
.guide-priority-blue { color: #2980b9; font-weight: 600; }

/* Responsive */
@media (max-width: 767.98px) {
    .guide-container { padding: 1rem 0.75rem 2rem; }
    .guide-section h2 { font-size: 1.2rem; }
    .guide-section h3 { font-size: 1.05rem; }
    .guide-tip-card { flex-direction: column; gap: 0.5rem; }
    .guide-tip-number { width: 28px; height: 28px; font-size: 0.8rem; }
    .guide-img { max-width: 320px; }
}
@media (max-width: 575.98px) {
    .guide-container { padding: 0.75rem 0.5rem 1.5rem; }
    .guide-section h2 { font-size: 1.1rem; }
    .guide-vintage-notice { font-size: 0.82rem; padding: 0.6rem 0.75rem; }
}
