

.geo-blocked {
    position: relative;
    min-height: 100vh;
    background: #1f1f1f;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.geo-blocked__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.geo-blocked__img-wrap {
    position: relative;
    width: 776px;
    height: 708px;
    flex-shrink: 0;
}

.geo-blocked__img {
    position: absolute;
    width: 128.87%;
    height: 105.93%;
    left: -7.73%;
    top: 0.07%;
    object-fit: cover;
    max-width: none;
}

.geo-blocked__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1f1f1f 0%, rgba(31, 31, 31, 0) 90%);
}

.geo-blocked__text {
position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1148px;
    margin: 0 auto;
    padding: 100px 0px 100px 0px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.geo-blocked__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 560px;
}

.geo-blocked__title {
    font-family: var(--font-heading, 'Ruberoid', sans-serif);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.geo-blocked__desc {
    font-family: var(--font-body, 'Ruberoid', sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.geo-blocked__actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.geo-blocked__btn-home {
    background: #3af185;
    color: #3a3a3a;
    border-color: #3af185;
}

.geo-blocked__btn-home:hover {
    background: #2fd672;
    border-color: #2fd672;
    color: #3a3a3a;
}

.btn--outline-green {
    background: transparent;
    color: #fff;
    border: 2px solid #3af185;
}

.btn--outline-green:hover {
    background: rgba(58, 241, 133, 0.1);
    color: #fff;
}

@media (max-width: 1200px) {
    .geo-blocked__text {
        padding-left: 60px;
    }
}

@media (max-width: 900px) {
    .geo-blocked {
        min-height: auto;
        flex-direction: column;
    }

    .geo-blocked__bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: 300px;
        justify-content: center;
    }

    .geo-blocked__img-wrap {
        width: 100%;
        height: 300px;
    }

    .geo-blocked__img {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
    }

    .geo-blocked__gradient {
        background: linear-gradient(to bottom, #1f1f1f 0%, rgba(31, 31, 31, 0) 60%);
    }

    .geo-blocked__text {
        padding: 60px 24px 40px;
        max-width: 100%;
    }

    .geo-blocked__content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .geo-blocked__title {
        font-size: 28px;
    }

    .geo-blocked__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .geo-blocked__btn-home,
    .geo-blocked__btn-contact {
        text-align: center;
        justify-content: center;
    }
}
