/* lists-article-lvshi.css - Based on Figma Node 2199:302 */

/* 容器基础样式 */
.lvshi-list-section {
    padding-bottom: 59px;
    position: relative;
    background-color: #fff;
}

.lvshi-container {
    max-width: 998px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 标题样式 */
.lvshi-title-wrapper {
    display: flex;
    gap: 10px;
    height: 168px;
    align-items: center;
    padding: 35px 0;
    width: 100%;
}

.lvshi-divider {
    width: 81px;
    height: 2px;
    background-color: #000;
}

.lvshi-title-text {
    font-family: 'Open Sans Condensed', "Noto Sans SC", sans-serif;
    font-size: 35px;
    color: #000;
    font-weight: 300;
    padding: 0 27px;
    white-space: nowrap;
}

/* 列表网格样式 - 1440px 基础 */
.lvshi-grid {
    display: grid;
    grid-template-cols: repeat(3, minmax(0, 1fr));
    gap: 34px;
    width: 100%;
}

/* 文章卡片样式 */
.lvshi-card {
    background-color: #fff;
    border-bottom: 1px solid #000;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.lvshi-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lvshi-card-image-wrapper {
    aspect-ratio: 1 / 1;
    height: auto;
    width: 100%;
    position: relative;
    background: #f5f5f5;
}

.lvshi-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background-color: #f5f5f5;
}

.lvshi-card-content {
    background-color: #fff;
    padding: 25px 29px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: static;
}

.lvshi-card-title {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #00437a;
    line-height: 28px;
    margin: 0;
}

.lvshi-card-position {
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #e7581a;
    line-height: 40px;
    margin-top: 5px;
}

.lvshi-card-intro {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
    opacity: 1;
    height: auto;
    overflow: hidden;
}
}

/* 分页器样式 */
.lvshi-pagination {
    background-color: #fff;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
    margin-top: 20px;
}

.lvshi-pagination a,
.lvshi-pagination span {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 24px;
    color: #00437a;
    text-decoration: none;
    font-weight: 300;
}

.lvshi-pagination .current {
    color: #e7581a;
    font-weight: 700;
}

.lvshi-pagination .next,
.lvshi-pagination .pre {
    color: #00437a;
}

/* 平板/小屏断点 (Pad-1280) */
@media (max-width: 1280px) {
    .lvshi-container {
        max-width: 599px;
    }
    
    .lvshi-grid {
        grid-template-cols: repeat(2, minmax(0, 1fr));
    }
    
    .lvshi-title-wrapper {
        width: 599px;
    }
}

/* 手机断点 (Phone-768) */
@media (max-width: 768px) {
    .lvshi-container {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .lvshi-grid {
        grid-template-cols: 1fr;
        gap: 47px;
    }
    
    .lvshi-card {
        height: auto;
        min-height: auto;
        border: 1px solid #a6a6a6;
        padding-bottom: 30px;
    }
    
    .lvshi-card-image-wrapper {
        aspect-ratio: 1 / 1;
        height: auto;
    }
    
    .lvshi-card-category {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: 20px;
        line-height: 38px;
    }
    
    .lvshi-card-title {
        font-size: 22px;
        line-height: 40px;
    }
    
    .lvshi-title-wrapper {
        height: auto;
        padding: 40px 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .lvshi-title-text {
        font-size: 28px;
        padding: 0 10px;
        white-space: normal;
        text-align: left;
    }

    .lvshi-divider {
        flex-shrink: 0;
        width: 60px;
    }
}