.fij-cta-box {
    position: relative; overflow: hidden;
    display: flex; /* Base flex for Classic */
}

/* Classic Skin */
.fij-cta-classic .fij-cta-bg-wrap {
    background-size: cover; background-position: center;
    flex-grow: 1; /* Width handled by controls */
}
.fij-cta-classic .fij-cta-content {
    display: flex; flex-direction: column; justify-content: center;
    flex-grow: 1; /* Width handled by controls */
}

/* Cover Skin */
.fij-cta-cover {
    align-items: center; justify-content: center; /* Center content by default */
}
.fij-cta-cover .fij-cta-bg-wrap {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fij-cta-cover:hover .fij-cta-bg-wrap { transform: scale(1.05); }
.fij-cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.fij-cta-cover .fij-cta-content { position: relative; z-index: 2; display: flex; flex-direction: column; }

/* Content Defaults (Overridden by controls) */
.fij-cta-title { margin: 0 0 15px; font-size: 32px; font-weight: 700; }
.fij-cta-desc { margin: 0 0 25px; font-size: 16px; line-height: 1.6; }
.fij-cta-btn {
    display: inline-block; padding: 15px 35px;
    text-decoration: none; font-weight: 700;
    transition: all 0.3s ease;
}
