﻿/* -------------------------- Inizio DESIGNER -------------------------- */
.side-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    border-left: 6px solid #d00;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.side-card-icon {
    background: #f3f3f3;
    color: #d00;
    font-size: 28px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.side-card-content h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.side-card-content p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #444;
}

.side-card-link {
    color: #d00;
    font-weight: 600;
    text-decoration: none;
}

    .side-card-link:hover {
        text-decoration: underline;
    }

.side-card-link-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #d00;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}

    .side-card-link-btn:hover {
        text-decoration: underline;
        color: #b00;
    }
/* -------------------------- Fine DESIGNER -------------------------- */