.post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}
@media only screen and (max-width: 618px) {
		.post-grid {
    display: grid;
       grid-template-columns:  1fr;
    gap: 15px;
    margin-top: 20px;
}
}

.post-box {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.post-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.post-box h2 {
    font-size: 18px;
    margin-top: 10px;
}

.post-box p {
    font-size: 14px;
    color: #666;
}
.btn {
    display: inline-block;
    padding: 8px 15px;
    background: #007BFF;
    color: white;
    border-radius: 3px;
    text-decoration: none;
    margin-top: 10px;
}

.btn:hover {
    background: #0056b3;
}


/*interno*/
.comentarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.comentario-box {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.comentario-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.comentario-box a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
}

.comentario-box a:hover {
    text-decoration: underline;
}