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

:root {
    --primary-color: #1a365d;
    --secondary-color: #c53030;
    --accent-color: #d69e2e;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 首页专用样式 ==================== */

/* 顶部信息栏 */
.top-bar {
    background: #f5f5f5;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* 头部区域 */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-page .logo {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.home-page .logo-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.home-page .logo-text h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.home-page .logo-text p {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1px;
}

/* 搜索框 */
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 25px;
    overflow: hidden;
    background: #f9f9f9;
}

.search-box input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    width: 200px;
    outline: none;
    font-size: 0.9rem;
}

.search-box button {
    border: none;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: #2c5282;
}

/* 首页导航栏 */
.home-page .navbar {
    position: static;
    background: var(--primary-color);
    padding: 0;
}

.home-page .navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.home-page .nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.home-page .nav-links li {
    position: relative;
}

.home-page .nav-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 15px 25px;
    transition: var(--transition);
    position: relative;
}

.home-page .nav-links a::after {
    display: none;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
    background: rgba(255,255,255,0.1);
    color: var(--accent-color);
}

/* 首页大图区域 */
.home-page .hero {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
}

/* 轮播图 */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    transform: scale(1.05);
}

.hero-slider .slide.active {
    animation: kenBurns 6s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.05) translateY(0);
    }
    100% {
        transform: scale(1) translateY(-2%);
    }
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
}

/* 轮播指示点 */
.slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
    letter-spacing: 3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #b7791f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 158, 46, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.7;
}

/* 通用区块样式 */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header.light h2 {
    color: var(--white);
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* 矿区概览 */
.overview {
    background: var(--bg-light);
    padding: 50px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.overview-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-bottom-color: var(--accent-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.overview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.overview-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.card-detail {
    display: inline-block;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* 主要内容区域 - 左右布局 */
.main-content {
    background: var(--white);
    padding: 50px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.section-title h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.section-title h3 i {
    margin-right: 8px;
    color: var(--accent-color);
}

.section-title .more {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.section-title .more:hover {
    color: var(--primary-color);
}

/* 新闻列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: var(--transition);
}

.news-item:hover {
    background: #f0f0f0;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 10px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
}

.news-date .day {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: 0.75rem;
    opacity: 0.9;
}

.news-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.news-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.news-info h4 a:hover {
    color: var(--primary-color);
}

.news-info p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

/* 产品与服务 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.product-card {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-card:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.product-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.product-card h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.product-card p {
    font-size: 0.85rem;
    color: #888;
}

/* 公司优势 */
.advantages {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: var(--white);
    padding: 50px 0;
}

.advantages-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.advantage-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.advantage-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    min-width: 60px;
}

.advantage-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.advantage-text p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* 资源储量预览 */
.reserves-preview {
    background: var(--bg-light);
    padding: 50px 0;
}

.reserves-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.reserve-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-top: 3px solid var(--accent-color);
}

.reserve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.reserve-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.reserve-value span {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 3px;
}

.reserve-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

/* 合作邀请 */
.cooperation {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    padding: 60px 0;
    color: var(--white);
}

.cooperation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cooperation-text {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 20px;
}

.cooperation-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.cooperation-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cooperation-text .btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 35px;
    font-size: 1rem;
    border-radius: 25px;
}

.cooperation-text .btn-primary:hover {
    background: #b7791f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 158, 46, 0.3);
}

.cooperation-leaders {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cooperation-leader {
    text-align: center;
}

.leader-photo-small {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
    margin: 0 auto 15px;
}

.leader-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info-small h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--white);
}

.leader-info-small p {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--white);
}

/* 页脚 */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 40px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section i {
    margin-right: 8px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== 内页通用样式 ==================== */

/* 内页导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
}

.logo-img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* 页面通用样式 */
.page-header {
    height: 40vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1rem;
    opacity: 0.9;
}

/* 内容区块 */
.content-section {
    padding: 50px 0;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 信息卡片 */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 12px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card .label {
    color: var(--text-light);
}

.info-card .value {
    color: var(--text-dark);
    font-weight: 500;
}

.info-card .value.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* 数据表格 */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

.data-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
}

.data-table tr:hover {
    background: var(--bg-light);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reserves-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    .home-page .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 15px;
        gap: 0;
    }
    
    .home-page .nav-links.active {
        display: flex;
    }
    
    .home-page .nav-links a {
        padding: 12px 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .reserves-cards {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .home-page .hero {
        height: 400px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-date {
        flex-direction: row;
        gap: 5px;
        min-width: auto;
        padding: 5px 10px;
    }
}
