/* Pro1 Index Page - Extracted Inline Styles */

/* First section top spacing */
.section-first {
    margin-top: 2rem;
}

/* News grid layout */
[class~="news-grid"] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Footer (shared with play-custom.css) */
/* If play-custom.css is not loaded, these provide the footer styles */
.site-footer {
    background-color: #050914;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

[class~="partners"] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.footer-label {
    margin-right: 1rem;
}

.footer-link {
    margin: 0 10px;
    opacity: 0.7;
}

.footer-sitemap-link {
    margin: 0 15px;
    opacity: 0.7;
}

.footer-friend-links {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.footer-sitemap-block {
    margin-bottom: 2rem;
}

.footer-disclaimer {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    font-size: 0.75rem;
    line-height: 1.9;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer-cn {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer-disclaimer-cn strong {
    color: rgba(255,255,255,0.9);
}

.footer-disclaimer-en {
    color: rgba(255,255,255,0.5);
}

.footer-disclaimer-en strong {
    color: rgba(255,255,255,0.7);
}

/* Template copyright bar */
[class~="vt-template-copyright"] {
    margin-top: 36px;
    padding: 18px 14px;
    border-top: 1px solid rgba(148,163,184,.35);
    font-size: 13px;
    line-height: 1.9;
    color: #8b949e;
    text-align: center;
}

/* 新闻卡片网格 - BossV Team (2026-02-05) */
[class~="news-grid"] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

[class~="news-card"] {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

[class~="news-card"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

[class~="news-card"] a {
    display: block;
    text-decoration: none;
    color: inherit;
}

[class~="news-pic"] {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
}

[class~="news-pic"] img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[class~="news-info"] {
    padding: 12px;
}

[class~="news-title"] {
    font-size: 14px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 8px;
}

[class~="news-meta"] {
    font-size: 12px;
    color: #999;
}

@media (max-width: 480px) {
    [class~="news-grid"] {
        grid-template-columns: 1fr;
    }
}
