/* 分屏式首页：在保留官网 home.css 结构基础上叠加 */
.is-home-index .section.screen-section,
.is-home-index .hero.screen-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 72px;
}

.is-home-index .section.screen-section:not(.hero) {
    padding-top: 72px;
}

.is-home-index .section-heading {
    gap: 16px;
    margin-bottom: 48px;
}

.is-home-index .section.solutions.screen-section {
    min-height: auto;
    align-items: stretch;
}

.is-home-index .section.solutions.screen-section > .site-shell,
.is-home-index .section.products.screen-section > .site-shell,
.is-home-index .section.case-studies.screen-section > .site-shell,
.is-home-index .section.partners.screen-section > .site-shell,
.is-home-index .section.news.screen-section > .site-shell,
.is-home-index .section.about.screen-section > .site-shell {
    width: var(--site-page-shell);
    max-width: calc(100% - (var(--home-shell-gap) * 2));
    margin-inline: auto;
    align-self: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.is-home-index .products__list:empty {
    display: none;
    margin: 0;
    padding: 0;
    min-height: 0;
}

.is-home-index .site-footer {
    min-height: auto;
}

/* 平板/手机分屏响应式见 public/css/site-responsive.css */

@media (max-width: 1024px) {
    .is-home-index .section.screen-section:not(.hero) {
        padding-top: 56px;
    }

    .is-home-index .section-heading {
        gap: 14px;
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    .is-home-index .section.screen-section:not(.hero) {
        min-height: auto;
        min-height: unset;
        padding-top: 48px;
    }

    .is-home-index .section-heading {
        gap: 12px;
        margin-bottom: 28px;
    }
}
