/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    font-family: 'Hahmlet', sans-serif;
}

/* 全局图片悬停效果 */
img:not(.nav-logo-img):not(.search-icon):not(.arrow-small):not(.arrow-icon):not(.carousel-arrow img):not(.carousel-play-pause *) {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

img:not(.nav-logo-img):not(.search-icon):not(.arrow-small):not(.arrow-icon):not(.carousel-arrow img):not(.carousel-play-pause *):hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 主容器 - Home page 框架 */
/* 根据Figma: width: 1700px, height: 3825px */
.home-page {
    width: 1700px;
    min-height: 3825px;
    background-color: #FFFFFF;
    position: relative;
    margin: 0 auto;
    overflow-x: hidden;
}

/* ==================== 顶部导航栏 ==================== */
.top-nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 1701px;
    height: 80px;
    background-color: #680000;
    box-shadow: 0px 5.3125px 5.3125px 0px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-left > a:first-of-type {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.nav-logo-img {
    width: 48.4px;
    height: 46.04px;
    object-fit: contain;
    display: block;
}

.nav-home {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 17.708332061767578px;
    line-height: 1.4479999819048701em;
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-home:hover {
    color: #FFDA72;
    background-color: rgba(255, 218, 114, 0.1);
}

.nav-home.nav-active {
    color: #FFDA72;
}

.nav-center {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 17.708332061767578px;
    line-height: 1.4479999819048701em;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-link:hover {
    color: #FFDA72;
    background-color: rgba(255, 218, 114, 0.1);
}

.nav-link.nav-active {
    color: #FFDA72;
}


.nav-right {
    display: flex;
    align-items: center;
}

.search-box {
    width: 502.92px;
    height: 36.6px;
    border: 2.2135415077209473px solid #C1C1C1;
    border-radius: 885.4166870117188px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    background-color: transparent;
}

.search-icon {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

/* ==================== 主内容区域 ==================== */
.main-content {
    position: absolute;
    left: -1px;
    top: 65px;
    width: 1701px;
    min-height: 4000px; /* 增加高度，确保有足够空间 */
    padding-bottom: 100px; /* 增加底部内边距 */
}

/* ==================== Hero区域 ==================== */
.hero-section {
    position: relative;
    width: 1503px;
    height: 837px;
    left: 94px;
    top: 5px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-main-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 1503px;
    height: 837px;
    object-fit: cover;
    display: none; /* 隐藏背景图片，只显示循环图片 */
}

.hero-left-image {
    position: absolute;
    left: -133px;
    top: 0;
    width: 203px;
    height: 837px;
    object-fit: cover;
    display: none; /* 隐藏左侧背景图片 */
}

.hero-right-slideshow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1701px; /* 与导航栏宽度一致 */
    height: 837px;
    margin-left: -850.5px; /* 宽度的一半，实现水平居中 */
    margin-top: -418.5px; /* 高度的一半，实现垂直居中 */
    /* 添加柔和的阴影渐变效果 */
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.3), 
                0 0 200px rgba(0, 0, 0, 0.15);
}

.hero-right-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-right-image.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.hero-right-image.next {
    opacity: 0;
    transform: translateX(-80px) scale(0.98);
    z-index: 1;
}

.hero-right-image.exit {
    opacity: 0;
    transform: translateX(80px) scale(0.98);
    z-index: 1;
}

.hero-title {
    position: absolute;
    left: 179.18px;
    top: 289px;
    width: 963.33px;
    height: 122.78px;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 113.39958953857422px;
    line-height: 1.2007269345715155em;
    color: #FFDA72;
    z-index: 10;
}

.hero-buttons {
    position: absolute;
    left: 179px;
    top: 522.69px;
    display: flex;
    gap: 18.888891220092773px;
    align-items: flex-end;
    z-index: 10;
}

.hero-btn-primary {
    width: 236px;
    height: 86px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 26px;
    font-family: 'Hahmlet', sans-serif;
    font-weight: 500;
    font-size: 42.5px;
    line-height: 1.4500000897575827em;
    letter-spacing: '-0.5%';
    color: #000000;
    cursor: pointer;
    padding: 14.166666984558105px 18.888891220092773px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-secondary {
    width: 359px;
    height: 86px;
    background-color: transparent;
    border: 2.3611114025115967px solid #C5C5C5;
    border-radius: 26px;
    font-family: 'Hahmlet', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.4500000211927626em;
    letter-spacing: '-0.5%';
    color: #C5C5C5;
    cursor: pointer;
    padding: 14.166666984558105px 18.888891220092773px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== NEWS 区域 ==================== */
.news-section {
    position: absolute;
    left: 179px;
    top: 925px;
    width: 1345px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-title {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 800;
    font-size: 42.5px;
    line-height: 1.4479999317842371em;
    color: #000000;
}

.news-see-more {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-see-more span {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 21.262420654296875px;
    line-height: 1.4479999878000995em;
    color: #000000;
}

.arrow-small {
    width: 67px;
    height: 67px;
}

.news-grid {
    position: relative;
    width: 100%;
    min-height: 1000px;
}

.news-item {
    position: absolute;
    box-shadow: 0px 6.197916030883789px 5.3125px 0px rgba(0, 0, 0, 0.78);
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 28.33333396911621px;
    line-height: 1.4479998992919945em;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.news-card-title {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4479999542236328em;
    color: #000000;
    margin-bottom: 8px;
}

.news-card-author {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 18.888891220092773px;
    line-height: 1.447999988690546em;
    color: #FFDA72;
}

/* NEWS网格项目具体定位 - 根据Figma数据精确位置（相对于news-section，top: 925px） */
/* Rectangle 148 - 左侧特色大图，Figma位置: x: 178px, y: 1072.54px (相对于Frame 19) */
/* 相对于news-section: left: 178-179=-1px, top: 1072.54-925=147.54px */
.item-4 {
    left: -1px;
    top: 147.54px;
    width: 460.42px;
    height: 662.29px;
}

/* Rectangle 121 - Figma位置: x: 178px, y: 1753.72px */
/* 相对于news-section: left: -1px, top: 1753.72-925=828.72px */
.item-1 {
    left: -1px;
    top: 828.72px;
    width: 192.43px;
    height: 182.99px;
}

/* Rectangle 122 - Figma位置: x: 1297.17px, y: 1536.5px */
/* 相对于news-section: left: 1297.17-179=1118.17px, top: 1536.5-925=611.5px */
.item-2 {
    left: 1118.17px;
    top: 611.5px;
    width: 234.93px;
    height: 198.33px;
}

/* Rectangle 123 - 横幅，Figma位置: x: 392.86px, y: 1753.72px */
/* 相对于news-section: left: 392.86-179=213.86px, top: 828.72px */
/* 调整间距为40px：item-1右边缘(-1+192.43=191.43) + 40 = 231.43px */
.item-3 {
    left: 231.43px; /* item-1右边缘(191.43) + 40px间距 */
    top: 828.72px;
    width: 1139.24px;
    height: 182.99px;
}

/* Rectangle 124 - Figma位置: x: 662.03px, y: 1072.54px */
/* 相对于news-section: left: 662.03-179=483.03px, top: 147.54px */
/* 调整间距为40px：item-4右边缘(-1+460.42=459.42) + 40 = 499.42px */
.item-5 {
    left: 499.42px; /* item-4右边缘(459.42) + 40px间距 */
    top: 147.54px;
    width: 220px;
    height: 243.19px;
}

/* Rectangle 125 - Figma位置: x: 883.97px, y: 1069px */
/* 相对于news-section: left: 883.97-179=704.97px, top: 1069-925=144px */
/* 调整间距为25px：item-5右边缘(483.03+220=703.03) + 25 = 728.03px */
.item-6 {
    left: 759.42px; /* item-5右边缘(499.42+220=719.42) + 40px间距 */
    top: 144px;
    width: 396.67px;
    height: 246.74px;
}

/* Rectangle 126 - Figma位置: x: 662.03px, y: 1331.08px */
/* 相对于news-section: left: 483.03px, top: 1331.08-925=406.08px */
.item-7 {
    left: 483.03px;
    top: 406.08px;
    width: 618.61px;
    height: 403.75px;
}

/* Rectangle 127 - 右侧大图，Figma位置: x: 1297.17px, y: 1069px */
/* 相对于news-section: left: 1118.17px, top: 144px */
/* 调整间距为40px：item-6右边缘(759.42+396.67=1156.09) + 40 = 1196.09px */
.item-8 {
    left: 1196.09px; /* item-6右边缘(1156.09) + 40px间距 */
    top: 144px;
    width: 234.93px;
    height: 449.79px;
}

/* ==================== 分隔线1 - 在NEWS下方 ==================== */
/* ==================== 分隔线 ==================== */
.divider-news {
    position: absolute;
    left: 124px;
    top: 1036px;
    width: 1465.07px;
    height: 1.1805557012557983px;
    background-color: #979797;
}

.divider-eval {
    position: absolute;
    left: 124px;
    top: 2176px;
    width: 1465.07px;
    height: 1.1805557012557983px;
    background-color: #979797;
    z-index: 1;
}

/* ==================== EVALUATION 区域 ==================== */
.evaluation-section {
    position: absolute;
    left: 178px;
    top: 2064px;
    width: 1345px;
    padding-bottom: 200px; /* 增加底部间距，避免与页脚重叠 */
}

.eval-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.eval-title {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 800;
    font-size: 42.5px;
    line-height: 1.4479999317842371em;
    color: #000000;
}

.eval-see-more {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eval-see-more span {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 21.262420654296875px;
    line-height: 1.4479999878000995em;
    color: #000000;
}

.eval-grid {
    position: relative;
    width: 100%;
    min-height: 1500px;
    height: 1500px;
    margin-bottom: 150px; /* 增加底部间距，确保不重叠 */
    padding-bottom: 50px;
}

.eval-card {
    position: absolute;
    background-color: #FFFFFF;
    box-shadow: 0px 4.4270830154418945px 5.3125px 2.65625px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.eval-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.eval-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eval-card-content {
    padding: 20px;
    background-color: #FFFFFF;
    flex: 1;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-sizing: border-box;
}

.eval-card-title {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 600;
    font-size: 35.416664123535156px;
    line-height: 1.4479999819048701em;
    color: #000000;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.eval-card-author {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 21.25px;
    line-height: 1.4479999317842371em;
    color: #B28200;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.eval-card-desc {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4479999542236328em;
    color: #1C1C1C;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* EVALUATION卡片具体定位 - 3列×2行网格布局 */
/* 顶部行：左侧(card-1), 中间(card-2), 右侧(card-3) */
/* 底部行：左侧(card-4), 中间(card-6), 右侧(card-5) */

/* 顶部左侧 - Brooke Moriber – Decaa Joins（明亮发光效果，大卡片） */
/* 卡片链接样式 */
.eval-card-link {
    position: absolute;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.eval-card-link:hover {
    transform: translateY(-2px);
}

.eval-card-link:hover .eval-card {
    box-shadow: 0px 6px 8px 4px rgba(0, 0, 0, 0.3);
}

.card-1-link {
    left: 0;
    top: 161px;
    width: 522.99px;
    height: 733.13px;
    z-index: 2;
}

.card-1 {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-1 .eval-img-wrapper {
    height: 568px; /* 进一步减少图片高度，为文字留出足够空间 */
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000000; /* 舞台场景通常是暗色的 */
    flex-shrink: 0;
}

.card-1 .eval-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 改为 contain，确保城堡图片完整显示 */
    object-position: center;
    display: block;
    background-color: #FFFFFF; /* 改为白色背景，与城堡图片一致 */
}

.card-1 .eval-card-content {
    background-color: #FFFFFF;
    padding: 12px 18px;
    height: 165.13px; /* 733.13 - 568 = 165.13px */
    max-height: 165.13px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: flex-start;
    gap: 4px;
}

.card-1 .eval-card-title {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.15em;
    font-size: 30px;
    flex-shrink: 0;
    height: 34.5px; /* 30 * 1.15 */
}

.card-1 .eval-card-author {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.2em;
    height: 21.6px; /* 18 * 1.2 */
}

.card-1 .eval-card-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
    line-height: 1.25em;
    font-size: 17px;
    margin: 0;
    padding: 0;
    min-height: 0;
    max-height: 42.5px; /* 17 * 1.25 * 2 */
}

/* 顶部中间 - Moonlight on the horizon – Måneskin（四人乐队） */
.card-2 {
    left: 562.99px; /* 522.99 + 40px间距 */
    top: 161px;
    width: 383.68px;
    height: 733.13px;
    z-index: 1;
}

.card-2 .eval-img-wrapper {
    height: 334.1px;
    position: relative;
    overflow: hidden;
}

.card-2 .eval-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-2 .eval-card-content {
    background-color: #FFFFFF;
    padding: 15px 18px;
    height: 399px;
    max-height: 399px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-2 .eval-card-title {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3em;
    font-size: 32px;
    flex-shrink: 0;
    max-height: 83.2px; /* 32 * 1.3 * 2 */
}

.card-2 .eval-card-author {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 19px;
    line-height: 1.2em;
    height: 22.8px;
}

.card-2 .eval-card-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    flex: 1;
    line-height: 1.3em;
    font-size: 18px;
    margin: 0;
    padding: 0;
    min-height: 0;
}

/* 顶部右侧 - Swedish metal– GOAST（蓝色抽象） */
.card-3 {
    left: 986.67px; /* 562.99 + 383.68 + 40px间距 */
    top: 161px;
    width: 387.22px;
    height: 733.13px;
    z-index: 1;
}

.card-3 .eval-img-wrapper {
    height: 334.1px;
    position: relative;
    overflow: hidden;
}

.card-3 .eval-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-3 .eval-card-content {
    background-color: #FFFFFF;
    padding: 15px 18px;
    height: 399px;
    max-height: 399px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-3 .eval-card-title {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3em;
    font-size: 32px;
    flex-shrink: 0;
    max-height: 83.2px; /* 32 * 1.3 * 2 */
}

.card-3 .eval-card-author {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 19px;
    line-height: 1.2em;
    height: 22.8px;
}

.card-3 .eval-card-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    flex: 1;
    line-height: 1.3em;
    font-size: 18px;
    margin: 0;
    padding: 0;
    min-height: 0;
}

/* 底部左侧 - Brooke Moriber – Your Jesus（蓝色抽象插画） */
.card-4 {
    left: 0; /* 与card-1对齐（左侧列） */
    top: 904px; /* 161 + 733.13 + 10px间距，稍微上移避免重叠 */
    width: 533px;
    height: 531.94px;
    z-index: 1;
}

.card-4 .eval-img-wrapper {
    height: 334.1px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-4 .eval-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-4 .eval-card-content {
    background-color: #FFFFFF;
    padding: 12px 18px;
    height: 197.84px;
    max-height: 197.84px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-4 .eval-card-title {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.2em;
    font-size: 30px;
    flex-shrink: 0;
    height: 36px;
}

.card-4 .eval-card-author {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.2em;
    height: 21.6px;
}

.card-4 .eval-card-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex: 1;
    line-height: 1.25em;
    font-size: 17px;
    margin: 0;
    padding: 0;
    min-height: 0;
    max-height: 63.75px;
}

/* 底部中间 - 自由女神像（坐在长凳上） */
.card-6 {
    left: 573px; /* 533 + 40px间距 */
    top: 904px; /* 与card-4对齐 */
    width: 383.68px;
    height: 531.94px;
    z-index: 1;
}

.card-6 .eval-img-wrapper {
    height: 409.65px;
    position: relative;
    overflow: hidden;
}

.card-6 .eval-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-6 .eval-card-content {
    background-color: #FFFFFF;
    padding: 12px 18px;
    height: 122px;
    max-height: 122px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-6 .eval-card-title {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2em;
    font-size: 30px;
    flex: 1;
    max-height: 72px; /* 30 * 1.2 * 2 */
}

/* 底部右侧 - Brooke Moriber – Your Jesus（带兜帽的吉他手） */
.card-5 {
    left: 996.68px; /* 573 + 383.68 + 40px间距 */
    top: 904px; /* 与card-4对齐 */
    width: 387.22px;
    height: 531.94px;
    z-index: 1;
}

.card-5 .eval-img-wrapper {
    height: 409.65px;
    position: relative;
    overflow: hidden;
}

.card-5 .eval-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-5 .eval-card-content {
    background-color: #FFFFFF;
    padding: 12px 18px;
    height: 122px;
    max-height: 122px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-5 .eval-card-title {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2em;
    font-size: 30px;
    flex: 1;
    max-height: 72px; /* 30 * 1.2 * 2 */
}

/* ==================== 文章列表区域 ==================== */
.article-list-section {
    position: absolute;
    left: 188px;
    top: 7179px;
    width: 1349.38px;
}

.article-list-item {
    position: absolute;
    width: 1349.38px;
    height: 283.33px;
    background-color: #E1E1E1;
    display: flex;
    align-items: center;
}

.article-list-item.item-1 {
    top: 0;
}

.article-list-item.item-2 {
    top: 311.33px; /* 283.33 + 28px间距 */
}

.article-list-item.item-3 {
    top: 622.66px;
}

.article-list-item.item-4 {
    top: 933.99px;
}

.article-list-item.item-5 {
    top: 1245.32px;
}

.article-list-img {
    width: 452.15px;
    height: 283.33px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-list-text {
    flex: 1;
    padding: 20px 30px;
}

.article-list-title {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 500;
    font-size: 35.416664123535156px;
    line-height: 1.4479999819048701em;
    color: #000000;
    margin-bottom: 10px;
}

.article-list-author {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 21.25px;
    line-height: 1.4479999317842371em;
    color: #B28200;
    margin-bottom: 15px;
}

.article-list-excerpt {
    font-family: 'Hahmlet', sans-serif;
    font-weight: 300;
    font-size: 21.25px;
    line-height: 1.4479999317842371em;
    color: #1C1C1C;
}

.article-list-actions {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 61.39px;
    display: flex;
    align-items: center;
    gap: 0;
}

.action-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 61.39px;
}

.btn-gray-part {
    width: 218.4px;
    height: 61.39px;
    background-color: #B4B4B4;
    border-radius: 26.562498092651367px 0px 0px 26.562498092651367px;
}

.btn-red-part {
    width: 301.04px;
    height: 60.21px;
    background-color: #680000;
    margin-left: -1px;
}

.btn-text {
    position: absolute;
    left: 18px;
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 31.875003814697266px;
    line-height: 1.4479999080882462em;
    color: #FFFFFF;
    z-index: 2;
}

.article-comment {
    margin-left: 20px;
    font-family: 'Hahmlet', sans-serif;
    font-weight: 400;
    font-size: 21.25px;
    line-height: 1.4479999317842371em;
    color: #363636;
}

.article-arrow {
    margin-left: 10px;
    width: 78.51px;
    height: 78.51px;
    position: relative;
    top: -8.56px;
}

/* ==================== 底部页脚 ==================== */
.footer-section {
    position: absolute;
    left: 0;
    top: 3700px; /* 调整位置，确保与底部卡片有足够间距 */
    width: 1700px;
    height: 238.47px;
    background-color: #680000;
    border-top: 1.1805557012557983px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    position: relative;
    width: 1227.78px;
    padding: 94.44445037841797px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28.33333396911621px;
    line-height: 1.200000107709097em;
    letter-spacing: '-1.9999999999999998%';
    color: #FFFFFF;
    margin-right: 113.33px;
}

.footer-columns {
    display: flex;
    gap: 113.33333587646484px;
    flex: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 9.444445610046387px;
    width: 153.47px;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18.888891220092773px;
    line-height: 1.4500000454397706em;
    letter-spacing: '-0.5%';
    color: #FFFFFF;
    margin-bottom: 18.89px;
    padding-bottom: 18.89px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18.888891220092773px;
    line-height: 1.4500000454397706em;
    letter-spacing: '-0.5%';
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #FFFFFF;
}