body {
    background-color: #F4EEEB52;
}

div#primary main article .inside-article {
    box-shadow: none;
    background-color: transparent;
}

header.entry-header h1.entry-title {
    font-weight: bold;
    font-size: 30px;
}

.section-subtitle {
    margin-top: 2rem;
}

#how-to-list {
    counter-reset: item;
    margin: 0;
}

#how-to-list li {
    display: flex;
    align-items: start;
    color: #0C0C0C;
    font-size: 20px;
    padding-bottom: 20px;
    max-width: 650px;
    position: relative;
}

#how-to-list li:before {
    content: counter(item);
    counter-increment: item;
    margin-right: 20px;
    color: #DC9236;
    border: 2px solid #DC9236;
    border-radius: 50%;
    font-size: 15px;
    padding: 3px 10px;
    font-weight: bold;
}

#how-to-list li:not(:last-child)::after {
    content: '';
    width: 2px;
    height: calc(100% - 30px);
    position: absolute;
    top: 30px;
    left: 15px;
    border: 1px dashed #DC9236;
}

.reward-levels .wp-block-column {
    background: #FFFFFF;
    box-shadow: 0px 1px 2px #00000029;
    border-radius: 10px;
    overflow: hidden;
}

.bronze-lvl .wp-block-group,
.silver-lvl .wp-block-group {
    padding: 1rem;
}

.lvl-desc {
    padding: 1rem;
    margin-bottom: 0;
}