.ctrm-box {
    position: relative;
}

.ctrm-content {
    overflow: hidden;
}

.ctrm-inner {
    max-height: 260px;
    transition: max-height 0.4s ease;
}

.ctrm-box.is-open .ctrm-inner {
    max-height: none;
}

/* gradient to match white background — use transparent -> page bg */
.ctrm-fade {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,1)
    );
}

.ctrm-box.is-open .ctrm-fade {
    display: none;
}

.ctrm-btn-wrap {
    display: flex;
    justify-content: center;
    margin: 14px 0;
}

.ctrm-btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ctrm-btn:focus {
    outline: 2px solid rgba(0,0,0,0.12);
}

.ctrm-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
}

@media (max-width: 600px) {
    .ctrm-btn {
        font-size: 13px;
        padding: 7px 18px;
    }
}

.ctrm-inner iframe,
.ctrm-inner img,
.ctrm-inner video {
    max-width: 100%;
    height: auto;
    display: block;
}