.yg-news-page {
    --yg-blue: #1B5190;
    --yg-ink: #10243D;
    --yg-text: #536277;
    --yg-muted: #7A889B;
    --yg-line: #E4ECF5;
    --yg-soft: #F6FAFE;
    background: #fff;
    color: var(--yg-ink);
}

.yg-news-page,
.yg-news-page * { box-sizing: border-box; }
.yg-news-page a { text-decoration: none; }
.yg-news-page img { display: block; max-width: 100%; }

.yg-news-hero {
    padding: 28px 0 48px;
    background: linear-gradient(180deg, #F7FBFE 0%, #fff 100%);
    border-bottom: 1px solid var(--yg-line);
}

.yg-news-hero .container,
.yg-news-list-section .container {
    max-width: 1120px;
}

.yg-news-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 28px;
    color: var(--yg-muted);
    font-size: 13px;
    font-weight: 500;
}

.yg-news-breadcrumb a { color: var(--yg-muted); }
.yg-news-breadcrumb a:hover,
.yg-news-breadcrumb span { color: var(--yg-blue); }
.yg-news-breadcrumb i { color: #A7B4C5; font-size: 16px; }

.yg-news-hero-inner span {
    display: block;
    color: var(--yg-blue);
    font-size: 13px;
    font-weight: 600;
}

.yg-news-hero h1 {
    margin: 8px 0 0;
    color: var(--yg-ink);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.yg-news-hero p {
    max-width: 520px;
    margin: 14px 0 0;
    color: var(--yg-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.yg-news-list-section {
    padding: 52px 0 90px;
    background: #F5F8FB;
}

.yg-news-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--yg-muted);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.35;
}

.yg-news-date i {
    color: var(--yg-blue);
    font-size: 15px;
}

.yg-news-card h3 a {
    color: var(--yg-ink);
}

.yg-news-card h3 a:hover {
    color: var(--yg-blue);
}

.yg-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.yg-news-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E2EAF3;
    border-radius: 18px;
    padding: 10px;
}

.yg-news-card-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 1.72 / 1;
    background: var(--yg-soft);
    border-radius: 13px;
}

.yg-news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.28s ease;
}

.yg-news-card:hover .yg-news-card-media img {
    transform: scale(1.025);
}

.yg-news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 7px 8px;
}

.yg-news-card h3 {
    margin: 11px 0 0;
    color: var(--yg-ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: 0;
}

.yg-news-card p {
    margin: 9px 0 0;
    color: var(--yg-muted);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.6;
}

.yg-news-card-link {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 0 14px;
    color: var(--yg-blue);
    background: #F8FBFE;
    border: 1px solid #D7E3EF;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
}

.yg-news-card-link:hover {
    color: #fff;
    background: var(--yg-blue);
    border-color: var(--yg-blue);
}

@media (max-width: 991px) {
    .yg-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .yg-news-hero {
        padding: 26px 0 42px;
    }

    .yg-news-list-section {
        padding: 36px 0 58px;
    }

    .yg-news-grid {
        grid-template-columns: 1fr;
    }
}
