/**
 * Trial Banner - hero image, coloured title, feature checklist, full-width
 * button. The accent colour (--nm-trial-accent) themes the title, checks and
 * button so the same card works in blue, pink or any brand colour.
 */
.nm-trial-banner {
    --nm-trial-accent: #1E9BF0;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #f2f3f7;
    box-shadow: 0 1px 2px rgba(20, 20, 46, .04);
}

.nm-trial-banner__media {
    display: block;
    line-height: 0;
    aspect-ratio: 16 / 9;
    background: #eaf4fd;
}

.nm-trial-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Neutral gradient when no image is set, so the card still looks complete. */
.nm-trial-banner__media--placeholder {
    background:
        radial-gradient(120% 90% at 80% 20%, #eef1f6 0%, transparent 60%),
        linear-gradient(135deg, #e7ebf3, #d7dde9);
}

.nm-trial-banner__body {
    padding: 22px;
}

.nm-trial-banner__title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--nm-trial-accent);
    margin-bottom: 10px;
}

.nm-trial-banner__desc {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.45;
    color: #3a3a52;
}

.nm-trial-banner__list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nm-trial-banner__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #3a3a52;
}

.nm-trial-banner__check {
    display: inline-flex;
    flex: 0 0 auto;
    color: var(--nm-trial-accent);
}

/* The button uses the theme's b-btn--secondary-black (black) full-size button,
   the same one in the header; this only guarantees it spans the card width. */
.nm-trial-banner__button {
    width: 100%;
}
