/* ===== Hero section ===== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 654px;
    height: 80vh;
    max-height: 100vh;
    overflow: hidden;
    color: #fff;
    font-family: "Futura", sans-serif;
}

.hero-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
    z-index: 0;
    position: relative;
}

.hero-banner:hover .hero-banner__video {
    filter: grayscale(0%);
}

.hero-banner__bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-banner__overlay {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    padding-left: 20px;
}

.hero-banner__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
    z-index: -1;
}

.hero-banner:hover .hero-banner__image {
    filter: grayscale(0%);
}

.hero-banner__content {
    text-align: right;
}


.hero-banner__title {
    font-size: clamp(27px, 5.5vw, 77px);
    font-weight: 300;
    text-transform: uppercase;
    font-family: var(--font-jost);
    text-align: left;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    display: block;
}

.hero-banner__title img{
    width: 13%;
}

.hero-banner__subtitle {
    font-size: clamp(18px, 2vw, 36px);
    margin: 0;
    padding-bottom: 40px;
    text-align: left;
    text-transform: uppercase;
}

.header-blog__container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

.blog-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px 20px;
}

.blog-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.blog-card {
    border: 1px solid #ffffff;
    background: none;
}
.blog-card__title {
    color: #ffffff;
}
.blog-card__meta {
    color: #ffffff;
}
.button-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 110px;
}
.btn-wire.is-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
 @media(max-width:1730px){
    .blog-content {
        grid-template-columns: repeat(4, 1fr);
    }
    .blog-card:nth-child(n + 5) {
        display: block
    }
 }
  @media(max-width:1430px){
    .blog-content {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-card:nth-child(n + 5) {
        display: block
    }
    .blog-card:nth-child(n + 4) {
        display: block;
    }
 }
   @media(max-width:1060px){
.header-blog__container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
}
   }
   @media(max-width:980px){
      .blog-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .button-block{
        margin-bottom: 60px;
    }
   }
   @media(max-width:580px){
    .blog-content {
        grid-template-columns: repeat(1, 1fr);
        display: grid;
        margin-top: 30px;
        gap: 20px;
    }
        .hero-banner__bg{
        max-height: 450px;
    }
    .hero-banner__overlay{
      max-height: 450px;
      padding-left: 10px;  
    }
    .hero-banner{
        max-height: 450px;
        min-height: 450px;
    } 
   }