/* =========================
   Single Post (Blog) CSS
   Based on single-project.css
   ========================= */

#main-content #left-area {
  padding-right: 0px;
  padding-bottom: 0px;
}

#main-content .container {
  padding-top: 6% !important;
  padding-bottom: 6%;
}

#main-content .container:before {
  display: none;
}

.single-post .entry-content {
  padding-top: 0px;
}

/* ATF */
.gla-post-hero {
  position: relative;
  width: 100%;
  min-height: 270px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 50px 0px;
}

.gla-post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.gla-post-hero__inner {
  position: relative;
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
  color: #fff;
}

.gla-post-hero__title {
  margin: 0 0 10px;
  color: #fff;
  max-width: 768px;
}

/* Breadcrumbs / Categories */
.gla-post-hero__cats,
.gla-post-hero__cats a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.gla-post-hero__cats a:hover {
  text-decoration: underline;
}

.gla-post-hero__breadcrumbs,
.gla-post-hero__breadcrumbs a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
}

.gla-post-hero__breadcrumbs a {
  border-bottom: 1px solid;
  font-weight: bold;
  text-transform: uppercase;
}

.gla-breadcrumbs__sep {
  margin: 0 8px;
  opacity: 0.8;
}

/* Video */
.gla-post-video {
  margin: 0 0 40px;
}

.gla-post-video__el {
  width: 100%;
  height: auto;
  display: block;
}

/* Make sure content area stays full width (no sidebar spacing) */
.gla-post-fullwidth {
  width: 100% !important;
  float: none !important;
}

@media (max-width: 980px) {

  #main-content .container {
    padding-top: 50px !important;
    padding-bottom: 50px;
  }

}

@media (max-width: 767px) {

  .gla-post-hero {
    padding: 100px 0px 40px;
  }

  .gla-post-hero__title {
    font-size: 25px;
    padding: 0px;
  }

  .gla-post-video {
    margin-bottom: 25px;
  }

}