.__media {
    padding-block: var(--space) var(--space);
}

.__media-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, max-content));
    grid-column-gap: 32px;
    grid-row-gap: 40px;
}


.__article-date {
    margin: 28px 5% 0 8%;
}

.__article-body {
    padding-block: clamp(28px, 3vw, 32px) var(--space);
}

.__article-body h2, .__article-body h3,
.__article-body h4, .__article-body h5,
.__article-body h6 {
    font-family: var(--ff-satoshi);
    font-weight: 500;
}

.__article-body h2 {
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.3;
}

.__article-body h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.4;
}

.__article-body h4 {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.4;
}

.__article-body h5 {
    font-size: 18px;
    line-height: 1.5;
}

.__article-body h6 {
    font-size: 17px;
    line-height: 1.5;
}

.__article-body p:not(:first-child) {
    margin-top: clamp(10px, 2vw, 18px);
}

.__article-body ul {
    display: flex;
    flex-direction: column;
    grid-row-gap: 2px;
    padding: clamp(10px, 2vw, 18px) 0 0 18px;
}

.__article-body li {
    list-style: disc;
}

.__post-inner {
    position: relative;
    border: 1px solid var(--v3-accent);
    border-radius: 24px;
    padding: 8px;
}

.__post-thumbnail {
    position: relative;
    border-radius: 24px;
}

.__post-thumbnail::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 57.96%, rgba(0, 0, 0, 0.80) 99.85%);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.__post-thumbnail img {
    width: 100%;
    border-radius: 24px;
}

.__post-detail {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 10%;
    z-index: 2;
}

.__post-title {
    color: var(--v3-white-2);
    font-family: var(--ff-satoshi);
    font-weight: 500;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1;
}

.__post-title a {
    color: var(--v3-white-2);
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1;
}

.__post-text {
    color: var(--v3-dark);
    font-size: clamp(16px, 2vw, 18px);
    margin-top: clamp(16px, 2vw, 18px);
}

@media only screen and (max-width: 565px) {
    .__media-inner {
        grid-template-columns: 1fr;
    }
}
