.geography__block {
    margin-bottom: 80px;
}

.geography__block .geography__body {
    position: relative;
    width: 100%;
}

.geography__block .geography__img {
    width: 100%;
    height: auto;
}

.geography__block .geography__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.geography__block .geography__point-mobile {
    display: none;
}

.geography__block .item-geography__tag {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geography__block .item-geography__point {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.geography__block .item-geography__point svg {
    width: clamp(0.625rem, 0.224rem + 0.65vw, 1rem);
    height: clamp(0.625rem, 0.224rem + 0.65vw, 1rem);
    object-fit: contain;
    display: block;
}

.geography__block .item-geography__link {
    position: absolute;
    bottom: 35px;
    left: -10px;
    width: fit-content;
    padding: 15px;
    border-radius: 5px;
    background: var(--background);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    z-index: 1;
    transition: 0.2s ease-in;
}

.geography__block .item-geography__link::after,
.geography__block .item-geography__link::before {
    content: '';
    position: absolute;
}

.geography__block .item-geography__link::after {
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 100%;
}

.geography__block .item-geography__link::before {
    bottom: -7px;
    left: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 12px;
    background-image: url(./images/before-link.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.geography__block .item-geography__tag:hover .item-geography__link {
    opacity: 1;
    pointer-events: all;
}

.geography__block .item-geography__desc {
    position: relative;
    max-width: 250px;
    width: max-content;
    padding-right: 35px;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.geography__block .item-geography__desc::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url(./images/desc-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

@media (max-width: 1024px) {
    .geography__block .geography__body {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .geography__block .geography__img {
        position: relative;
    }
    .geography__block .geography__point-mobile {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(0.25rem, 0.136rem + 0.57vw, 0.5rem);
        height: clamp(0.25rem, 0.136rem + 0.57vw, 0.5rem);
        flex-shrink: 0;
    }
    .geography__block .geography__point-mobile svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
    .geography__block .geography__wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .geography__block .item-geography {
        width: 100%;
    }
    .geography__block .item-geography__tag,
    .geography__block .item-geography__link {
        position: static;
    }
    .geography__block .item-geography__point {
        display: none;
    }
    .geography__block .item-geography__link {
        width: 100%;
        padding: 10px;
        opacity: 1;
        pointer-events: all;
    }
    .geography__block .item-geography__link::after,
    .geography__block .item-geography__link::before {
        display: none;
    }
    .geography__block .item-geography__desc {
        max-width: unset;
        width: 100%;
    }
    .geography__block .item-geography__desc::before {
        bottom: unset;
        top: 0;
    }
}
@media (max-width: 992px) {
    .geography__block {
        margin-bottom: 60px;
    }
}
@media (max-width: 768px) {
    .geography__block {
        margin-bottom: 40px;
    }
    .geography__block .geography__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .geography__block .geography__wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .geography__block .item-geography__link {
        padding: 0;
    }
}