.guide-container {
    max-width: 760px;
    margin: 0 auto;
}

.guide-container .breadcrumbs {
    max-width: none;
    padding: 0 0 16px;
}

.guide-header {
    margin-bottom: 40px;
}

.guide-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.guide-answer {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-700);
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 0;
}

.guide-answer a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.guide-answer a:hover {
    text-decoration: underline;
}

.guide-section {
    margin-bottom: 36px;
}

.guide-section h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.guide-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.guide-section p:last-child {
    margin-bottom: 0;
}

.guide-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.guide-section a:hover {
    text-decoration: underline;
}

/* Low-key legal fine print pinned at the very bottom of a guide. Smaller and
   muted so it reads as a footnote, not a content section. */
.guide-disclaimer {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-400);
}

.guide-disclaimer a {
    color: var(--gray-500);
    text-decoration: underline;
}

.guide-steps {
    padding-left: 24px;
    margin: 0;
}

.guide-steps li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.guide-steps li strong {
    color: var(--gray-800);
}

.guide-examples {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.guide-examples li a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gray-50);
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.15s ease;
}

.guide-examples li a:hover {
    background: var(--gray-100);
    text-decoration: none;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-features li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 2px solid var(--gray-200);
}

.guide-features li strong {
    color: var(--gray-800);
}

/* Guides index */
.guides-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-card {
    display: block;
    padding: 24px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.guide-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

.guide-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 8px;
}

.guide-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

/* Callout boxes inside guide sections — a neutral note and a warning variant.
   Warning palette matches the site's .message-warning (#fff8e1 / #f57f17). */
.callout {
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 6px;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-700);
}

.callout-warning {
    background: #fff8e1;
    border-color: #ffe082;
    border-left-color: #f57f17;
    color: #7a4f01;
}

.callout strong {
    color: var(--gray-900);
}

.callout-warning strong {
    color: #b35400;
}

.callout ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.callout li {
    margin-bottom: 6px;
}

.callout li:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .guide-title {
        font-size: 26px;
    }

    .guide-answer {
        font-size: 16px;
    }

    .guide-section h2 {
        font-size: 20px;
    }
}
