.artwork {
    display: flex;
    flex-direction: column;
}

.artwork__items {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.artwork__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    position: relative;
    padding: 1px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s;
}

.artwork__item:hover {
    opacity: 0.72;
}

/* Inset divider lines: 7px from left, 20px from right */
.artwork__item + .artwork__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    right: 20px;
    height: 2px;
    background: #ebebec;
}

.artwork__icon {
    flex-shrink: 0;
    width: var(--icon-numbered);
    height: var(--icon-numbered);
}

.artwork__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.artwork__text {}

.artwork__subtitle {
    font-size: 29px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.artwork__subtitle--orange { color: var(--color-accent-orange); }
.artwork__subtitle--yellow { color: var(--color-accent-yellow); }
.artwork__subtitle--blue   { color: var(--color-primary); }
.artwork__subtitle--green  { color: var(--color-accent-green); }

.artwork__desc {
    font-size: var(--font-size-body);
    color: var(--color-text-body);
    line-height: 1.5;
    margin: 0;
}

.artwork__footer {
    margin-top: auto;
    padding-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

/* Shared filled pill button */
.btn-filled-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--button-height);
    padding: 0 50px 4px;
    border: none;
    border-radius: var(--radius-button);
    font-family: var(--font-family);
    font-size: 27px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
    white-space: nowrap;
    cursor: pointer;
}

.btn-filled-pill:hover {
    opacity: 0.88;
}

.btn-blue-light {
    background: var(--color-accent-blue-light);
    color: var(--color-primary);
}

.btn-yellow {
    background: var(--color-accent-yellow);
    color: #fff;
    border: 1px solid #fbae40;
}

.btn-yellow:hover {
    opacity: 1;
    background: #fff;
    color: #fbae40;
    border-color: #fbae40;
}
