/* Osady - Mobile First */
.osady-cover {
    position: relative;
    width: 100vw;
    height: auto;
    min-height: 500px;
    margin-left: calc(-50vw + 50%);
    padding-top: 60px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
}

.osady-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8,18,28,0.95) 0%,
        rgba(8,18,28,0.6) 35%,
        rgba(8,18,28,0.25) 65%,
        rgba(8,18,28,0.95) 100%
    );
}

.osady-text {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 80px 5% 40px 5%;
    color: #fff;
}

.osady-text h1 {
    font-size: 28px;
    line-height: 1.2;
    margin: 10px 0 20px;
}

.osady-text p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 100%;
    margin-bottom: 25px;
}

.osady-text .cta {
    margin-top: 0;
    padding: 10px 20px;
    font-size: 14px;
}

/* Tablet */
@media (min-width: 769px) {
    .osady-cover {
        height: 85vh;
        min-height: 600px;
        padding-top: 70px;
    }

    .osady-text {
        padding: 90px 0 0 8%;
        max-width: 600px;
    }

    .osady-text h1 {
        font-size: 42px;
    }

    .osady-text p {
        font-size: 17px;
        max-width: 480px;
    }

    .osady-text .cta {
        padding: 12px 26px;
        font-size: 15px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .osady-cover {
        height: 100vh;
        min-height: 700px;
    }

    .osady-text {
        padding: 100px 0 0 10%;
        max-width: 650px;
    }

    .osady-text h1 {
        font-size: 54px;
    }

    .osady-text p {
        font-size: 18px;
        max-width: 520px;
    }
}
