.page-header {
    width: 100%;
    background-color: var(--jkpodolog-color-ivory);
    padding: 100px 260px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    box-sizing: border-box;
    
}

.page-header-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
}

.page-header-content>.page-header-title {
    flex: 1 1 0px;

}

.page-header-content>.page-header-text {
    flex: 1 1 0px;
    height: fit-content;
}

.page-header-text {
    margin: 0;
    padding: 0;
    font-size: 24px;
}

.page-header-title {
    margin: 0;
    padding: 0;
    font-size: 60px;
    line-height: 1;


}

.page-header-image {
    max-height: 420px;
}

.page-header-image img {
    aspect-ratio: 660/420;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 5px 60px;
}

.page-header-text-and-buttons {
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-header-image {
    flex: 1 1 0px;
}

.page-header-buttons {
    height: fit-content;
    display: flex;
    gap: 25px;
    padding: 25px 0 0 ;
}

.page-header-no-image .page-header-content {
    align-items: flex-start;
}

@media (max-width: 1200px) {
    .page-header {
        max-width: 100%;
        padding: 40px 20px;
    }

    .page-header-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        align-items: flex-start;
        max-width: 600px;
    }

    .page-header-image img {
        height: auto;
        max-height: 420px;
    }

    .page-header-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: left;
        gap: 15px;
        padding: 16px 8px;
    }

    .page-header-title {
        font-size: 36px;
    }

    .page-header-text {
        font-size: 20px;
    }

    .page-header-text-and-buttons {
        gap: 15px;
    }
}