

.hero-section-inner {
    background-size: cover;
    background-position: center center;
    padding: 270px 0 80px;
    position: relative;
}

.hero-section-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(197.73deg, rgba(26, 37, 58, 0.69),rgba(26, 37, 58, 1) 100%);
}

.hero-inner-container {
    position: relative;
}

h1 {
    font-size: 90px;
    font-weight: 500;
    line-height: 92px;
    letter-spacing: -4px;
    text-align: left;
    margin-bottom: 20px;
}

.hero-inner-info {
    position: relative;
}

.hero-inner-info:before {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    top: -20px;
    left: -20px;
    background-image: url("/wp-content/uploads/2025/08/h1-rounded-corner.svg");
    background-position: center center;
}

.hero-inner-subtitle {
    color: var(--green);
    margin-bottom: 40px;
}

#posts-wrapper .post-image {
    background-image: url('/wp-content/uploads/2025/08/thumb.jpg');
    background-size: cover;
    height: 190px;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px;
}

#posts-wrapper .post-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(47, 71, 114, 0.5);
}

.post-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.29);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: 0.3s all ease-in-out;
}

.post-image .video-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.post-image .video-button-wrapper span {
    transition: 0.3s all ease-in;
    -webkit-mask: url('/wp-content/uploads/2025/08/triangle-education.svg');
    -webkit-mask-position: center center;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: #ffffff;
    -webkit-mask-repeat: no-repeat;
    transition: 0.3s all ease-in-out;
}

.post-image .video-button-wrapper:hover a {
    background-color: #ffffff;
}

.post-image .video-button-wrapper:hover a span {
    background-color: var(--green);
}

@media(max-width: 768px) {
    .hero-inner-info:before {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        height: 4px;
        background-color: var(--green);
        background-image: unset;
    }

    .hero-inner-info {
        text-align: center;
    }
}

@media(max-width: 575px) {
    .hero-section-inner {
        padding-bottom: 32px;
    }
}

@media(min-width: 1920px) {
    .hero-section-inner {
        padding-top: 325px;
    }
}