/* WT CTA Banner */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600;1,700&display=swap');

.wt-cb-wrap {
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
    background-color: #E3E9EE;
}

.wt-cb-card {
    width: 100%;
    max-width: 1728px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 24px;
    min-height: 320px;
}

/* Background video / image */
.wt-cb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.wt-cb-bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.wt-cb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
}

/* Content */
.wt-cb-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    padding: 60px 80px;
}

.wt-cb-title {
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    line-height: 24px;
}

.wt-cb-subtitle {
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

/* Button — WT CTA style */
.wt-cb-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: #FFFFFF;
    color: #101010 !important;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none !important;
    line-height: 1.4;
    transition: all var(--wt-cb-fill-speed, 0.7s) ease;
}

.wt-cb-btn span {
    position: relative;
    z-index: 1;
}

.wt-cb-btn::after {
    content: '';
    position: absolute;
    z-index: 0;
    width: var(--wt-cb-accent-size, 14px);
    height: var(--wt-cb-accent-size, 14px);
    background-color: var(--wt-cb-accent, #FFB113);
    transition: all var(--wt-cb-fill-speed, 0.7s) ease;
}

/* Accent positions */
.wt-cb-btn-bottom-right::after { bottom: 0; right: 0; }
.wt-cb-btn-bottom-left::after  { bottom: 0; left: 0; }
.wt-cb-btn-top-right::after    { top: 0; right: 0; }
.wt-cb-btn-top-left::after     { top: 0; left: 0; }

/* Hover — fill from corner */
.wt-cb-btn:hover::after {
    width: 100% !important;
    height: 100% !important;
}

.wt-cb-btn-bottom-right:hover::after { bottom: 0; right: 0; }
.wt-cb-btn-bottom-left:hover::after  { bottom: 0; left: 0; }
.wt-cb-btn-top-right:hover::after    { top: 0; right: 0; }
.wt-cb-btn-top-left:hover::after     { top: 0; left: 0; }

.wt-cb-btn:hover {
    color: var(--wt-cb-hover-text, #101010) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .wt-cb-wrap {
        padding: 0 20px;
    }
}
