/*******************
Single Service Styling
*******************/

.single_container {
  width: 100%;
  max-width: 1592px;
  display: flex;
  justify-content: center;
  margin: auto;
}

.single_main_content {
  width: 100%;
  max-width: 70%;
}

.single_sidebar {
  width: 100%;
  max-width: 30%;
}

.single_hero {
  gap: 22px;
  align-items: flex-end;
  border-bottom: 2.5px solid var(--accent, #8dc63f);
  padding-bottom: 33px;
  margin-bottom: 16px;
}

/*Breadcrumbs*/
.single_breadcrumbs {
  margin-bottom: 15px;
  font-family: var(--gp-font--oswald);
  text-transform: uppercase;
  font-weight: 300;
  font-size: clamp(0.875rem, 5vw, 1.125rem);
}

.single_breadcrumbs a {
  color: var(--contrast, #000000);
  text-decoration: none;
}

.single_breadcrumbs a:hover {
  text-decoration: underline;
}

span.single_breadcrumb_current {
  color: var(--accent, #8dc63f);
  font-weight: 400;
}

/*Images and Title*/
/* Constrain the container */
.single_featured_image {
  width: 228px;
  height: 228px;
  flex-shrink: 0; /* critical — stops flexbox from stretching it */
  overflow: hidden;
}

/* Image fills the container */
.single_featured_image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.single_main .single_hero h1 {
  font-size: clamp(1.25rem, 5vw, 4rem) !important;
  text-transform: uppercase;
  color: var(--base);
  line-height: 1.1;
  color: var(--contrast, #000000);
  margin-bottom: 0 !important;
}

.single_main .single_intro_content h2 {
  font-size: clamp(2rem, 5vw, 2.563rem) !important;
}

.single_main .single_intro_content h3 {
  font-size: clamp(1.75rem, 5vw, 2rem) !important;
}

span.single_date {
  font-size: 1rem;
  color: var(--contrast-5, #9e9e9e);
  font-family: var(--gp-font--lato, "Lato", sans-serif);
  font-weight: 300;
}

/*Meta and Share*/
.single_share {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 40px;
}

.single_share a {
  display: inline-flex;
  align-items: center;
}

.single_share a img {
  width: 28px;
  height: 28px;
  display: block;
  transition: opacity 0.2s ease;
}

.single_share a:hover img {
  opacity: 0.7;
}

.single_meta {
  margin-bottom: 28px;
}
.social_share_icons a {
  text-decoration: none;
}

span.single_share_label {
  font-size: 1.25rem;
  font-family: var(--gp-font--oswald);
  display: flex;
  gap: 15px;
  align-items: center;
}

.social_share_icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.single_share a img,
.social_share_icons a img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.bottom-section,
.top_section {
  padding-right: 90px;
  margin-right: 90px;
}

.bottom-section {
  border-right: 1px solid #dddddd;
}

/*******************
Single Industry Styling
*******************/

.hero_banner_left_side .hero_banner_section .hero_banner_container{
  justify-content: flex-start;
  display: flex;
}

.industry_container {
    max-width: 100%;
    overflow: hidden;
}

.industry_flexbox {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.hero_banner_left_side {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 60px 0 60px 60px;
}

.hero_right_image {
    flex: 0 0 32%;
    max-width: 42%;
    align-self: stretch;
}

.hero_right_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero_banner_left_side .hero_banner_section .hero_banner_container {
    justify-content: flex-start;
    display: flex;
}

/* Subtitle */
.industry_hero_subtitle {
    margin-top: 30px;
}

.industry_textbox p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 16px;
}










@media screen and (max-width: 768px) {
  .single_container {
    flex-direction: column;
  }

  .single_main_content,
  .single_sidebar {
    max-width: 100%;
  }

  .bottom-section,
  .top_section {
    padding-right: 0;
    margin-right: 0;
  }

  .bottom-section {
    border-right: 0px;
  }

  .single_featured_image {
    width: 100%;
  }

  .single_featured_image img {
    aspect-ratio: auto;
    width: 100%;
    height: 228px;
    object-fit: cover;
  }

  .single_hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
