/************************* post *************************/
.postSection {
    width: 85%;
    max-width: 85%;
    margin: auto;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.posts {
    display: flex;
    gap: 15px;
    overflow: visible;
    overflow-x: auto;
    padding: 90px 10px 10px 10px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.posts .postbox {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-color: #fff;
    position: relative;
    min-width: 250px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(1.5px) saturate(180%);
        -webkit-backdrop-filter: blur(1.5px) saturate(180%);
}

.posts .postbox img {
    width: 211px;
    height: 160px;
    object-fit: cover;
    margin: 5px auto;
    transform: translateY(-60px);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.posts .postbox:hover img {
    transform: translateY(-70px) scale(1.05);
}

.posts .postbox main {
    margin-top: -60px;
    padding: 20px 10px;
}

.posts .postbox main h2 {
    line-height: 1.8;
    margin-bottom: 10px;
    color: #000;
    font-size: 14px;
    height: 50px;
    overflow: hidden;
}

.posts .postbox main p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    font-size: 12px;
    height: 80px;
    overflow: hidden;
}

.posts .postbox main span {
    color: #444;
    font-size: 0.7rem;
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-weight: bold;
    font-variation-settings: "wght" 700;
    border-radius: 7px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(223, 199, 173, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
}

.posts .postbox main a:last-child {
    position: absolute;
    left: 10px;
    bottom: 7px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(223, 199, 173, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.posts .postbox main a:last-child svg {
    width: 20px;
    height: 20px;
    fill: #444;
    transition: 0.3s;
}

.posts .postbox main a:last-child:hover {
    background: rgba(223, 199, 173, 0.6);
    box-shadow: 0 0 10px rgba(223, 199, 173, 0.6);
    transform: scale(1.1);
}

.posts .postbox main a:last-child:hover svg {
    transform: translateX(-3px);
}



@media (max-width: 900px) {
    .postSection {
        width: 95%;
        max-width: 95%;
        padding: 20px 0;
    }

    .posts .postbox main h2 {
        font-size: 0.8rem;
        height: 45px;
        overflow: hidden;
    }

}