.experiences-teaser {
    width: 100%;
    background: var(--zm-bg-surface);
    color: var(--zm-surface-text-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
}

.experiences-teaser__thumbnail {
    flex: 1;
    position: relative;
    overflow: hidden;
    aspect-ratio: 311/330;
}

.experiences-teaser__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiences-teaser__content {
    flex: 1.2;
    padding: 40px 30px 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem;
}

.experiences-teaser__text {
    flex: 1;
}

.experiences-teaser__title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--zm-font-family-primary);
    line-height: 1.125em;
    margin-bottom: 1rem;
}

.experiences-teaser__subtitle {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}

.experiences-teaser__read-more {
    margin-block-start: auto;
    margin-inline-start: auto;
    width: auto;
    padding: 0.375rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .experiences-teaser {
        flex-direction: column;
        min-height: auto;
    }

    .experiences-teaser__thumbnail {
        flex: none;
        aspect-ratio: 333/236;
    }

    .experiences-teaser__thumbnail img {
        object-position: top;
    }

    .experiences-teaser__content {
        flex: none;
        padding: 30px 25px;
    }

    .experiences-teaser__title {
        margin-bottom: 0.5rem;
    }

    .experiences-teaser__subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .experiences-teaser__read-more {
        margin-inline-start: 0;
    }
}

@media (max-width: 480px) {
    .experiences-teaser {
        max-width: none;
    }

    .experiences-teaser__content {
        padding: 25px 20px;
    }
}
