.territory {
    overflow: hidden;
    flex-direction: row;
    gap: 50px;
    background: #ffffff;
    text-align: left;
}

.territory-content-wrapper {
    flex-direction: row;
    gap: 50px;
}

.territory-content {
    position: relative;
    z-index: 2;
    flex: 1.1;
}

.territory-photo {
    flex: 0.9;
    height: 68vh;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 24px 70px rgba(8, 30, 55, 0.14);
}

.territory-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.territory-number {
    display: inline-flex;
    min-width: 58px;
    height: 38px;
    margin-bottom: 20px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: #c8102e;
    color: #ffffff;
    font-weight: 900;
}

.territory-title {
    margin: 8px 0 28px;
    color: #c8102e;
    font-family: "PT Serif", Georgia, serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 58px;
}

.territory-mapline {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 640px;
    margin: 38px 0 34px;
    padding-top: 28px;
    justify-content: space-between;
    gap: 0;
}

.territory-mapline::before {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #c8102e, #38a9e8);
    content: "";
}

.territory-mapline div {
    position: relative;
    display: flex;
    width: 25%;
    padding: 0 18px 0 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.territory-mapline div::before {
    position: absolute;
    top: -25px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 3px solid #ffffff;
    background: #c8102e;
    box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.22);
    content: "";
}

.territory-mapline span {
    display: block;
    color: #0d2e4f;
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    padding-top: 10px;
}

.territory-text {
    color: #4d5b6d;
    font-size: 18px;
    line-height: 24px;
    max-width: 400px;
    padding-top: 20px;
}

@media (max-width: 1100px) {
    .territory-title {
        font-size: 44px;
        line-height: 50px;
    }
}

@media (max-width: 860px) {
    .territory-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 34px;
    }

    .territory-title {
        font-size: 34px;
        line-height: 38px;
    }

    .territory-photo {
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .territory-photo img {
        min-height: 280px;
    }

    .territory-mapline {
        max-width: 100%;
        margin: 32px 0 28px;
        padding-top: 0;
        padding-left: 22px;
        flex-direction: column;
        gap: 22px;
    }

    .territory-mapline::before {
        top: 4px;
        right: auto;
        bottom: 4px;
        left: 0;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, #c8102e, #38a9e8);
    }

    .territory-mapline div {
        width: 100%;
        padding: 0;
    }

    .territory-mapline div::before {
        top: 2px;
        left: -29px;
        width: 12px;
        height: 12px;
    }

    .territory-mapline span {
        padding-top: 0;
        font-size: 16px;
        line-height: 21px;
    }

    .territory-text {
        max-width: 100%;
        padding-top: 10px;
    }
}
