* {
    background-repeat: no-repeat;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.wrapper {
    width: 100%;
    max-width: 772px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.responsive-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: var(--responsive-wrapper-max-width, unset);
}

.responsive-wrapper--centered {
    margin-left: auto;
    margin-right: auto;
}

.responsive-wrapper--rounded {
    border-radius: 51%;
    overflow: hidden;
}

.responsive-wrapper--branded-rounding {
    border-radius: 12px;
    overflow: hidden;
}

.responsive-wrapper__image-wrapper {
    position: relative;
    padding-top: calc(var(--aspect-ratio, 1) * 100%);
}

.responsive-wrapper__image-wrapper--fluid {
    min-height: 100%;
}

.responsive-wrapper__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.responsive-wrapper__image.lazyload, .responsive-wrapper__image.lazyloading {
    visibility: hidden;
    opacity: 0;
}

.responsive-wrapper__image.lazyloaded {
    visibility: visible;
    opacity: 1;
}

.responsive-wrapper__image--contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.responsive-wrapper__image--rounded {
    border-radius: 51%;
}

.header {
    background-color: #D4451C;
}

.header__wrapper {
    display: flex;
    justify-content: center;
    padding-top: 2px;
    padding-bottom: 2px;
}

.header__logo {
    width: 200px;
}

@media only screen and (min-width: 1024px) {
    .header__wrapper {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header__logo {
        width: 260px;
    }
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 17px;
    line-height: 1.5;
    color: #0a0a0a;
}

h1 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-top: 40px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

li {
    padding-bottom: 12px;
}

li:last-child {
    padding-bottom: 0;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

a {
    color: inherit;
}

.image-caption {
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    color: #0a0a0a;
    margin-top: 10px;
    margin-bottom: 0;
}

.article-separator {
    border: none;
    border-top: 1px solid #afafaf;
    margin: 0;
}

@media only screen and (min-width: 768px) {
    body {
        font-size: 18px;
        line-height: 1.6;
    }

    h1 {
        font-size: 45px;
        margin-bottom: 24px;
    }

    h2 {
        font-size: 30px;
        margin-top: 48px;
        margin-bottom: 28px;
    }

    p {
        margin-bottom: 30px;
        line-height: 1.6;
    }

    ul, ol {
        margin-bottom: 30px;
    }
}

.article-intro__wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
}

.article-intro__badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 20px;
}

.article-intro__badge-dot {
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 51%;
}

.article-intro__badge-highlight {
    background-color: #20365e;
    padding: 4px 12px;
    border-radius: 20px;
    color:  #fff;
}

.article-intro__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.article-intro__author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.article-intro__author-details h3 {
    font-size: 15px;
    line-height: 1.5;
}

.article-intro__author-details p {
    font-size: 15px;
    margin: 0;
}

.article-intro__author-details span {
    display: block;
}

.article-intro__image {
    margin: 24px 0 10px;
}

.article-intro__image img {
    width: 100%;
}

.article-intro__socials {
    margin-top: 10px;
}

@media only screen and (min-width: 768px) {
    .article-intro__wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .article-intro__badge {
        gap: 10px;
        font-size: 17px;
        margin-bottom: 20px;
    }

    .article-intro__badge-highlight {
        padding: 6.5px 20px;
    }

    .article-intro__author {
        gap: 16px;
        margin: 30px 0;
    }

    .article-intro__author-image {
        width: 80px;
        height: 80px;
    }

    .article-intro__author-details h3 {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 2px;
    }

    .article-intro__author-details p {
        font-size: 16px;
        line-height: 1.6;
    }

    .article-intro__author-details span {
        display: inline;
    }

    .article-intro__image {
        margin: 30px 0 10px;
    }
}

.article-content {
    padding: 0;
}

.article-content__image {
    margin: 24px 0;
}

.article-content__image img {
    width: 100%;
}

.article-content__highlight {
    background-color: #A64429;
    color: #fff;
    padding: 20px;
}

.article-content__highlight h2:first-child {
    margin-top: 0;
}

.article-content__highlight .cta-button {
    margin-top: 32px;
    background-color: #fff;
    color: #424242;
    max-width: 100%;
    letter-spacing: 0;
    font-weight: 700;
}

.article-content__highlight .cta-button:last-child {
    margin-bottom: 0;
}

.article-content__highlight .cta-button:hover {
    background-color: #fff;
}

@media only screen and (min-width: 768px) {
    .article-content__image {
        margin: 30px 0;
    }

    .article-content__highlight {
        padding: 30px 40px;
    }

    .article-content__highlight .cta-button {
        font-size: 22px;
    }
}

.vet-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 24px 0;
    gap: 24px;
    padding: 16px;
    text-align: center;
    background-color: #EDF1F4;
}

.vet-box__image {
    flex-shrink: 0;
    width: 400px;
    aspect-ratio: 1;
    border-radius: 51%;
}

.vet-box__quote {
    font-size: 16px;
}

@media only screen and (min-width: 768px) {
    .vet-box {
        margin: 30px 0;
        padding: 24px;
    }

    .vet-box__quote {
        font-size: 17px;
    }
}

.vet-box__quote {
    max-width: 500px;
}

.cta-button {
    display: block;
    background-color: #d4451c;
    color:  #fff;
    text-align: center;
    padding: 18px 12px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1.25px;
    line-height: 1;
    margin: 40px auto;
    max-width: 540px;
    box-shadow: 0 0 18px -11px #333;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #b83a17;
}

@media only screen and (min-width: 768px) {
    .cta-button {
        padding: 18px 40px;
        font-size: 25px;
        letter-spacing: 1.25px;
        margin: 56px auto;
    }
}

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #efefef;
    border: 0.5px solid black;
    border-radius: 20px;
    padding: 12px;
    margin: 32px 0;
}

.guarantee-box__image {
    flex-shrink: 0;
}

.guarantee-box__content {
    padding-top: 2px;
}

.guarantee-box h3 {
    font-size: 17px;
    font-weight: 700;
    color: #3d4246;
    margin-bottom: 6px;
}

.guarantee-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #3d4246;
    margin: 0;
}

@media only screen and (min-width: 768px) {
    .guarantee-box {
        gap: 20px;
        padding: 16px 28px;
        margin: 40px 0;
    }

    .guarantee-box h3 {
        font-size: 22px;
    }

    .guarantee-box p {
        font-size: 17px;
    }
}

.custom-slider {
    position: relative;
}

.custom-slider__arrow {
    position: absolute;
    top: 50%;
    display: flex;
    z-index: 1;
    transform: translateY(-50%);
    padding: 2px 7px;
    cursor: pointer;
}

.custom-slider__arrow svg {
    width: 15px;
    height: auto;
}

.custom-slider__arrow.swiper-button-disabled {
    display: none;
}

.custom-slider__arrow--next {
    right: 13px;
}

.custom-slider__arrow--previous {
    left: 13px;
}

.custom-slider__arrow--rebranding-plain {
    position: absolute;
    top: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 51%;
    background-color: #BF9983;
    transition-property: background-color;
    transition-duration: .25s;
}

.custom-slider__arrow--rebranding-plain:hover {
    background-color: #DAC3B7;
}

.custom-slider__arrow--rebranding-plain svg {
    width: 40px;
}

.custom-slider__arrow--rebranding-plain.custom-slider__arrow--next {
    right: 0;
    transform: translate(50%, -50%);
}

.custom-slider__arrow--rebranding-plain.custom-slider__arrow--previous {
    left: 0;
    transform: translate(-50%, -50%);
}

.custom-slider__static-pagination {
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.custom-slider__static-pagination:empty {
    display: none;
}

.custom-slider__static-pagination .swiper-pagination-bullet {
    margin-left: 4px;
    margin-right: 4px;
}

.custom-slider__static-pagination .swiper-pagination-bullet-active {
    background-color: #484847;
}

.custom-slider__static-pagination--rebranding {
    margin-top: 16px;
    min-height: 7px;
    line-height: 0;
}

.custom-slider__static-pagination--rebranding:empty {
    display: none;
}

.custom-slider__static-pagination--rebranding .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border: 1px solid var(--pagination-bullet-color, #BF9983);
    margin-left: 3.5px;
    margin-right: 3.5px;
    background-color: transparent;
    opacity: 1;
}

.custom-slider__static-pagination--rebranding .swiper-pagination-bullet-active {
    background-color: var(--pagination-bullet-color, #BF9983);
}

.custom-slider__static-pagination--rebranding-medium {
    min-height: 10px;
}

.custom-slider__static-pagination--rebranding-medium .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

@media only screen and (min-width: 1024px) {
    .custom-slider__static-pagination--rebranding {
        margin-top: 32px;
        min-height: 10px;
    }

    .custom-slider__static-pagination--rebranding.swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin-left: 5px;
        margin-right: 5px;
    }
}

@media only screen and (min-width: 1200px) {
    .custom-slider__arrow--next {
        right: -37px;
    }

    .custom-slider__arrow--previous {
        left: -37px;
    }

    .custom-slider__arrow svg {
        width: 21px;
    }

    .custom-slider__arrow--rebranding-plain svg {
        width: 40px;
    }
}

@media only screen and (min-width: 1440px) {
    .custom-slider__arrow--next {
        right: -67px;
    }

    .custom-slider__arrow--previous {
        left: -67px;
    }
}

.sources-section {
    padding: 32px 0;
}

.sources-section h2 {
    font-size: 25px;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 30px;
}

.sources-section__items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    hyphens: auto;
}

.sources-section__item {
    width: calc(50% - 12px);
}

.sources-section__item h4 {
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 0;
}

.sources-section__item h4:first-child {
    margin-top: 0;
}

.sources-section__item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sources-section__item li {
    margin-bottom: 0;
    padding: 0;
    line-height: 1;
}

.sources-section__item a {
    color: #0a0a0a;
    text-decoration: underline;
    font-size: 13px;
    line-height: 1.6;
}

@media only screen and (min-width: 768px) {
    .sources-section {
        padding: 40px 0;
    }

    .sources-section__items {
        gap: 40px;
    }

    .sources-section__item {
        width: calc(33.3333333% - 26.6666667px);
    }
}

.about-section {
    padding: 32px 0;
}

.about-section h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section__disclaimer-title {
    font-size: 20px;
    font-weight: 400;
    margin-top: 24px;
    margin-bottom: 6px;
}

.about-section__disclaimer-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.tip-box {
    margin: 24px 0;
}

.tip-box__label {
    color: #d33;
    margin-bottom: 6px;
}

@media only screen and (min-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .tip-box {
        margin: 30px 0;
    }
}

.image-link {
    display: block;
}

/* Footer */
.footer {
    background-color: #484847;
    color:  #fff;
    padding: 40px 0;
}

.footer p {
    margin-bottom: 30px;
}

.footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}

.footer__links a {
    color:  #fff;
    text-decoration: underline;
}

@media only screen and (min-width: 768px) {
    .footer__links {
        gap: 80px;
        margin-top: 40px;
    }
}