.hero-banner {
    position: relative;
    background: url(../../img/Rectangle\ 8.jpg) no-repeat center / cover;
    padding: 120px 0;

    &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.7); /* біла маска з прозорістю */
        z-index: 1; /* Щоб маска була поверх фонового зображення */
      }

    .container {
        // display: flex;
    }

    h1 {
        max-width: 700px;
        margin: auto;
        color: #C10017;
        text-align: center;
        font-family: Inter;
        font-size: 42px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-transform: uppercase;

    }

    p {
        margin: 30px auto;
        color: #000;
        text-align: center;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 30px */

    }

    .btn {
        display: flex;
        margin: 30px auto;
    }
}

.blog {
    margin-bottom: 70px;

    h2 {
        text-align: center;
        border-bottom: 10px solid rgba(255, 223, 223, 1);
        padding-bottom: 20px;
        margin-bottom: 20px;
        color: #C10000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
}

.blog-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px 0 40px;

    .blog-item {
        width: calc(33% - 30px);
        margin: 15px;

        img {
            width: 100%;
            max-height: 250px;
        }

        h3 {
            display: inline-block;
            margin-top: 14px;
            color: #000;
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }

        p {
            padding: 32px 0 42px;
            color: #454A4B;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
        }
    }
}

