@import url('basic.css');
.post_grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.post_grid a {
    text-decoration: none;
}
.projtitle, .projsub  {
    color: #121212;
    margin: 0px;
    letter-spacing: 0.2px;
}
.projtitle {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 110%;
}
.projsub {
    font-size: 16px;
    text-transform: unset;
    font-weight: 400;
    line-height: 110%;
}
.thumbhome {
    width: 100%;
    margin-bottom: 12px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "IBM Plex Serif", serif;
    font-weight: 700;
}
.regularimg {
    width: 100%;
    max-width: 1200px;
}
.project_link {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.project_thumb {
    background-size: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 25px;
}
.project_thumb img {
    box-sizing: border-box;
    border: 0.5px solid rgb(234, 234, 234);
}
.grid1 img {
    width: 100%;
}
.grid1 {
    width: 90%;
    max-width: 550px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1px;
    grid-row-gap: 1px;
}

/* mobile */
@media (max-width:1350px) {
    .post_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width:768px) {
    .post_grid {
        display: grid;
        width: 90%;
        max-width: 1200px;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .thumbhome {
        width: 100%;
        margin-bottom: 10px;
    }
    .big_home_title {
        font-size: 1.4rem;
    }
}

@media (max-width: 450px) {
    .post_grid {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
}
