.featured-post-block {
    padding-top: 40px;
    padding-bottom: 40px;
}

.featured-post {
    display: flex;
    flex-direction: column;
}

.featured-post {
    position: relative;
    padding-top: 40px;
    padding-left: 1rem;
    padding-right: 1rem;
}


.featured-post::before {
    content:" ";
    top: 0;
    width: 100%;
    left: 0;
    position: absolute;
    z-index: 0;
    display: block;
    height: 40px;
    background: url('../../../assets/images/best-seller-corner-topleft.svg') no-repeat 0 0 / 40px 40px, url('../../../assets/images/best-seller-corner-topright.svg') no-repeat 100% 0 / 40px 40px;
}

.featured-post__content {
    margin-bottom: 28px;
}

.featured-post__subtext {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
} 

.featured-post__subtext span {
    display: block;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--gold-300);
    color: var(--neautral-1000);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: normal;
}

.featured-post__title {
    color: var(--neautral-200);
    font-size: 1.5rem;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.featured-post__desc {
    color: var(--neautral-200);
    font-size: 0.875rem;
    font-style: normal;
    line-height: normal;
    margin-bottom: 24px;
}

.featured-post__link.default-button {
    width: 100%;
}

.featured-post__image {
    display: flex;
    height: 383.057px;
    flex: 1 0 0;
    aspect-ratio: 67/78;
}

@media ( min-width: 768px ) {
    .featured-post-block {
        padding-top: 54px;
        padding-bottom: 54px;
    }
    .featured-post {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 0;
        padding-left: 40px;
    }

    .featured-post::before {
        content:" ";
        width: 40px;
        z-index: 0;
        display: block;
        height: 100%;
        background: url('../../../assets/images/best-seller-corner-topleft.svg') no-repeat 0 0 / 40px 40px, url('../../../assets/images/best-seller-corner-botleft.svg') no-repeat 0 100% / 40px 40px;
    }
    .featured-post__content {
        width: calc(60% - 10px);
        flex: calc(60% - 10px) 0 0;
        margin-bottom: 0;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .featured-post__image {
        width: calc(40% - 10px);
        flex: calc(40% - 10px) 0 0;
    }
}

@media ( min-width: 1024px) {
    .featured-post-block {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .featured-post {
        justify-content: flex-start;
    }
    .featured-post__image {
        height: 500px;
        aspect-ratio: auto/500;
        margin-left: 60px;
    }
    .featured-post__content {
        width: calc(60% - 50px);
        flex: calc(60% - 50px) 0 0;
        margin-bottom: 0;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}

@media ( min-width: 1280px) {
    .featured-post-block {
        padding-top: 110px;
        padding-bottom: 110px;
    }
    .featured-post {
        padding-left: 50px;
        padding-right: 0;
    }
    .featured-post__subtext,
    .featured-post__title {
        margin-bottom: 24px;
    }
    .featured-post__desc {
        margin-bottom: 64px;
    }
    .featured-post__image {
        height: 600px;
        aspect-ratio: 400/600;
        width: 400px;
        flex: 400px 0 0;
    }
    .featured-post__content {
        width: calc(55% - 50px);
        flex: calc(55% - 50px) 0 0;
    }
}