/* Card Links Block — hero-quick-links style */

.card-links-block {
    margin: 20px 0;
    width: 100%;
}

/* 2-column grid on mobile */
.card-links-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Individual card */
.quick-link-card {
    background: linear-gradient(145deg, var(--bg-surface, #151A23) 0%, rgba(21, 26, 35, 0.3) 100%);
    border: 1px solid var(--border-color, rgba(255,255,255,0.08));
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

/* Glass shine animation */
.quick-link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color, #00E574);
    box-shadow: 0 10px 20px rgba(0, 229, 116, 0.08);
}

.quick-link-card:hover::after {
    left: 200%;
}

/* Icon box */
.quick-link-card .card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: rgba(0, 229, 116, 0.1);
    color: var(--accent-color, #00E574);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Text wrapper */
.quick-link-card .card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.quick-link-card .card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main, #fff);
    line-height: 1.3;
}

.quick-link-card .card-desc {
    font-size: 11px;
    color: var(--text-muted, rgba(255,255,255,0.5));
    margin-top: 2px;
    line-height: 1.4;
}

/* Tablet: 3-column grid */
@media (min-width: 576px) {
    .card-links-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop: 4-column grid */
@media (min-width: 768px) {
    .card-links-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .quick-link-card {
        padding: 14px;
    }

    .quick-link-card .card-title {
        font-size: 15px;
    }

    .quick-link-card .card-desc {
        font-size: 12px;
    }
}
