* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333333;
            background-color: #ffffff;
        }
        .about-hero-area {
	background-position: center top;
	position: relative;
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-image: url('/plugins/img/news.jpg');
	background-repeat: no-repeat;
}
        .about-hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .about-hero-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color1: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }
        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1500px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .about-hero-content h1 {
	font-size: 48px;
	color: #000000;
	margin-bottom: 30px;
	font-weight: 700;
	font-family: 'Work Sans', sans-serif;
}
        .about-hero-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: rgb(255, 255, 255);
            color: #000000;
            border: 1px solid #ffffff;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .about-hero-btn:hover {
            background-color: #ffffff;
            color: #333333;
        }
        .news-area {
            padding: 60px 20px;
            background-color: #ffffff;
        }
        .news-container {
            max-width: 1500px;
            margin: 0 auto;
        }
        .news-list {
            list-style: none;
        }
        .news-item {
            display: flex;
            padding: 30px 0;
            border-bottom: 1px solid #eeeeee;
            transition: all 0.3s ease;
        }
        .news-item:hover {
            background-color: #fafafa;
        }
        .news-date {
            flex-shrink: 0;
            width: 120px;
            text-align: right;
            padding-right: 30px;
            border-right: 1px solid #eeeeee;
        }
        .news-date .day {
            font-size: 56px;
            font-weight: 700;
            color: #333333;
            line-height: 1;
        }
        .news-date .month {
            font-size: 16px;
            color: #999999;
            margin-top: 8px;
        }
        .news-date .year {
            font-size: 14px;
            color: #cccccc;
        }
        .news-date .date-separator {
            display: none;
        }
        .news-content {
            flex: 1;
            padding-left: 30px;
        }
        .news-content h3 {
            font-size: 18px;
            color: #333333;
            font-weight: 600;
            margin-bottom: 12px;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .news-content h3:hover {
            color: #007bff;
        }
        .news-content p {
            font-size: 14px;
            color: #666666;
            line-height: 1.8;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 8px;
        }
        .pagination-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e9ecef;
            background-color: #ffffff;
            color: #666666;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        .pagination-btn:hover {
            border-color: #007bff;
            color: #007bff;
        }
        .pagination-btn.active {
            background-color: #007bff;
            border-color: #007bff;
            color: #ffffff;
        }
        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .pagination-dots {
            padding: 0 10px;
            color: #999999;
            font-size: 14px;
        }
        @media screen and (max-width: 768px) {
            .about-hero-area {
                height: 300px;
                background-image: url(/plugins/img/news-mobile.jpg);
                background-position: center center;
                background-repeat: no-repeat;
                background-size: cover;
            }
            .about-hero-content h1 {
                font-size: 28px;
                margin-bottom: 20px;
            }
            .about-hero-btn {
                padding: 10px 24px;
                font-size: 14px;
            }
            .news-area {
                padding: 40px 15px;
            }
            .news-item {
                flex-direction: column;
                padding: 20px 0;
            }
            .news-date {
                width: auto;
                text-align: left;
                padding-right: 0;
                border-right: none;
                border-bottom: 1px solid #eeeeee;
                padding-bottom: 15px;
                margin-bottom: 15px;
                display: flex;
                align-items: baseline;
                gap: 6px;
            }
            .news-date .day {
                font-size: 18px;
                font-weight: 600;
            }
            .news-date .month {
                font-size: 14px;
                margin-top: 0;
            }
            .news-date .year {
                font-size: 14px;
            }
            .news-date .date-separator {
                display: inline;
                color: #999999;
            }
            .news-content {
                padding-left: 0;
            }
            .news-content h3 {
                font-size: 16px;
            }
            .news-content p {
                font-size: 13px;
            }
            .pagination-btn {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
        }
        @media screen and (max-width: 480px) {
            .about-hero-content h1 {
                font-size: 22px;
            }
            .news-date .day {
                font-size: 32px;
            }
        }
    .fontcolor {
	color: #929292;
}