<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.entry-fact {
    display: grid;
    grid-template-columns: minmax(48px, 1fr) minmax(200px, 400px) minmax(48px, 1fr);
    column-gap: 16px;
}

.fact {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: auto;
    max-width: 400px;
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
}

.fact__inner {
    padding: 32px;
}

.fact__title {
    font-size: 21px;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
}

.fact__title::before {
    content: "";
    display: block;
    width: 40px;
    height: 24px;
    float: right;
}

.fact__btn {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    margin: 0 auto;
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 16px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.fact__btn:hover {
    background-color: #fff;
    color: #22bb33;
}

.fact__btn i {
    margin-left: 0;
    margin-right: auto;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    border-radius: 50%;
    background-color: #22bb33;
    color: #fff;
}

.fact__btn span {
    margin: auto;
}

.fact__btn--false {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.fact__btn--false:hover {
    background-color: rgb(242, 16, 42);
    color: #fff;
}

.fact__btn--false i {
    color: rgb(242, 16, 42);
    background-color: #fff;
    border-color: rgb(242, 16, 42);
}

.fact__badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    height: 80px;
    width: 80px;
    transform: translate(25%, -25%) rotate(35deg);
}

.fact__badge svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.fact__badge__text {
    display: block;
    position: relative;
    text-align: center;
    z-index: 1;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    padding: 8px;
}

.fact__badge__text span:first-child {
    display: block;
}

.fact__badge__text span:nth-child(2) {
    font-size: 10px;
    display: inline-block;
    line-height: 0.5;
}
.fact__badge__text span:nth-child(2)::after {
    content: " ";
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.single-fact--featured-image img {
    display: block;
    width: 100%;
    height: auto;
}
.single-fact--title {
    background-color: #efefef;
    padding: 16px;
    margin-bottom: 24px;
}

.single-fact--title h1 {
    text-align: center;
    font-size: 48px !important;
    line-height: 54px !important;
    margin: 0 !important;
    font-weight: 700 !important;
}</pre></body></html>