.poseidon-split-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.poseidon-split-hero__row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.poseidon-split-hero__col {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    min-height: 360px;
    text-decoration: none;
    overflow: hidden;
}

.poseidon-split-hero__col-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.poseidon-split-hero__bg {
    position: absolute;
    inset: -4px;
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    z-index: 0;
}

.poseidon-split-hero__col:hover .poseidon-split-hero__bg {
    transform: scale(1.06);
}

.poseidon-split-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.poseidon-split-hero__placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
}

.poseidon-split-hero__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px 24px;
    text-align: left;
}

.poseidon-split-hero__title {
    margin: 0;
    word-break: break-word;
}

.poseidon-split-hero__bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s cubic-bezier(.25,.46,.45,.94), transform .35s cubic-bezier(.25,.46,.45,.94);
}

.poseidon-split-hero__col:hover .poseidon-split-hero__bottom {
    opacity: 1;
    transform: translateY(0);
}

.poseidon-split-hero__btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.poseidon-split-hero__btn:hover {
    opacity: .85;
}

@media (max-width: 768px) {
    .poseidon-split-hero__row {
        flex-direction: column;
    }
    .poseidon-split-hero__col {
        min-height: 280px;
        padding: 32px 16px;
    }
    .poseidon-split-hero__top {
        padding: 20px 16px;
    }
}
