/* =========================================
   CUSTOM ELEMENTOR WIDGETS - GLOBAL STYLES
========================================= */

.cew-widget {
    box-sizing: border-box;
    position: relative;
    width: 100%;
}

/* =========================================
   TYPOGRAPHY BASE
========================================= */

.cew-widget h1,
.cew-widget h2,
.cew-widget h3,
.cew-widget h4,
.cew-widget h5,
.cew-widget h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.cew-widget p {
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   IMAGES
========================================= */

.cew-widget img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   CARDS BASE
========================================= */

.cew-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* =========================================
   TRANSITIONS
========================================= */

.cew-transition {
    transition: all 0.25s ease;
}

/* =========================================
   BUTTON RESET
========================================= */

.cew-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

/* =========================================
   CONTAINER LIMIT
========================================= */

.cew-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}