/* ── ZEM Experience Card ─────────────────────────────────────── */
.zem-ec {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* Image */
.zem-ec__image-wrap {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
}

.zem-ec__image-wrap img,
.zem-ec__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Body */
.zem-ec__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Title */
.zem-ec__title {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3b1a0a;
}

/* Description */
.zem-ec__description {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.025em;
    color: #6b3a22;
}

/* Time badge */
.zem-ec__time {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 14px;
    background-color: #3b1a0a;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    align-self: flex-start;
}
