.refc-land-map {
    background: #fff;
    border: 1px solid #e2e8e0;
    border-radius: 6px;
    box-shadow: 0 2px 14px rgba(13, 27, 42, 0.05);
    margin: 28px 0;
    overflow: hidden;
}

.refc-land-map__header {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 22px 24px;
}

.refc-land-map__header h2 {
    color: #0d1b2a;
    font-size: 1.35rem;
    margin: 0 0 4px;
}

.refc-land-map__header p {
    color: #5a6474;
    margin: 0;
}

.refc-land-map__search {
    flex: 0 1 340px;
    margin: 0;
}

.refc-land-map__search input {
    border: 1px solid #e2e8e0;
    border-radius: 4px;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.refc-land-map__canvas {
    background: #eef3ed;
    border-top: 1px solid #e2e8e0;
    width: 100%;
}

.refc-land-map__list {
    border-top: 1px solid #e2e8e0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 360px;
    overflow: auto;
    padding: 18px;
}

.refc-land-map-card {
    background: #fbfaf7 !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 6px;
    color: #1a1a2e !important;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: 76px 1fr;
    min-height: auto;
    padding: 10px;
    text-align: left;
    width: 100%;
}

.refc-land-map-card:hover,
.refc-land-map-card:focus {
    background: #fff !important;
    border-color: #1b6b3a;
    color: #1a1a2e !important;
    outline: none;
}

.refc-land-map-card img {
    border-radius: 4px;
    height: 68px;
    object-fit: cover;
    width: 76px;
}

.refc-land-map-card__title {
    color: #0d1b2a;
    display: block;
    font-weight: 750;
    line-height: 1.25;
    margin-bottom: 4px;
}

.refc-land-map-card__meta {
    color: #5a6474;
    display: block;
    font-size: 0.88rem;
    line-height: 1.35;
}

.refc-land-map-popup {
    color: #1a1a2e;
    max-width: 240px;
}

.refc-land-map-popup img {
    border-radius: 4px;
    display: block;
    height: 110px;
    margin: 0 0 10px;
    object-fit: cover;
    width: 220px;
}

.refc-land-map-popup strong {
    color: #0d1b2a;
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 6px;
}

.refc-land-map-popup span {
    color: #5a6474;
    display: block;
    line-height: 1.35;
    margin-bottom: 4px;
}

.refc-land-map-popup a {
    color: #1b6b3a;
    display: inline-block;
    font-weight: 750;
    margin-top: 6px;
}

.refc-land-map__empty {
    color: #5a6474;
    padding: 18px;
}

@media (max-width: 900px) {
    .refc-land-map__header {
        align-items: stretch;
        display: block;
    }

    .refc-land-map__search {
        display: block;
        margin-top: 14px;
    }

    .refc-land-map__list {
        grid-template-columns: 1fr;
        max-height: 420px;
    }
}
