.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0.5rem;
    max-width: 480px;
    margin: 0 auto;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.icon-wrapper {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.grid-item:hover .icon-wrapper {
    transform: translateY(-2px);
}

.icon-wrapper svg {
    width: 25.8px;
    height: 26.5px;
}

.size-6 {
    width: 25.8px;
    height: 26.5px;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.text-content p {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quick-access-grid {
        gap: 1rem;
        padding: 0.3rem;
    }
    
    .icon-wrapper svg {
        width: 25.8px;
        height: 26.5px;
    }
    
    .size-6 {
        width: 25.8px;
        height: 26.5px;
    }

    .text-content h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quick-access-grid {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .icon-wrapper svg {
        width: 32px;
        height: 32px;
    }
    
    .size-6 {
        width: 32px;
        height: 32px;
    }
    
    .text-content h3 {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .icon-wrapper {
        margin-bottom: 0.25rem;
    }
} 