.renders {
    width: 300px;
    aspect-ratio: 1;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card {
    width: 300px;
    height: auto;
    background-color: var(--md-sys-color-surface-container-highest);
    color: var(--md-sys-color-on-surface);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    box-sizing: border-box;
}

.card img {
    width: 100%;
    background: var(--md-sys-color-secondary-container);
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.6s ease-in;
}

.card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 6px;
}

.card h2,
.card h3,
.card p {
    margin: 0;
}

.card-content h3 {
    font-family: "Lato", sans-serif;
    font-size: 1.3rem;
    margin-block-end: 6px;
}

.card h3>.material-symbols-rounded {
    font-size: 16px;
    transform: translateX(0) translateY(0);
    transition: all 0.3s ease-in-out;
}

.chips-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
}

.card .chip {
    display: inline-flex;
    align-items: center;
    height: 32px;
    background-color: transparent;
    color: var(--md-sys-color-on-surface);
    border: 1px solid var(--md-sys-color-outline);
    border-radius: 8px;
    font-size: 12px;
    font-family: "Lato", sans-serif;
    gap: 4px;
    cursor: pointer;
    padding: 1px 5px;
}

.card .chip img {
    width: 30px;
    height: 30px;
    border-radius: 2px;
}

.card:hover {
    background-color: var(--md-sys-color-secondary-container);
    border-radius: 28px;
    transition: all 0.3s ease-in-out;
}

.card:hover img {
    background-color: var(--md-sys-color-surface-container-highest);
    transition: all 0.3s ease-in;
}

.card:hover h3>.material-symbols-rounded {
    transform: translateX(3px) translateY(-3px);
    transition: all 0.3s ease-in-out;
}

.ui-card {
    width: 550px;
    flex-direction: row;
}

.ui-card img {
    width: 50%;
    aspect-ratio: 1/1;
}

/* Mobiles */
@media (width < 768px) {

    .renders,
    .card,
    .card-img {
        width: 100%;
    }

    .ui-card {
        flex-direction: column;
    }
}