.industries-hero {
    --cw: 100%;
    --gap: 18px;
    --rad: 16px;
    padding-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.industries-hero__container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: var(--gap);
	grid-template-areas: "left right";
}
.industries-hero__left{  grid-area:left;  }
.industries-hero__right{ grid-area:right; }


.industries-hero__left {
    background: #F6F6F6;
    border-radius: var(--rad);
    padding: 80px 90px;
}

.industries-hero__right{
  position: relative;
  overflow: hidden;
  border-radius: var(--rad);
  background: #0f0f12;
  height: 100%;              
/*   aspect-ratio: 4 / 3;  */
}
.industries-hero__right img {
    min-height: 100%;
}
.industries-hero__right--bg{
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

	  
	  
.industries-hero__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.95) contrast(.95)
}

.industries-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1;
    border: 1px solid #A9A9A9;
    border-radius: 47px;
    padding: 5px 18px 5px 5px;
    color: #474747;
    text-decoration: none;
}

.industries-hero__chip::before {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background: center/contain no-repeat url("/wp-content/uploads/2025/10/icon-container.svg");
    flex: 0 0 24px;
}

.industries-hero__title {
    margin: 0 0 10px color: #000;
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1px;
	margin-top:90px;
}
.industries-hero__desc {
    max-width: 520px;
    color: #474747;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
	margin-bottom:90px;
}


@media (max-width:1279px) {
    .industries-hero__container {
        max-width: 100vw;
        grid-template-columns: 3fr 2fr;
        gap: 16px
    }
    .industries-hero__left {
        padding: 56px 48px
    }
    .industries-hero__title {
        font-size: 44px;
        margin-top: 56px
    }
    .industries-hero__desc {
        margin-bottom: 56px
    }
}


@media (max-width:1024px) {
    .industries-hero__container {
        max-width: 100vw;
        grid-template-columns: 1fr;
        gap: 16px
    }
    .industries-hero__right {
        order: -1;

    }
    .industries-hero__left {
        padding: 40px 28px
    }
    .industries-hero__title {
        font-size: 36px;
        margin-top: 12px
    }
    .industries-hero__desc {
        max-width: none;
        margin-bottom: 28px
    }
    .industries-hero__chip {
        font-size: 15px
    }
	
}

/* ≤768 — великі телефони */
@media (max-width:768px) {
    .industries-hero {
        padding: 12px
    }
    .industries-hero__container {
        gap: 14px
    }
    .industries-hero__right {
        aspect-ratio: 16/11
    }
    .industries-hero__left {
        padding: 26px 18px
    }
    .industries-hero__title {
        font-size: 30px
    }
    .industries-hero__desc {
        font-size: 14px;
        margin-bottom: 22px
    }
    .industries-hero__chip {
        font-size: 14px;
        padding: 4px 14px 4px 4px
    }
    .industries-hero__chip::before {
        width: 20px;
        height: 20px;
        flex-basis: 20px
    }
	
  .industries-hero__container{
    grid-template-columns:1fr;
    grid-template-areas:
      "left"
      "right";
  }
}

/* ≤480 — малі телефони */
@media (max-width:480px) {
	.industries-hero {
        padding: 8px;
    }
	.industries-hero__desc {
		font-size: 16px;
		line-height: 150%;
	}
	.industries-hero__container {
        max-width: 100vw;
		        gap: 8px;
    }
    .industries-hero__left {
        padding: 20px 16px
    }
    .industries-hero__title {
		margin-top: 30px;
        font-size: 30px
    }
    .industries-hero__chip {
        font-size: 16px;
		margin-top:20px;
    }

  .industries-hero__container{
    grid-template-columns:1fr;
    grid-template-areas:
      "left"
      "right";
  }


	
	
	
}