/*
 * PsiConecta single post styles
 *
 * Small visual tweaks scoped to the single post view. Loaded only when
 * is_singular('post') so they don't leak into archives or pages.
 */

/* 1px black border on the featured image at the top of single posts.
   Uses box-sizing: border-box so the image keeps its declared width
   and the border is drawn inside the existing footprint. */
.single-post .article-post-thumbnail img,
.single-post .article-post-thumbnail .post-thumbnail-inner img {
	border: 1px solid #000;
	box-sizing: border-box;
}
