/* Local Guide Page Styles (AI/Search answer-format guide) */

.guide-hero-section {
    background: var(--gradient-red-black);
    color: var(--white);
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guide-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 20, 60, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.guide-hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.guide-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 34rem;
    margin: 0 auto;
}

.guide-byline {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-intro-section {
    padding: 48px 0 8px;
    background: var(--white);
}

.guide-intro-lead {
    max-width: 46rem;
    margin: 0 auto;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--text-color);
}

.guide-quick-section {
    padding: 32px 0 48px;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.guide-quick-heading {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--pure-black);
}

.guide-body-section {
    padding: 56px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.guide-body {
    max-width: 46rem;
    margin: 0 auto;
}

.guide-qa {
    background: var(--white);
    border-radius: 14px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.guide-qa h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pure-black);
    margin: 0 0 0.85rem;
    line-height: 1.35;
}

.guide-qa p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0 0 0.9rem;
}

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

.guide-qa .guide-answer-lead {
    font-weight: 600;
    color: var(--pure-black);
}

.guide-qa a {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: underline;
}

.guide-qa ul {
    margin: 0 0 0.9rem 1.25rem;
    padding: 0;
}

.guide-qa li {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.guide-related-section {
    padding: 56px 0;
    background: var(--white);
}

.guide-related-heading {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--pure-black);
}

.guide-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.guide-related-card {
    display: block;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(220, 20, 60, 0.12);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.guide-related-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.guide-related-card strong {
    display: block;
    color: var(--primary-red);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.guide-related-card span {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.guide-cta-section {
    background: var(--gradient-red-black);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.guide-cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.guide-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 26px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .guide-hero-title { font-size: 1.9rem; }
    .guide-hero-subtitle { font-size: 1.05rem; }
    .guide-qa { padding: 1.4rem 1.4rem; }
    .guide-qa h2 { font-size: 1.2rem; }
    .guide-cta-title { font-size: 1.7rem; }
}
