.card {
    max-width: 40vw !important;
}

#card-content {
    display: flex;
    gap: 1em;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

figure {
    width: 100%;
    margin: auto;
    margin-top: 1em;
}

figcaption {
    margin: auto;
    font-size: 0.75rem;
    width: fit-content;
}

#vm-list {
    text-decoration: none;
    list-style-type: none;
    padding: 0;
}

.collapse-list > input[type="checkbox"] {
    position: absolute;
    left: -100vw;
}

.collapse-list .collapse-list-content {
    overflow-y: hidden;
    height: 0;
    transition: height 0.3s ease;
}

.collapse-list > input[type="checkbox"]:checked ~ .collapse-list-content {
    height: auto;
    overflow: visible;
}

.collapse-list {
    margin-bottom: 1em;
}

.collapse-list label {
    cursor: pointer;
    font-weight: normal;
    padding: 15px;
    margin: 0;
    font-size: 1.125em;
    line-height: 1.2em;
    border-radius: 1rem;
    display: block;
}

.collapse-list p:last-child {
    margin-bottom: 0;
}

#container-list li {
    padding-bottom: 1em;
}