.doctor-posts-widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.doctor-posts-widget .post-item {
    text-align: center;
    border: 1px solid #cc5500;
    padding: 10px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
	border-radius: 5px;
}

.doctor-posts-widget .post-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.doctor-posts-widget .post-thumbnail img {
    max-width: 100%;
    height: auto;
	border-radius: 5px;
}

.doctor-posts-widget h3 {
    margin-top: 15px;
    font-size: 1.2em;
    color: #cc5500;
	margin-bottom: 5px;
}

.doctor-posts-widget .post-item a {
    text-decoration: none;
    color: inherit;
}
