.representations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.representation-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.representation-card:hover {
    transform: translateY(-5px);
}

.representation-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.representation-card .org {
    color: #3498db;
    font-weight: 500;
}

.description {
    margin-top: 10px;
    color: #555;
}

.representation-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.representation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.representation-card:hover img {
    transform: scale(1.1);
}
