.stream__title {
    margin: 135px 0 39px;
}

.stream__posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    padding-top: 128px;
    margin-bottom: 185px;
}

.stream__post {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.stream__post-imgbox {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 22px;
    overflow: hidden;
    position: relative;
}

.stream__post:nth-child(4n+1) .stream__post-imgbox {
    background-color: var(--color-orange-light);
}

.stream__post:nth-child(4n+2) .stream__post-imgbox {
    background-color: var(--color-orange-light-1);
}

.stream__post:nth-child(4n+3) .stream__post-imgbox {
    background-color: var(--color-orange-light-2);
}

.stream__post:nth-child(4n+4) .stream__post-imgbox {
    background-color: var(--color-orange-light-3);
}

.stream__post-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.stream__post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stream__post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream__post-date {
    color: var(--color-black);
    font-family: "NotoSans";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 10px;
}

.stream__post-title {
    color: var(--color-black);
    font-family: "NotoSans";
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
    margin-bottom: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.stream__post-text {
    color: var(--color-black);
    font-family: "NotoSans";
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.stream__post-text p {
    margin: 0;
}

.stream__post-text h1,
.stream__post-text h2,
.stream__post-text h3,
.stream__post-text h4,
.stream__post-text h5,
.stream__post-text img,
.stream__post-text figure,
.stream__post-text ul,
.stream__post-text ol,
.stream__post-text blockquote,
.stream__post-text div {
    display: none;
}

.stream__post-button {
    width: 244px;
}

@media screen and (max-width: 1024px) {
    .stream__title {
        margin: 79px 0 25px;
    }

    .stream__posts {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 40px;
        margin-bottom: 233px;
    }

    .stream__post {
        gap: 24px;
    }

    .stream__post-imgbox {
        height: 190px;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .stream__post-icon {
        width: 80px;
        height: 80px;
    }

    .stream__post-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .stream__post-date {
        color: var(--color-black-1);
        margin-bottom: 16px;
    }

    .stream__post-title {
        font-family: "Lack";
        font-size: 18px;
        font-weight: 400;
        line-height: 25px;
        margin-bottom: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .stream__post-text {
        color: var(--color-black-1);
        font-size: 16px;
        line-height: 26px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 9;
        -webkit-box-orient: vertical;
    }

    .stream__post-button {
        width: 201px;
    }
}

.post__title {
    margin: 134px 0 100px;
}

.post__date {
    color: var(--color-black-1);
    font-family: "NotoSans";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 15px;
}

.post__inner {
    color: var(--color-black-1);
    margin-bottom: 155px;
    font-family: "NotoSans";
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.post__inner h2 {
    max-width: 993px;
    width: 100%;
    font-family: "Lack";
    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -0.8px;
    margin: 0 0 33px;
}

.post__inner h3 {
    max-width: 993px;
    width: 100%;
    font-family: "Lack";
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.24px;
    margin: 0 0 16px;
}

.post__inner h3:has(+figure),
.post__inner h3:has(+img) {
    margin: 0 0 33px;
}

.post__inner p {
    max-width: 993px;
    width: 100%;
    margin: 0 0 33px;
}

.post__inner ul,
.post__inner ol {
    margin: 0 0 41px;
    padding-left: 26px;
}

.post__inner ul {
    list-style-type: disc;
}

.post__inner li:not(:last-of-type) {
    margin-bottom: 10px;
}

.post__inner ul li::marker {
    font-size: 14px;
}

.post__inner a {
    color: var(--color-orange);
    transition: .2s ease-in-out;
}

.post__inner a:hover {
    color: var(--color-black);
}

.post__inner figure {
    max-width: 1292px;
    max-height: 534px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 0 33px;
}

.post__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post__inner *:last-child {
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .post__title {
        margin: 63px 0 32px;
    }
}
