/* 首页国际版入口，三种语言共用，无需 JavaScript。 */
.positioning-site-entry { margin-top: 34px; }

.positioning-site-entry__link {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    padding: 20px 24px;
    border: 1px solid rgba(213, 179, 130, .5);
    border-radius: 16px;
    background: linear-gradient(115deg, rgba(255, 255, 255, .09), rgba(23, 66, 88, .42));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 12px 30px rgba(0, 0, 0, .12);
    color: #fff;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.positioning-site-entry__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(220, 189, 144, .35);
    border-radius: 50%;
    background: rgba(214, 177, 121, .1);
    color: #e6c591;
}
.positioning-site-entry__icon svg { width: 28px; height: 28px; }
.positioning-site-entry__copy { display: grid; gap: 5px; min-width: 0; }
.positioning-site-entry__title { color: #fff; font-size: 1.2rem; font-weight: 600; line-height: 1.5; }
.positioning-site-entry__domain { color: #b9cfda; font-size: .875rem; line-height: 1.5; letter-spacing: .06em; }
.positioning-site-entry__action {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-left: 24px;
    border-left: 1px solid rgba(220, 189, 144, .25);
    color: #f0d5aa;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
}
.positioning-site-entry__arrow {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e5c493;
    color: #0b263b;
    transition: transform .2s ease;
}
.positioning-site-entry__arrow svg { width: 18px; height: 18px; }
.positioning-site-entry__link:hover {
    border-color: #e5c493;
    background: linear-gradient(115deg, rgba(255, 255, 255, .14), rgba(29, 79, 99, .58));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 14px 34px rgba(0, 0, 0, .18);
}
.positioning-site-entry__link:hover .positioning-site-entry__arrow { transform: translateX(3px); }
.positioning-site-entry__link:focus-visible { outline: 3px solid #e5c493; outline-offset: 5px; }

/* 首页沿用整页缩放，桌面入口保留足够的显示字号。 */
@media (min-width: 1200px) {
    .positioning-site-entry__link { gap: 24px; padding: 24px 30px; }
    .positioning-site-entry__icon { width: 68px; height: 68px; }
    .positioning-site-entry__icon svg { width: 36px; height: 36px; }
    .positioning-site-entry__title { font-size: 1.625rem; }
    .positioning-site-entry__domain { font-size: 1.25rem; }
    .positioning-site-entry__action { font-size: 1.45rem; }
    .positioning-site-entry__arrow { width: 44px; height: 44px; }
    .positioning-site-entry__arrow svg { width: 24px; height: 24px; }
}

@media (max-width: 600px) {
    .positioning-site-entry__link { grid-template-columns: 42px minmax(0, 1fr); gap: 12px 14px; width: 100%; padding: 18px; }
    .positioning-site-entry__icon { width: 42px; height: 42px; }
    .positioning-site-entry__icon svg { width: 24px; height: 24px; }
    .positioning-site-entry__title { font-size: 1.0625rem; }
    .positioning-site-entry__domain { font-size: .875rem; }
    .positioning-site-entry__action { grid-column: 2; justify-content: space-between; gap: 10px; padding: 12px 0 0; border-left: 0; border-top: 1px solid rgba(220, 189, 144, .25); font-size: .9375rem; }
    .positioning-site-entry__arrow { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    .positioning-site-entry__link, .positioning-site-entry__arrow { transition: none; }
    .positioning-site-entry__link:hover .positioning-site-entry__arrow { transform: none; }
}
