/* News Page Styles */
.page-news {
    background-color: #030506;
}
.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.top-bg{
    width: 100%;
    height: 640px;
    background-image: url('./img/new-top-bg.png');
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: -1;
}

.news-hero {
    padding-top: 200px;
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
}

/* Horizontal light beam effect */
.news-hero::after {
    content: "";
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 1px;
}

.news-hero-title-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
}

.title-decoration {
    width: 24px;
    height: 24px;
    margin-right: 13px;
    background-color: #FED800;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.news-hero h1 {
    font-weight: 300;
    font-size: 56px;
    color: #FFFFFF;
    line-height: 74px;
}

.news-hero-subtitle {
    font-size: 18px;
    color: #ffffff;
    padding-left: 36px;
    max-width: 800px;
}

.news-list-section {
    padding-bottom: 100px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-img-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #1a1a1a; /* Placeholder bg */
}

.news-img-wrapper img {
    width: 100%;
    height: 303px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.news-content h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 30px;
    color: #fff;
}

.news-content .highlight-text {
    font-weight: 400;
    font-size: 26px;
    color: #fff;
}

.news-content p {
    font-weight: 300;
    font-size: 18px;
    color: #BBBBBB;
    line-height: 48px;
}

/* Section Header Shared Styles */
.section-header-news {
    margin-bottom: 60px;
    position: relative;
    padding-top: 40px;
}
.mb-150{
    margin-bottom: 150px;
}

.news-section-title {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-weight: 300;
    font-size: 56px;
    color: #FFFFFF;
    line-height: 74px;
}

.news-section-title::before {
    content: attr(data-en);
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 61px;
    font-weight: bold;
    color: rgba(254, 216, 0, 0.1); /* Subtle yellow tint */
    z-index: -1;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #FDD01F 0%, #030506 65%);
    opacity:0.8;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.background-mid{
    width: 100%;
    height: 1200px;
    background-image: url('./img/mid-center.png');
    background-size: cover;
    position: absolute;
    top: 900px;
    z-index: -1;
}
.background-mid-right{
    width: 370px;
    height: 782px;
    background-image: url('./img/mid-right.png');
    background-size: cover;
    position: absolute;
    top: 1450px;
    right: -80px;
    z-index: -1;
}
/* Corporate News */
.section-corporate {
    padding: 60px 0 100px;
    
}

.corporate-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.corporate-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    transition: all 0.3s ease;
}

.corporate-item:hover {
    background: linear-gradient(90deg, rgba(254,216,0,0.05) 0%, rgba(255,255,255,0) 100%);
    border-left-color: #FED800;
}

.date-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 90px;
    color: #FED800;
    flex-shrink: 0;
    width: 128px;
    height: 153px;
    background: #030506;
    border: 1px solid #534700;
}

.corporate-item:hover .date-box {
    background-color: rgba(254, 216, 0, 0.1);
}

.date-box .year-month {
    font-weight: 300;
    font-size: 26px;
    color: #A58C01;
    line-height: 48px;
}

.date-box .day {
    font-weight: bold;
    font-size: 50px;
    color: #FED800;
    line-height: 48px;
}
.corporate-content{
    width: 500px;
}
.corporate-content h3 {
    font-weight: 500;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 48px;
}

.corporate-content p {
    margin-top: 12px;
    font-weight: 300;
    font-size: 18px;
    color: #BBBBBB;
    line-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Industry News */
.section-industry {
    padding: 0 0 120px;
}

.industry-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.industry-card {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: rgba(254, 216, 0, 0.3);
    transform: translateY(-5px);
}

.industry-card.large {
    padding-left: 60px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    background: linear-gradient(90deg, #0D0D0D 0%, #151515 100%);
    overflow: hidden;
}

/* Golden vertical lines decoration background */
.industry-card.large .bg-decoration {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: repeating-linear-gradient(90deg, 
        transparent, 
        transparent 10px, 
        rgba(254, 216, 0, 0.03) 10px, 
        rgba(254, 216, 0, 0.08) 11px
    );
    mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    pointer-events: none;
}

.industry-content-top {
    position: relative;
    z-index: 2;
}

.industry-content-top .sub-label {
    display: block;
    font-weight: 500;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 34px;
    margin-bottom: 25px;
}

.industry-content-top h3 {
    font-weight: 500;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 34px;
}

.industry-content-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 25px;
}

.vertical-line {
    margin-top: 30px;
    height: 249px;
    width: 1px;
    background-color: #FED800;
    flex-shrink: 0;
}

.industry-desc-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
    margin-top: 190px;

}

.industry-card.small {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 53px 42px;
    width: 393px;
    height: 522px;
}
.card-content .split-line{
    width: 100%;
    height: 1px;
    background-color: #1A1A15;
    margin: 45px 0;

}

.card-content h3 {
    font-size: 22px;
    color: #fff;
    line-height: 34px;
    font-weight: 500;
}

.card-content p {
    font-weight: 400;
    font-size: 18px;
    color: #B4B4B4;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 20px;
}

.date-group {
    display: flex;
    flex-direction: column;
}

.date-group .year {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 4px;
}

.date-group .day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #FED800;
}

.arrow-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, color 0.3s;
}

.industry-card.small:hover .arrow-icon {
    color: #FED800;
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-list {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .industry-card.large {
        grid-column: 1 / -1;
        min-height: 300px;
    }
    
    .industry-card.small {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .news-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .news-hero h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .news-hero-subtitle {
        font-size: 15px;
        padding-left: 0;
        margin-top: 16px;
        line-height: 1.6;
    }
    
    .news-hero-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .title-decoration {
        margin-bottom: 12px;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-img-wrapper img {
        height: auto;
        aspect-ratio: 16/9;
    }

    /* Corporate News */
    .section-corporate {
        padding: 40px 0 60px;
    }

    .corporate-item {
        padding: 20px;
        gap: 16px;
        flex-direction: column;
    }

    .date-box {
        width: 100%;
        height: 60px;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
        padding-left: 16px;
        border: none;
        border-left: 4px solid #FED800;
        background: rgba(254, 216, 0, 0.05);
    }

    .date-box .year-month {
        font-size: 14px;
        margin-bottom: 0;
    }

    .date-box .day {
        font-size: 20px;
    }

    /* Industry News */
    .section-industry {
        padding: 0 0 60px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-card.large,
    .industry-card.small {
        min-height: auto;
        padding: 24px;
    }

    .industry-content-top h3 {
        font-size: 24px;
    }
    
    .industry-content-bottom {
        flex-direction: column;
        gap: 12px;
    }
    
    .vertical-line {
        width: 40px;
        height: 2px;
    }

    .industry-desc-box {
        border-left: none;
        padding-left: 0;
    }

    .news-section-title {
        font-size: 28px;
    }
    
    .news-section-title::before {
        font-size: 36px;
        top: -24px;
    }
}
