/*****************************************************************
    UTOPIA SHARED PUBLIC STORE CARD
*****************************************************************/

.store-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 620px;
    min-width: 0;
    overflow: hidden;

    border: 1px solid rgba(33, 31, 27, 0.12);
    border-radius: 26px;

    background: #fffdf8;
    box-shadow: 0 18px 48px rgba(33, 31, 27, 0.08);
}

.store-card__visual {
    position: relative;

    flex: 0 0 280px;
    width: 100%;
    height: 280px;
    min-height: 280px;

    overflow: hidden;
}

.store-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;

    min-height: 0;
    padding: 22px;
}

.store-card__title {
    margin: 0;
    min-height: 2.15em;

    font-weight: 400;
    line-height: 1.075;
    letter-spacing: -0.04em;
}

.store-card__meta {
    min-height: 72px;
}

.store-card__footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    min-height: 46px;
    margin-top: auto;
    padding-top: 18px;
}

.store-card__footer button,
.store-card__footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 44px;
}