.weblogPost__introduction {
    position: relative;
}

.weblogPost__introduction::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.PaywallMessage {
    position: relative;
    margin: 1.6em 0;
    padding: 40px;
    text-align: center;
}

.PaywallMessage::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    background-color: #faa41c;
    z-index: -1;
}

@media screen and (min-width: 940px) {
    .PaywallMessage {
        padding: 55px 40px;
    }

    .PaywallMessage::after {
        border-radius: 30px;
        transform: rotate(4deg);
    }
}

.PaywallMessage__text {
    position: relative;
    color: #000;
    background-color: #faa41c;
}

.PaywallMessage__text h2,
.PaywallMessage__text h3 {
    margin-top: 0;
    margin-bottom: 0.8em;
}

.PaywallMessage__text ul {
    margin: 0 0 1.5em;
    padding: 0;
    list-style: none;
}

.PaywallMessage__text li {
    margin-bottom: 0.3em;
}

.PaywallMessage__text li::before {
    content: '\2713';
    font-family: "sn-icons", sans-serif;
    margin-right: 0.5em;
}

.PaywallMessage__hasAccount {
    display: block;
    margin-top: 0.5em;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8em;
}

.PaywallMessage__loginLink {
    color: #000;
}

.PaywallMessage__loginLink:hover {
    color: #666;
}

.PaywallMessage__action {
    margin: 0 0 0.5em;
    font-size: 0.9em;
}

.PaywallMessage__action--subscribe {
    background-color: #fff;
}

.PaywallMessage__action--subscribe:hover {
    background-color: #ffeed5;
}

.PaywallMessage__action--register {
    color: #000;
    border-color: #fff;
    background-color: transparent;
}

.PaywallMessage__action + .PaywallMessage__action {
    margin-left: 0.5em;
}