.carousel {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media(min-width: 992px) {
    .carousel {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
}

.carousel--tombstone {
    padding-left: 1px;
}

.carousel__viewport {
    overflow: hidden;
    cursor: grab;
}

.carousel__viewport.is-dragging {
  cursor: grabbing;
}

.carousel__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    width: max-content;
}

.carousel__item {
    flex: 0 0 auto;
    user-select: none;
}

.carousel__item h3 {
    font-size: var(--wp--preset--font-size--medium);
    font-weight: bold;
}

/* Tombstone sizing */
.carousel__item--tombstone {
    width: 250px;
    border: 1px solid var(--wp--preset--color--primary-300);
    background-color: white;
    text-align: center;
    margin-bottom: 1px;
}

.carousel__item--tombstone .image {
    display: flex;
    height: 150px;
    align-items: center;
}

.carousel__item--tombstone .subheader {
    font-weight: 600;
    margin: 8px 0;
    padding: 0 16px;
    line-height: 1.25;
    font-size: var(--wp--preset--font-size--small);
}

.carousel__item--tombstone .description {
    margin: 0;
    margin-bottom: 16px;
    padding: 0 16px;
    line-height: 1.25;
    font-size: var(--wp--preset--font-size--small);
}

/* Portfolio sizing */
.carousel__item--portfolio {
    width: 220px;
}

.carousel img {
    pointer-events: none;
    max-width: 100%;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* siblings padding */
.carousel + .business-area-list {
    padding-top: 0;
}