.card {
    position: absolute;
    width: 80%;
    aspect-ratio: 10 /16;
    border-radius: 5px;
    box-shadow: inset 0px 0px 7px #ffffff5c;
    color: white;
    border: 1px #7d7d7d solid;
    transform-origin: 50% 200%;
    align-items: stretch;
}

.card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: center/300% no-repeat url(/public/assets/logo-blured.webp);
    border-radius: 4px;
}


.card:last-child:before {
    filter: invert(1) blur(20px);
}

.card .right-button {
    position: absolute;
    bottom: 3%;
    right: 5%;
    background-color: white;
    color: rgb(84, 84, 84);
    padding: 5%;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25%;
    box-shadow: 0 0 7px #0000003b, inset 0 0 10px #ffffff3b;
    font-weight: bold;
}

.card .wish {
    font-size: .7em;
    transform: perspective(1px);
    font-weight: bold;
    color: white;
    text-shadow: 0 0 8px #383d647a;
    flex: 1;
    padding: 0 20%;
}

.card .wish > i {
    margin-bottom: .5em;
    font-size: 1.5em;
}

.card .wish:before {
    content: "";
    background-image: url(/public/assets/logo.webp);
    background: 50% / 50% no-repeat url(/public/assets/logo.webp);
    width: 25%;
    height: 25%;
    position: absolute;
    top: -5%;
    left: -5%;
    filter: contrast(0) brightness(20) drop-shadow(0px 0px 3px #fff6);
}

.card .geo {
    position: absolute;
    right: 5%;
    top: 3%;
    color: white;
    gap: .25em;
    align-items: flex-end;
}

.card .geo > div:last-child {
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid white;
}

.card .geo > div:last-child::after {
    content: "?";
    color: white;
    position: absolute;
    width: 100%;
}

.card .geo > div:last-child img {
    filter: blur(2px);
}

.card .geo > div:first-child {
    flex-direction: row;
    font-size: .5em;
    color: white;
    gap: .5em;
}

.card .gardeners {
    flex-direction: row;
    font-size: .4em;
    position: absolute;
    left: 5%;
    bottom: 3%;
    color: white;
    gap: .75em;
    flex-direction: row;
}

.card .gardeners > div {
    gap: .15em;
}

.card .gardeners > div span {
    font-size: .8em;
}

.card .category {
    font-size: .3em;
    position: absolute;
    top: 5%;
    width: 100%;
    text-align: left;
    flex-direction: row;
    justify-content: flex-start;
    left: 15%;
}

.card .category::after {
    content: "";
    background-color: green;
    border-radius: 50%;
    width: 2.5%;
    aspect-ratio: 1;
    right: -.75em;
    position: relative;
}