.guides-hero {
    padding: 140px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guides-hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.guides-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.guides-hero p {
    font-size: 16px;
    color: #555;
    position: relative;
    z-index: 1;
}

.guides-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.guides-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.guide-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    background: rgba(220, 38, 38, 0.04);
    transform: translateY(-2px);
}

.guide-icon {
    width: 52px;
    height: 52px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 20px;
    flex-shrink: 0;
}

.guide-info {
    flex: 1;
}

.guide-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.guide-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.guide-arrow {
    color: #444;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.guide-card:hover .guide-arrow {
    color: #dc2626;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .guides-hero {
        padding: 120px 24px 40px;
    }

    .guides-hero h1 {
        font-size: 32px;
    }

    .guides-content {
        padding: 0 24px 60px;
    }

    .guide-card {
        padding: 20px;
    }

    .guide-arrow {
        display: none;
    }
}
