/* Guides Page Styles */
.guides-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    background: url('../images/section_bg.png') center center / cover;
    background-attachment: scroll;
    position: relative;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.guide-card {
    background: var(--background-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--glow-gold);
}

.guide-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.guide-card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-card-title {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.guide-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-card-title a:hover {
    color: var(--primary-color);
}

.guide-card-excerpt {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    flex: 1;
}

.guide-card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.guide-card-link:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


