/*
Single Post Specific Styling.	
*/
/*
Global Variables
*/
/*
Font Families
Font files imported at the top of _fonts.scss 
*/
/*
Mixins
Add mixins to any css page using @include
*/
/*
CSS Transitions

e.g.
.element{
	@include transition( background .2s ease-out )
} 
*/
/*
Truncate text to specific number of lines with an ellipsis

e.g. include up to three lines.
.element{
    @include truncate-text(3);
}
*/
/*
Style placholder text for inputs

e.g.
input, 
textarea { 
    @include placeholder {
        color: #333333;
    }
}
*/
.single-main .inner {
  display: block;
  max-width: 100%;
}
.single-main .inner .wp-post-image {
  margin: 2em auto;
}

.foe-share ul {
  display: flex;
  padding: 10px 0px;
  margin-left: -8px;
}
.foe-share ul li a {
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
  transition: background 0.3s ease-out;
}
.foe-share ul li a svg {
  width: 20px;
  height: 20px;
}
.foe-share ul li a:hover {
  background: #080707;
  color: white;
}

.single-residential .site-content,
.single-commercial .site-content,
.single-development .site-content {
  padding-top: 0;
}

.next-project-section {
  padding: 5%;
  text-align: center;
}
.next-project-section h4 {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.next-project-section .foe-button {
  margin: 0;
}

.single-post .gallery-block {
  padding-left: 0;
  padding-right: 0;
}
.single-post .gallery-block .gallery-items {
  gap: 1em;
  padding-bottom: 5%;
}
.single-post .gallery-block .gallery-items.has-content {
  padding-bottom: 2em;
}
.single-post .gallery-block .gallery-items .gallery-item {
  max-height: 800px;
}
.single-post .gallery-block .gallery-items .gallery-item img {
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post .gallery-block .gallery-items .gallery-item.image-half {
  flex: 0 0 calc(50% - 0.5em);
}/*# sourceMappingURL=single.css.map */