.alpine-post-cta {
    display: flex;
    align-items: stretch;
    gap: 24px;
    background: #f7fbfa;
    border: 1px solid rgba(21, 117, 107, 0.18);
    border-left: 6px solid #15756b;
    border-radius: 18px;
    padding: 24px;
    margin: 0 0 32px 0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.alpine-post-cta-media {
    flex: 0 0 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alpine-post-cta-image {
    width: 100%;
    max-width: 190px;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: contain;
}

.alpine-post-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.alpine-post-cta-heading {
    color: #093936;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 900;
    margin: 0 0 12px 0;
    padding: 0;
}

.alpine-post-cta-description {
    color: #233332;
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 20px;
}

    .alpine-post-cta-description p {
        margin: 0 0 12px 0;
    }

        .alpine-post-cta-description p:last-child {
            margin-bottom: 0;
        }

.alpine-post-cta-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
}

.alpine-post-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none !important;
    line-height: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.alpine-post-cta-button-call {
    background: #0b3937;
}

.alpine-post-cta-button-form {
    background: #15756b;
}

.alpine-post-cta-button:hover,
.alpine-post-cta-button:focus {
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(21, 117, 107, 0.22);
}

.alpine-post-cta-button-call:hover,
.alpine-post-cta-button-call:focus {
    background: #082c2a;
}

.alpine-post-cta-button-form:hover,
.alpine-post-cta-button-form:focus {
    background: #0f5f57;
}

@media (max-width: 768px) {
    .alpine-post-cta {
        flex-direction: column;
        padding: 20px;
    }

    .alpine-post-cta-media {
        flex: none;
        width: 100%;
    }

    .alpine-post-cta-image {
        max-width: 150px;
        margin: 0 auto;
    }

    .alpine-post-cta-heading {
        font-size: 21px;
    }

    .alpine-post-cta-description {
        font-size: 16px;
    }

    .alpine-post-cta-buttons {
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
    }

    .alpine-post-cta-button {
        width: 100%;
        text-align: center;
    }
}
