article {
    margin-bottom: 2px;
    h1.title {
        color: var(--blue);
        margin-bottom: 10px;
    }
    .date,
    .name {
        color: var(--grey);
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.48px;
        margin-bottom: 4px;
        b {
            font-size: inherit;
            letter-spacing: inherit;
            font-weight: 700;
        }
    }
    > img {
        margin-top: 30px;
        border-radius: 20px 20px 0 0;
    }
    .content-box {
        margin-bottom: 30px;
        padding: 30px;
        border-radius: 0 0 20px 20px;
        background: var(--white);
        counter-reset: editor;
        &::before {
            content: '';
            display: block;
            margin-bottom: 30px;
            width: 100%;
            height: 1px;
            grid-column: 1/-1;
            background: var(--orange);
        }
        &:has(.images) {
            display: grid;
            grid-template-columns: .59fr .41fr;
            column-gap: 60px;
        }
        .text-box {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .content {
            * {
                color: var(--grey);
            }
            p {
                font-size: 20px;
                margin-bottom: 10px;
                strong{
                    font-size: inherit;
                    font-weight: 700;

                }
            }
        }
        .editor-box {
            :is(h3, p, div) {
                display: flex;
                align-items: center;
                &::before {
                    content: '';
                    flex-shrink: 0;
                }
            }
            h3 {
                counter-increment: editor;
                gap: 6px;
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 10px;
                &::before {
                    content: counter(editor);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--white);
                    font-size: 18px;
                    font-weight: 700;
                    aspect-ratio: 1;
                    border-radius: 50%;
                    background: var(--orange);
                    width: 32px;
                }
            }
            p {
                gap: 6px;
                font-weight: 700;
                flex-shrink: 0;
                &::before {
                    width: 20px;
                    height: 5px;
                    border-radius: 2px;
                    background: var(--blue);
                }
                + p {
                    margin-top: 10px;
                }
                &:has(+ div) {
                    margin-bottom: 6px;
                }
            }
            > div {
                gap: 9px;
                margin-left: 10px;
                &::before {
                    width: 5px;
                    aspect-ratio: 1;
                    border-radius: 50%;
                    background: var(--grey);
                }
                &:has(+ p) {
                    margin-bottom: 10px;
                }
            }
        }
        .conclusion {
            h3 {
                color: var(--orange);
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 6px;
            }
            p strong {
                font-weight: 700;
            }
        }
        .images {
            display: flex;
            flex-direction: column;
            gap: 30px;
            img {
                border-radius: 20px;
            }
        }
    }
}
.share {
    margin-bottom: 60px;
    border-radius: 20px;
    background: var(--white);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    h2 {
        color: var(--orange);
        font-size: 18px;
    }
    .box {
        display: flex;
        align-items: center;
        gap: 10px;
        p {
            color: var(--grey);
            font-weight: 700;
            margin-right: 10px;
        }
        a::before {
            border-radius: 16px;
            background-color: var(--grey-white);
            font: 100 32px / 1 icon;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            aspect-ratio: 1;
            transition: background-color .2s linear, color .2s linear;
        }
    }
}
@media screen and (max-width: 1860px) {
    article .content-box:has(.images) {
        column-gap: 30px;
        grid-template-columns: .62fr .38fr;
    }
}
@media screen and (max-width: 1500px) {
    article .content-box {
        padding: 20px;
        &:has(.images) {
            column-gap: 20px;
        }
        &::before {
            margin-bottom: 20px;
        }
        .text-box {
            gap: 20px;
        }
    }
}
@media screen and (max-width: 1280px) {
    article .content-box {
        padding-inline: 10px;
    }
}
@media screen and (max-width: 992px) {
    article .content-box:has(.images) {
        display: flex;
        flex-direction: column;
        gap: 30px;
        &::before {
            margin-bottom: -10px;
        }
        .text-box,
        .images {
            display: contents;
            img {
                &:nth-of-type(1) {
                    order: 1;
                }
                &:nth-of-type(2) {
                    order: 3;
                }
                &:nth-of-type(3) {
                    order: 5;
                    ~ img {
                        order: 7;
                    }
                }
            }
        }
        .editor-box {
            &:nth-of-type(3) {
                order: 2;
            }
            &:nth-of-type(4) {
                order: 4;
            }
            &:nth-of-type(4) {
                order: 6;
                ~ .editor-box {
                    order: 8;
                }
            }
        }
        .conclusion {
            order: 10;
        }
    }
    .share {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        h2 {
            max-width: 200px;
            text-align: center;
        }
        .box {
            gap: 6px;
            p {
                font-size: 14px;
                margin-right: 4px;
            }
            a::before {
                border-radius: 12px;
                font-size: 24px;
                width: 40px;
            }
        }
    }
}
@media screen and (max-width: 768px) {
    article {
        > img {
            aspect-ratio: 37/24;
            object-fit: cover;
        }
        .images img {
            aspect-ratio: 35/24;
            object-fit: cover;
        }
    }
}
@media screen and (hover:hover) {
    .share .box a:hover::before {
        color: var(--white);
        background-color: var(--blue);
    }
}