body {
    color: #141414;
}

*,
:after,
:before {
    border: 0 solid;
    box-sizing: border-box;
}

ul {
    padding-left: 0;
    list-style: none;
}

ul li {
    list-style: disc;
    margin-left: 24px;
}

#header .logo {
    height: 40px;
}

#header h1 {
    display: flex;
    column-gap: 15px;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
}

#header p {
    color: #707070;
}

a {
    color: inherit;
    text-decoration: none;
}

.category-link a {
    /* font-size: 14px; */
    background-color: #f4f4f5;
    padding: 5px 10px;
    border-radius: 5px;
    /* margin: 0 15px 10px 0; */
    display: inline-block;
}

.category-link a.active {
    background-color: #303030;
    color: #fff;
}

#container {
    display: grid;
    gap: 15px;
    margin-top: 10px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.read {
    display: flex;
    gap: 30px;
}

.read .header {
    flex-basis: 33.33%;
}

.read .body {
    flex-basis: 66.66%;
}

@media only screen and (max-width: 767px) {
    .read {
        flex-direction: column;
    }
}

.read .header h1 {
    line-height: 1.05;
    font-size: 48px;
    font-family: system-ui;
    margin-top: 0;
}

.read .header p {
    line-height: 2;
    font-size: 18px;
    font-family: system-ui;
    padding-bottom: 20px;
    padding-top: 0;
}

.read .con {
    background-color: #f9fafe;
    padding: 10px 30px;
    border-radius: 20px;
    line-height: 2;
    font-size: 18px;
    font-family: system-ui;
}

.read .header .image {
    text-align: center;
}

.bg {
    background: radial-gradient(circle at center top, #53629b, transparent 70%) no-repeat #99a4f4;
    padding: 20px 0;
    transform: translate3d(0, 0, 0);
    filter: blur(200px);
    position: absolute;
    width: 200px;
    z-index: -1;
    height: 100%;
}

.image img {
    border-radius: 20px;
    width: 100%;
}

.category {
    flex-wrap: wrap;
    align-items: flex-start;
    display: flex;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.category a {
    white-space: nowrap;
    padding: 8px 16px;
    background-color: #F2F2F2;
    border-radius: 100px;
}
.golink{
    flex-grow: 1;
    text-align: right;
}