/* quick-links.css - Modular Quick Links (BEM) */
@charset "UTF-8";

.quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.quick-links__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--primary-color, #1e7e34);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease 0.4s backwards;
}

.quick-links__btn:hover {
    background: #155724;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.quick-links__btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Responsive */
@media (max-width: 600px) {
    .quick-links {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .quick-links__btn {
        justify-content: center;
        width: 100%;
    }
}