.exp {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-gap: 1.5rem;
    margin: 0;
}

.exp-body {
    color: #000;
}

.exp-text {
    margin: 0;
}

.exp-descripion>p {
    margin: 0;
}

.exp .badge {
    color: #fff;
}

.exp-exhibitor-locations {
    background: #eff7fd;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-top: .75rem;
    margin-bottom: 1rem;
}

.exp-exhibitor-locations>div {
    font-size: .95rem;
    margin-bottom: 0.15rem;
    padding-left: 0.15rem;
    font-style: italic;
    color: var(--wp--preset--color--secondary);
}

.exp-exhibitor-locations .badge {
    background: #fff;
    color: var(--wp--preset--color--black);
    margin-bottom: .25rem;
}

.exp-challenge {
    color: var(--wp--preset--color--primary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 0.5rem;
    align-items: center;
    background: #f18a480f;
    padding: 0.5rem;
    font-size: .95rem;
    font-style: italic;
}

.exp-challenge a {
    color: var(--wp--preset--color--primary);
    text-decoration: underline;
}

.exp-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.exp-img-top img {
    max-width: 100%;
}

@media only screen and (max-width: 525px) {
    .exp {
        display: flex;
        flex-direction: column-reverse;
    }

    .exp-text {
        text-align: center;
    }

    .exp a {
        width: calc(100% - 3rem);
        text-align: center;
    }

    .exp-challenge {
        flex-direction: column;
        text-align: center;
    }
}