:root {
    --clr-black: #000;
    --clr-def: #BB0B0B;
    --clr-white: #fff;
}

.cf-blog-post-frame {
    margin: 40px;
    padding: 60px;
    background-color: white;
    font-family: 'Inter', sans-serif;
}

.cf-blog-post-breadcrumb {
    font-size: 0.9rem;
    color: #999;
    margin: 35px 0px;
}

.cf-blog-post-breadcrumb a {
    color: #535252;
    text-decoration: none;
}

.cf-blog-post-breadcrumb .cf-active {
    color: #f9a05a;
}

.cf-blog-post-header {
    margin-bottom: 50px;
    width: 100%;
    text-align: center;
}

.cf-blog-post-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cf-orange {
    color: #f9a05a;
}

.cf-blog-post-meta {
    font-size: 0.9rem;
    color: #888;
}

.cf-blog-post-hero {
    position: relative;
    margin-bottom: 60px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    height: 500px;
}

.cf-blog-post-banner {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.cf-blog-post-main-img {
    position: relative;
    width: 100%;
    object-fit: fill;
    border-radius: 40px;
    z-index: 2;
    height: 100%;
}

.cf-blog-post-secondary-img {
    position: relative;
    width: 75%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 2;
}

.cf-blog-post-content {
    width: 85%;
    margin: 0 auto 80px auto;
}

.cf-blog-post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #535252;
    margin-bottom: 25px;
}

.cf-blog-post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
}

.cf-blog-post-content li {
    font-size: 1.1rem;
    color: #535252;
    margin-bottom: 10px;
}

.cf-post-author-card {
    background-color: #fffaf5;
    padding: 30px;
    border-radius: 25px;
    max-width: 400px;
    margin: 0 auto;
}

.cf-author-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.cf-author-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cf-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.cf-author-name {
    margin: 0;
    font-size: 1.1rem;
}

.cf-author-role {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
}

.blockqoute::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 5px;
    z-index: -1;
    background: var(--clr-def);
    opacity: 1;
    top: 0;
    left: 0;
}

.blockqoute {
    padding: 4rem 4rem;
    font-size: 20px;
    font-weight: 500;
    background: var(--clr-black);
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--clr-white);
}

.blockqoute p,
a {
    color: rgba(255, 255, 255, 0.6);
    ;
}

@media (max-width: 768px) {
    .cf-blog-post-frame {
        margin: 15px;
        padding: 90px 20px 30px;
        border-radius: 25px;
    }

    .cf-blog-post-title {
        font-size: 1.8rem;
    }

    .cf-blog-post-accent-shape {
        top: -10px;
        left: -10px;
    }

    .cf-blog-post-main-img {
        width: 100%;
        border-radius: 25px;
    }

    .cf-blog-post-secondary-img {
        width: 100%;
    }

    .cf-blog-post-hero {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 769px) and (max-width: 990px) {
    .cf-blog-post-hero {
        width: 100%;
        height: auto;
    }
}