.ce-1419-container {
    width: 100%;
}

.ce-1419-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ce-1419-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.ce-1419-col-media {
    position: sticky;
    top: 40px;
}

.ce-1419-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ce-1419-col-content {
    display: flex;
    flex-direction: column;
}

.ce-1419-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.ce-1419-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    margin-right: 15px;
}

.ce-1419-heading {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.ce-1419-intro,
.ce-1419-support {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ce-1419-support {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.ce-1419-highlights-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.ce-1419-highlight {
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ce-1419-highlight:hover {
    transform: translateY(-2px);
}

.ce-1419-highlight-title {
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.ce-1419-highlight-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.ce-1419-note {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
    font-style: italic;
}

.ce-1419-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ce-1419-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ce-1419-btn-secondary {
    background: transparent;
    border: 1px solid;
}

@media (max-width: 991px) {
    .ce-1419-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ce-1419-heading {
        font-size: 32px;
    }
    
    .ce-1419-col-media {
        order: -1;
        position: static;
    }
}