*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "poppins";
}
.single-post-type{
    max-width: 1140px;
    margin: 100px auto;
}
h1{
    font-size: 32px;
    color: #F68A00 !important;
}
.image-post-type{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin: 20px 0px;
}
.image-post-type img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.grp-row-one{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.item-grp{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border-radius: 3px;
    border: 1px solid #ddd;
}
.item-grp h4{
    color: #F68A00;
    font-size: 18px;
    font-weight: 500;
    margin: 0px !important;
}
.item-grp p{
    font-size: 14px;
}
.item-grp img{
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
}
.info-item-grp{
    display: flex;
    flex-direction: column;
}
.grp-row-tow{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

@media screen and (max-width: 768px){
    .grp-row-one{
        grid-template-columns: repeat(2, 1fr);
    }
    .grp-row-one > :nth-child(3) {
        grid-column: 1 / -1;
    }
    .single-post-type{
        margin: 50px auto;
        padding: 0px 10px;
    }
}
@media screen and (max-width: 480px){
    .grp-row-one{
        grid-template-columns: 1fr;
    }
    .grp-row-tow{
        grid-template-columns: 1fr;
    }
}