.somatic-card-container {
    width: 100%;
    position: relative;
    user-select: none;
    aspect-ratio: 1 / 1;
}

.somatic-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.somatic-card-front,
.somatic-card-back {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    box-shadow: none;
    transition: opacity .8s cubic-bezier(.25,1,.5,1);
}

/* Crossfade */

.somatic-card-front {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.somatic-card-back {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.somatic-card-container:hover .somatic-card-front,
.somatic-card-container.is-flipped .somatic-card-front {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.somatic-card-container:hover .somatic-card-back,
.somatic-card-container.is-flipped .somatic-card-back {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
/* FRONT SIDE */

.somatic-card-front {
    padding: 40px 30px;
}

.front-link-overlay {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.front-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.front-title {
    margin: 10px 0 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 1.85rem;
    font-weight: 500;
}

.front-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0;
}

.front-icon-wrapper i {
    font-size: 80px;
    line-height: 1;
}

.front-icon-wrapper svg {
    width: 80px;
    height: 80px;
}

.front-subtitle {
    margin-bottom: 10px;
    max-width: 90%;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 300;
}
/* BACK SIDE */

.somatic-card-back {
    background: #ffffff;
}

.back-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 40px 30px;
    text-align: center;
}

.back-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.back-progression-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 28px 0;
}

.progression-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background: transparent;
    transition: all .3s ease;
}

.progression-dot.active {
    background: #5C6C54;
    border-color: #5C6C54;
}

.back-duration {
    font-size: .95rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.back-cta-plus {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin: 20px auto 0;
    text-decoration: none;
    font-size: 2rem;
    line-height: 1;
    transition: all .3s ease;
}

.back-cta-plus:hover {
    transform: scale(1.08);
}

.plus-icon {
    line-height: 1;
}