.cz-intro__section {
    background-image: url('../../img/greeting-bg.jpg');
    height: 600px;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.cz-intro__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cz-intro__text {
    display: flex;
    align-items: start;
    row-gap: 12px;
    flex-direction: column;
    padding-top: 185px;

    color: var(--primary-fc);
}

.cz-intro__title {
    color: var(--primary-fc);
    font-family: "Vollkorn", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    /*max-width: 450px;*/
}

.cz-intro__subtitle {
    color: var(--primary-fc);
    font-family: "Vollkorn", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 64px;

}

.cz-intro__paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    /*max-width: 400px;*/
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cz-intro__image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1120px) {
    .cz-intro__section {
        height: 400px;
    }

    .cz-intro__title {
        font-size: 16px;
    }

    .cz-intro__subtitle {
        font-size: 40px;
    }

    .cz-intro__text {
        padding-top: 75px;
    }
}

@media only screen and (max-width: 920px) {
    .cz-intro__content {
        position: absolute;
        top: 0;
        left: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        align-items: center;
    }

    .cz-intro__title {
        line-height: 24px;
    }

    .cz-intro__subtitle {
        line-height: 40px;
    }

    .cz-intro__image {
        position: static;
        width: 100%;
        height: auto;
    }

    .cz-intro__image-container {
        grid-column: 1;
        grid-row: 1;
    }
    .cz-intro__text {
        padding: 25px 2.5%;
    }
}

@media only screen and (max-width: 600px) {
    .cz-intro__text {
        align-items: stretch;
    }

    .info-btn {
        text-align: center;
    }
}


