/* --- Lưới Icon Tùy Chỉnh --- */
.aho-icon-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    text-align: center;
}

.aho-icon-item {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aho-icon-item .icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aho-icon-item:hover .icon-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.aho-icon-item .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aho-icon-item .icon-label {
    font-size: 14px;
    font-weight: 500;
}