/* Extracted page styles — guides-666c019b.css (v110) */
.guides-hero {
            background: linear-gradient(135deg, #4A1F40, #6B2D5B);
            color: white;
            padding: 4rem 0 3rem;
            text-align: center;
        }

        .guides-hero h1 {
            color: white;
            margin-bottom: 0.5rem;
        }

        .guides-hero p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            padding: 3rem 0;
        }

        .guide-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .guide-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }

        .guide-card__img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .guide-card__body {
            padding: 1.25rem;
        }

        .guide-card__title {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            color: #1A1A2E;
        }

        .guide-card__meta {
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .guide-card__tag {
            display: inline-block;
            background: linear-gradient(135deg, #6B2D5B, #8B3D7B);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 0.5rem;
        }

        .filter-bar {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .filter-btn {
            padding: 0.5rem 1rem;
            border-radius: 25px;
            border: 2px solid var(--color-border);
            background: white;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--color-primary);
            color: white;
            border-color: var(--color-primary);
        }

        @media (max-width: 768px) {
            .guides-grid {
                grid-template-columns: 1fr;
            }

            .guide-card__img {
                height: 180px;
            }
        }
