/*==================================================
 QUICK ACCESS - EQUAL HEIGHT & WIDTH 5-CARD ROW
==================================================*/

#quick-access {
    position: relative;
    margin-top: 20px;
    z-index: 20;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: stretch; /* All cards stretch to identical height */
}

.quick-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 8px;
    text-align: center;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 155px; /* Equal fixed height baseline */
    box-sizing: border-box;
}

.quick-card.ls-accent {
    border-color: rgba(0, 230, 118, 0.4);
    background: rgba(0, 230, 118, 0.05);
}

.quick-card:hover {
    transform: translateY(-6px);
    border-color: #C78C32;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.quick-card.ls-accent:hover {
    border-color: #00E676;
    box-shadow: 0 14px 28px rgba(0, 230, 118, 0.3);
}

.quick-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    line-height: 1;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-card h3 {
    font-size: 1rem;
    margin: 0 0 6px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
}

.quick-card p {
    color: #C7D1DB;
    line-height: 1.3;
    font-size: 0.8rem;
    margin: 0;
}

.hero-share-row {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.hero-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    color: #05101A;
    background: #C78C32;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.hero-share-btn:disabled {
    opacity: 0.7;
    cursor: default;
    transform: none;
}

/* Tablet & Mobile responsive - Equal dimensions across all 5 */
@media (max-width: 992px) {
    .quick-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        align-items: stretch;
    }

    .quick-card {
        padding: 14px 4px;
        border-radius: 14px;
        min-height: 135px;
        height: 135px; /* Locked equal height */
    }

    .quick-icon {
        font-size: 1.6rem;
        margin-bottom: 4px;
        height: 28px;
    }

    .quick-card h3 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .quick-card p {
        font-size: 0.68rem;
    }
}

@media (max-width: 640px) {
    #quick-access {
        margin-top: 14px;
    }

    .quick-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
        align-items: stretch;
    }

    .quick-card {
        padding: 8px 3px;
        border-radius: 10px;
        min-height: 115px;
        height: 115px; /* Locked 100% equal height on mobile */
        box-sizing: border-box;
        justify-content: space-between;
    }

    .quick-icon {
        font-size: 1.3rem;
        margin-bottom: 2px;
        height: 24px;
    }

    .quick-card h3 {
        font-size: 0.64rem;
        letter-spacing: 0;
        margin-bottom: 2px;
        line-height: 1.15;
        min-height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .quick-card p {
        font-size: 0.54rem;
        line-height: 1.1;
        min-height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .quick-grid {
        gap: 3px;
    }

    .quick-card {
        padding: 6px 2px;
        min-height: 110px;
        height: 110px;
    }

    .quick-icon {
        font-size: 1.15rem;
        height: 20px;
    }

    .quick-card h3 {
        font-size: 0.58rem;
    }

    .quick-card p {
        font-size: 0.5rem;
    }
}
