/* Related Articles List Styles */
.related-list-section {
    padding-bottom: 59px;
    background-color: #fff;
}

.related-list-container {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 标题样式 */
.related-list-title {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 168px;
    width: 998px;
    padding: 35px 0;
    box-sizing: border-box;
}

.title-line {
    width: 81px;
    height: 2px;
    background-color: #000;
}

.title-text {
    font-family: 'Open Sans Condensed', 'Noto Sans JP', sans-serif;
    font-size: 35px;
    font-weight: 300; /* Light */
    color: #000;
    padding: 0 27px;
    margin: 0;
}

/* 列表容器 */
.related-articles-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 998px;
    align-items: center;
}

/* 单个条目 */
.related-article-item {
    background-color: #fff;
    border: 2px solid rgb(160,160,160); /* 这里的 444 边框是设计稿中明确的 */
    height: 165px;
    width: 996px;
    position: relative;
    box-sizing: border-box;
}

.item-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
}

.item-image {
    position: absolute;
    width: 247px;
    height: 162px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    padding-left: 327px; /* 依据设计稿 left: 327px */
    padding-top: 36px;
}

.item-title {
    font-family: "Open Sans Condensed", "Noto Sans JP", "Noto Sans SC", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    color: #00437a;
    width: 576px;
    margin: 0 0 10px 0; /* 这里的 10px 是估算的标题和日期落差 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-date {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    margin: 0;
}

/* Pad-1280 适配 */
@media (max-width: 1280px) {
    .related-list-container {
        width: 1280px;
    }
    
    .related-list-title,
    .related-articles-columns {
        width: 600px;
    }
    
    .related-article-item {
        width: 600px;
        height: 132px;
    }
    
    .item-image {
        width: 193px;
        height: 132px;
    }
    
    .item-info {
        padding-left: 233px;
        padding-top: 12px;
    }
    
    .item-title {
        width: 290px;
        font-size: 22px;
    }
}

/* Phone-768 适配 */
@media (max-width: 768px) {
    .related-list-container {
        width: 768px;
        padding: 0 30px;
        box-sizing: border-box;
    }
    
    .related-list-title,
    .related-articles-columns {
        width: 100%;
    }
    
    .related-article-item {
        width: 689px; /* 设计稿中 768 状态下的 w: 689 */
        max-width: 100%;
        height: 127px;
    }
    
    .item-image {
        width: 193px;
        height: 127px;
    }
    
    .item-info {
        padding-left: 235px;
        padding-top: 25px;
    }
    
    .item-title {
        width: 418px;
        max-width: 100%;
        font-size: 19px;
    }
}
