.event-image-placeholder {
    position: relative;
    display: grid;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f4f4f5;
    color: #a1a1aa;
}

.event-image-placeholder__fallback,
.event-image-placeholder__image {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
}

.event-image-placeholder__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-placeholder__image {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: inherit;
    background-color: #f4f4f5;
}

.event-image-placeholder__image[hidden] {
    display: none;
}

.event-image-placeholder--list {
    width: 180px;
    height: 180px;
    font-size: 48px;
}

.event-image-placeholder--compact {
    width: 64px;
    height: 64px;
    font-size: 24px;
}

.event-image-placeholder--detail {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    font-size: 24px;
}

.event-image-placeholder--header {
    display: inline-grid;
    width: max-content;
    min-width: 40px;
    height: 40px;
    vertical-align: middle;
    font-size: 18px;
}

.event-image-placeholder--header .event-image-placeholder__fallback {
    width: 40px;
}

.event-image-placeholder--header .event-image-placeholder__image {
    width: auto;
    min-width: 40px;
    height: 40px;
}

@media only screen and (max-width: 960px) {
    .event-image-placeholder--list {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
