/* Zetu Who We Are Widget Styles */

/* Main Wrapper */
.zetu-wrapper {
    width: 100%;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .zetu-wrapper {
        grid-template-columns: 350px 1fr;
        min-height: 500px;
    }
}

/* --- LEFT CARD: STATS --- */
.zetu-stats-card {
    /* Default background, overridden by controls */
    background: linear-gradient(135deg, #00a99e, #008c82);
    border-radius: 32px;
    padding: 40px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.zetu-stats-eyebrow {
    grid-column: 1 / 2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    line-height: 1.5;
}

.zetu-stats-icon {
    grid-column: 2 / 3;
    justify-self: end;
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

.zetu-stats-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.zetu-stat-box {
    align-self: end;
}

.zetu-stat-box.primary {
    grid-column: 1 / 2;
}

.zetu-stat-box.secondary {
    grid-column: 2 / 3;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.zetu-stat-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.zetu-stat-box.secondary .zetu-stat-value {
    font-size: 28px;
}

.zetu-stat-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.3;
}

/* --- RIGHT CARD: CONTENT --- */
.zetu-content-card {
    background-color: #f5f0e9; /* Default cream */
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .zetu-content-card {
        flex-direction: row;
    }
}

/* Text Layer */
.zetu-content-text {
    position: relative;
    z-index: 2;
    background-color: inherit; /* Matches card bg */
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .zetu-content-text {
        width: 60%;
        border-top-right-radius: 50% 100%;
        border-bottom-right-radius: 50% 100%;
        margin-right: -50px;
        box-shadow: 10px 0 20px rgba(0, 0, 0, 0.05);
    }
}

/* Image Layer */
.zetu-content-image {
    position: relative;
    width: 100%;
    height: 300px;
    z-index: 1;
    overflow: hidden;
}

@media (min-width: 992px) {
    .zetu-content-image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        height: 100%;
    }
}

.zetu-content-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

/* Typography Defaults (can be overridden by Elementor) */
.zetu-heading {
    margin: 0 0 24px 0;
    font-weight: 400;
    /* Font size removed to allow Elementor control */
    color: var(--text-main);
}

.zetu-heading strong {
    font-weight: 700;
    color: inherit;
}

.zetu-body {
    /* Container for body text */
}

.zetu-body p {
    line-height: 1.6;
    color: var(--text-main);
    opacity: 0.8;
    margin-bottom: 20px;
    /* Font size removed to allow inheritance from .zetu-body (Elementor control) */
}


.zetu-body p:last-child {
    margin-bottom: 0;
}
