
.card.standard {
    width: 100%;
    max-width: var(--cards-max-size);
    min-width: min(265px, 70vw);
    /* max-height: var(--cards-max-size); */
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
}

.card.standard > a {
    display: block;
    height: 0;
    min-width: 160px;
    padding-bottom: calc(100% - 10px);
    /* width: 100%;
    position: relative; */
    overflow: hidden;
    text-decoration: none;
    box-shadow: none;
}

.card a:not(.post-edit-link)::before {
    display: none;
}

.card.standard > a > .card-image {
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease 0s;
    background-color: #c7c7c7;
}

.card.standard > a:hover > .card-image {
    transform: scale(1.2);
}

.card.standard > a > .card-content {
    bottom: initial;
    width: 100%;
    height: 100%;
    background: transparent;
    top: 0;
}

.card.standard > a:hover .card-title {
    transform: translateY(10px);
}

.card.standard .card-content > .card-subtitle-container {
    position: absolute;
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    background-color: #80808045;
    backdrop-filter: blur(2px);
    transition: all .5s ease 0s;
}

.card.standard .card-content > .card-subtitle-container > p {
    white-space: break-spaces;
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
}


.card.standard .card-content > .card-title {
    text-transform: uppercase;
    font-weight: 700;
    font-family: Spartan, sans-serif;
    font-size: 1.1em;
    position: relative;
    transition: all 0.5s ease 0s;
    color: #fff;
    padding-top: 10px;
    text-align: center;
    margin: 0;
    z-index: 1111;
    white-space: normal;
    text-shadow: 1px 1px 2px #a2a2a2b3;
}
