.content {
    padding: 0 16px;
}

@media screen and (min-width: 801px) {
    .content {
        padding: 0 8.333vw;
    }
}

@media screen and (min-width: 1440px) {
    .content {
        padding: 0 120px;
    }
}

.content__container  {
    width: 100%;
    padding: 160px 0 128px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

@media screen and (min-width: 801px) {
    .content__container  {
        padding: 16.667vw 0 12.778vw;
        justify-content: flex-end;
    }
}

@media screen and (min-width: 1440px) {
    .content__container  {
        padding: 240px 0 184px;
    }
}

.content__main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 801px) {
    .content__main {
        width: 57.84vw;
        gap: 3.333vw;
    }
}

@media screen and (min-width: 1440px) {
    .content__main {
        width: 57.84vw;
        gap: 48px;
    }
}

.content__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 801px) {
    .content__title-wrap {
        gap: 0;
    }
}

.content__title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 801px) {
    .content__title {
        font-size: 2.778vw;
    }
}

@media screen and (min-width: 1440px) {
    .content__title {
        font-size: 32px;
    }
}

.content__date-wrap {
    display: flex;
    gap: 16px;
}

@media screen and (min-width: 801px) {
    .content__date-wrap {
        flex-direction: column;
        gap: 0.556vw;
        position: absolute;
        top: 240px;
        left: 0;
    }
}

@media screen and (min-width: 1440px) {
    .content__date-wrap {
        gap: 8px;
    }
}

.content__date {
    font-family: 'Roboto', sans-serif;
    font-feature-settings: 'palt' on;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 801px) {
    .content__date {
        font-size: 1.111vw;
    }
}
@media screen and (min-width: 1440px) {
    .content__date {
        font-size: 16px;
    }
}

.content__category {
    font-family: 'Roboto', sans-serif;
    font-feature-settings: 'palt' on;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 801px) {
    .content__category {
        font-size: 1.111vw;
    }
}
@media screen and (min-width: 1440px) {
    .content__category {
        font-size: 16px;
    }
}

.content__image {
    width: 100%;
    height: 60.978vw;
}

@media screen and (min-width: 801px) {
    .content__image {
        height: 38.562vw;
    }
}

.content__image img {
    border-radius: 10px;
}

.content__wrap {
    width: 100%;
}

.content__wrap p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.88;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.content__wrap h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.88;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    padding-left: 24px;
    border-top: 32px solid transparent;
    position: relative;
}

.content__wrap h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #251e1c;
}

.content__wrap h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.88;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    border-top: 32px solid transparent;
}

.content__wrap ul {
    margin-bottom: 24px;
    list-style: none;
}

.content__wrap li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.88;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.content__wrap li::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #251e1c;
    border-radius: 50%;
}


.content__footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

@media screen and (min-width: 801px) {
    .content__footer {
        gap: 0;
    }
}

.content__share {
    width: 100%;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    padding: 40px 0;
}

@media screen and (min-width: 801px) {
    .content__share {
        width: fit-content;
        border: none;
        position: absolute;
        top: 382px;
        left: 0;
        padding: 0;
    }
}

.content__share-title {
    font-family: 'Roboto', sans-serif;
    font-feature-settings: 'palt' on;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.04em;
    opacity: 0.5;
}

@media screen and (min-width: 801px) {
    .content__share-title {
        font-size: 0.972vw;
    }
}

@media screen and (min-width: 1440px) {
    .content__share-title {
        font-size: 14px;
    }
}

.content__share-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top :8px;
}

@media screen and (min-width: 801px) {
    .content__share-row {
        gap: 0.278vw;
        margin-top: 0.556vw;
    }
}
@media screen and (min-width: 1440px) {
    .content__share-row {
        gap: 4px;
        margin-top: 8px;
    }
}

.content__share-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 801px) {
    .content__share-text {
        font-size: 1.111vw;
    }
}
@media screen and (min-width: 1440px) {
    .content__share-text {
        font-size: 16px;
    }
}

.content__share-text a {
    color: #251e1c;
}

.content__back {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 801px) {
    .content__back {
        padding: 2.778vw 0;
    }
}
@media screen and (min-width: 1440px) {
    .content__back {
        padding: 40px 0;
    }
}

.content__back .simple-button__row {
    gap: 16px;
}

@media screen and (min-width: 801px) {
    .content__back .simple-button__row {
        gap: 1.111vw;
    }
}
@media screen and (min-width: 1440px) {
    .content__back .simple-button__row {
        gap: 16px;
    }
}

.content__back-text {
    font-family: 'Roboto', sans-serif;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 801px) {
    .content__back-text {
        font-size: 1.111vw;
    }
}
@media screen and (min-width: 1440px) {
    .content__back-text {
        font-size: 16px;
    }
}
