/*
Theme Name: Local Business Directory Minimal
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Bare minimum WordPress theme for a local business directory using standard posts.
Version: 1.0
Text Domain: local-directory-minimal
*/

body {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-header,
.site-footer {
  padding: 1rem 0;
}

.business-card {
  border: 1px solid #ddd;
  border-radius: .5rem;
  padding: 1rem;
  height: 100%;
  background: #fff;
}
.business-card .hidden-in-excerpt {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;   
}

.business-card img {
    width: 100%!important;
    height: 250px!important;
    object-fit: cover;
    object-position: center;
}

.business-card a {
    display: block;
	margin-bottom: 1rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
.single-featured-image {
    max-width: 32%;
    float: right;
}