.cw-shub {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: var(--color-bg);
}

.cw-shub__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.cw-shub__header {
    margin-bottom: var(--space-lg);
}

.cw-shub__eyebrow {
    color: var(--color-secondary-light);
    margin-bottom: 0.75rem;
}

.cw-shub__headline {
    margin-bottom: 1rem;
}

.cw-shub__sub {
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    color: var(--color-text-muted);
    max-width: 52ch;
    line-height: var(--lh-body);
}

.cw-shub__list {
    display: flex;
    flex-direction: column;
}

.cw-shub__card {
    position: relative;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--color-divider);
    opacity: 0;
    transform: translateY(20px);
}

.cw-shub__card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cw-shub__more {
    display: inline-block;
    margin-top: 0.85rem;
    font-family: var(--font-mono);
    font-size: var(--fs-label, 0.72rem);
    letter-spacing: var(--ls-label, 0.1em);
    text-transform: uppercase;
    color: var(--color-secondary-light);
    transition: color 0.2s ease, transform 0.2s ease;
}

.cw-shub__card:hover .cw-shub__name {
    color: var(--color-accent);
}

.cw-shub__card:hover .cw-shub__more {
    color: var(--color-accent);
    transform: translateX(3px);
}

.cw-shub__card:first-child {
    border-top: 1px solid var(--color-divider);
}

.cw-shub__card:hover {
    border-bottom-color: var(--color-secondary);
}

.cw-shub__card-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cw-shub__name {
    font-family: var(--font-display);
    font-size: var(--fs-body-lg);
    font-weight: var(--fw-semibold);
    color: #fff;
    text-transform: none;
}

.cw-shub__price {
    font-family: var(--font-mono);
    font-size: var(--fs-price);
    color: var(--color-accent);
    flex-shrink: 0;
}

.cw-shub__duration {
    font-family: var(--font-mono);
    font-size: var(--fs-label);
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--color-secondary-light);
    margin-bottom: 0.625rem;
}

.cw-shub__excerpt {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 56ch;
}

.cw-shub__included {
    font-family: var(--font-display);
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.cw-shub__included-label {
    color: var(--color-secondary-light);
}

.cw-shub__bottom {
    margin-top: var(--space-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .cw-shub__inner {
        padding: 0 48px;
    }
}

@media (max-width: 767px) {
    .cw-shub__inner {
        padding: 0 1.25rem;
    }
}
