/* Guide article page — extends styles.css, does not modify it */

.guide-header {
    padding: 132px 0 56px;
    text-align: left;
}

.guide-header h1 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    max-width: 760px;
}

.guide-header p {
    max-width: 640px;
}

.guide-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 18px;
}

.guide-breadcrumb a {
    color: white;
    text-decoration: underline;
}

.guide-section {
    padding: 70px 0 100px;
    background: var(--surface);
}

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

.guide-article h2 {
    font-size: 1.6rem;
    color: var(--brand);
    margin: 42px 0 16px;
}

.guide-article h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin: 30px 0 14px;
}

.guide-article p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.guide-lead {
    font-size: 1.15rem;
    color: var(--text);
}

.guide-list {
    margin: 0 0 24px 20px;
    padding: 0;
}

.guide-list li {
    font-size: 1.03rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.guide-screenshot {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 28px auto;
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(20, 32, 51, 0.12);
    border: 1px solid var(--border);
}

.guide-related {
    margin-top: 56px;
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.guide-related h3 {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

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

.guide-related li {
    margin-bottom: 8px;
}

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

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

.guide-cta {
    margin-top: 56px;
    padding: 36px 32px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 5px solid var(--accent);
    text-align: center;
}

.guide-cta h3 {
    font-size: 1.5rem;
    color: var(--brand);
    margin-bottom: 10px;
}

.guide-cta p {
    margin-bottom: 26px;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease;
}

.store-button i {
    font-size: 1.3rem;
}

.store-button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    color: white;
}

.store-button-android {
    background: var(--accent);
}

.store-button-android:hover {
    background: var(--accent-hover);
}

@media (max-width: 600px) {
    .guide-header {
        padding: 118px 0 44px;
    }
    .guide-cta {
        padding: 28px 18px;
    }
    .store-buttons {
        flex-direction: column;
    }
    .store-button {
        justify-content: center;
    }
}
