/* Publishing Guides Page Specific Styles */

.guides-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.guide-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guide-card > p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-topics {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.guide-topics li {
    color: #2c3e50;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.guide-topics i {
    color: #d4af37;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.guide-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guide-card {
        padding: 2rem;
    }
}