/* Styles pour le frontend (widget + shortcode) */
.lip-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #800020;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #a00030;
}

.lip-item:hover {
    background: #a00030;
    transform: translateX(5px);
    border-color: #c00040;
}

.lip-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.lip-item span {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.lip-wrap {
    margin: 20px 0;
}

.lip-grid {
    display: grid;
    gap: 15px;
}

.lip-col-1 {
    grid-template-columns: 1fr;
}

.lip-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.lip-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.lip-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.lip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 20px;
    background: #800020;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid #a00030;
}

.lip-card:hover {
    transform: translateY(-5px);
    background: #a00030;
    border-color: #c00040;
}

.lip-card-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.lip-card-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.lip-card-link {
    color: white;
    font-size: 13px;
    opacity: 0.9;
}

.lip-card:hover .lip-card-link {
    text-decoration: underline;
    opacity: 1;
}

@media (max-width: 768px) {
    .lip-col-2,
    .lip-col-3,
    .lip-col-4 {
        grid-template-columns: 1fr;
    }
}


/* Gestion des images d'icônes */
.lip-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.lip-card-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}