.content {
	width: 100%;
	height: 500px;
	background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
	position: relative;
	overflow: hidden;
}

.content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(19, 161, 116, 0.1) 0%, transparent 50%),
	            radial-gradient(circle at 80% 20%, rgba(42, 115, 245, 0.1) 0%, transparent 50%);
	animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

.content-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.particle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	animation: float 20s infinite;
}

.particle-1 {
	width: 300px;
	height: 300px;
	top: -150px;
	left: 10%;
	animation-delay: 0s;
}

.particle-2 {
	width: 200px;
	height: 200px;
	top: 30%;
	right: -100px;
	animation-delay: 3s;
}

.particle-3 {
	width: 150px;
	height: 150px;
	bottom: -75px;
	left: 50%;
	animation-delay: 6s;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
		opacity: 0.3;
	}
	50% {
		transform: translateY(-30px) rotate(180deg);
		opacity: 0.6;
	}
}

.list-box{
	width: 100%;
	padding: 5px 0;
}

.c-header {
	width: 70%;
	height: 100%;
	margin: auto;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}

.c-innerbox {
	width: 96%;
	height: 100%;
	padding: 5px 2%;
	position: absolute;
	background: linear-gradient(to right, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.85) 30%, rgba(0, 0, 0, 0.4) 60%),
	            linear-gradient(to top, rgba(15, 15, 35, 0.98) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 70%),
	            linear-gradient(135deg, rgba(19, 161, 116, 0.1) 0%, transparent 50%);
	top: 0;
	backdrop-filter: blur(2px);
}

.ci-info {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	padding-bottom: 30px;
}

.ci-badge {
	display: inline-block;
	background: linear-gradient(135deg, #13A174 0%, #0d8a5f 100%);
	color: #fff;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	animation: badgePulse 2s ease-in-out infinite;
	box-shadow: 0 4px 15px rgba(19, 161, 116, 0.4);
}

@keyframes badgePulse {
	0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(19, 161, 116, 0.4); }
	50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(19, 161, 116, 0.6); }
}

.ci-info h1 {
	color: #fff;
	text-transform: uppercase;
	line-height: 1.3;
	font-size: 52px;
	font-weight: 700;
	letter-spacing: -1px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	animation: titleSlide 0.8s ease-out;
}

@keyframes titleSlide {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.title-animate {
	animation: titleSlide 0.8s ease-out;
}

.ci-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 12px;
}

.ci-type {
	text-transform: capitalize;
	color: #13A174;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
}

.type-icon {
	font-size: 20px;
}

.ci-tage {
	color: rgb(200, 205, 210);
	font-size: 15px;
	position: relative;
	padding-left: 20px;
}

.ci-tage::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #13A174;
	font-size: 20px;
}

.ci-flex {
	width: auto;
	margin: 25px auto;
	height: auto;
	display: flex;
	align-items: center;
}

.cf-flex {
	display: flex;
	align-items: center;
	gap: 20px;
}

.icon-wrapper {
	position: relative;
	display: inline-block;
}

.icon-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 110px;
	height: 110px;
	border-radius: 12px;
	background: radial-gradient(circle, rgba(19, 161, 116, 0.4) 0%, transparent 70%);
	animation: iconGlow 3s ease-in-out infinite;
	z-index: -1;
}

@keyframes iconGlow {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
	50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.cf-img {
	width: 100px;
	height: 100px;
	display: block;
	border-radius: 20px;
	margin-right: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-img:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 12px 40px rgba(19, 161, 116, 0.3);
}

.cf-name {
	display: none;
}

.ci-data {
	display: flex;
	gap: 10px;
	background: rgba(255, 255, 255, 0.05);
	padding: 15px 25px;
	border-radius: 16px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cf-li {
	padding: 0px 25px;
	text-align: center;
	line-height: 1.4;
	position: relative;
	transition: transform 0.3s ease;
}

.cf-li:hover {
	transform: translateY(-2px);
}

.cf-li::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, rgba(154, 160, 166, 0.3), transparent);
}

.cf-li:nth-last-of-type(1)::after {
	display: none;
}

.data-icon {
	font-size: 22px;
	margin-bottom: 5px;
	display: block;
}

.data-value {
	font-size: 22px;
	font-weight: 700;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	text-transform: capitalize;
	line-height: 1.4;
	color: #fff;
	background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.data-label {
	font-size: 12px;
	color: rgb(154, 160, 166);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}

.cb-btn {
	width: 32%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}

.cb-btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	border-radius: 16px;
	width: 60%;
	height: 60px;
	padding: 0 30px;
	background: linear-gradient(135deg, #13A174 0%, #0d8a5f 100%);
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(19, 161, 116, 0.4);
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.cb-btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.cb-btn a:hover::before {
	left: 100%;
}

.cb-btn a:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 8px 30px rgba(19, 161, 116, 0.5);
}

.btn-icon {
	display: flex;
	align-items: center;
	margin-right: 15px;
	font-size: 28px;
}

.btn-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.2;
}

.btn-title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.c-bottom {
	width: 70%;
	height: auto;
	display: flex;
	margin: auto;
	justify-content: space-between;

}

.c-about {
	width: 65%;
	height: auto;
	padding: 10px 2%;
	background-color: #fff;
}

.c-bg {
	width: 100%;
	height: 230px;
	margin: 20px 0;
}

.c-bg img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;

}

.iframe-container {
	width: 100%;
	height: 500px;
	margin: 20px 0;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.iframe-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	z-index: 5;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(19, 161, 116, 0.2);
	border-top-color: #13A174;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-text {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.loading-tip {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.loading-error {
	font-size: 50px;
	margin-bottom: 15px;
}

.iframe-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.iframe-container.fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	margin: 0;
	border-radius: 0;
}

.iframe-controls {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	gap: 10px;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.iframe-container:hover .iframe-controls {
	opacity: 1;
}

.iframe-btn {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 8px;
	background: rgba(19, 161, 116, 0.9);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.iframe-btn:hover {
	background: rgba(19, 161, 116, 1);
	transform: scale(1.1);
}

.iframe-close {
	background: rgba(220, 53, 69, 0.9);
	display: none;
}

.iframe-close:hover {
	background: rgba(220, 53, 69, 1);
}

.iframe-container.fullscreen .iframe-close {
	display: flex;
}

.iframe-container.fullscreen .iframe-expand {
	display: none;
}

.c-about h1 {
	font-size: 30px;
	font-weight: 500;
	line-height: 2;
}

.ca-text {
	font-size: 16px;
	line-height: 1.5;
	color: rgb(95, 99, 104);
}

.main {
	width: 25%;
	display: block;
	padding: 10px 2%;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
}

.list4 {
	position: sticky;
	top: 10px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.list4 .l1-box {
	width: 90%;
	display: flex;
	align-items: center;
	padding: 12px;
	border-radius: 12px;
	background: #f8f9fa;
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
	margin-bottom: 0;
}

.list4 .l1-box:hover {
	background: #fff;
	box-shadow: 0 4px 15px rgba(19, 161, 116, 0.15);
	transform: translateX(5px);
	border-color: #13A174;
}

.list4 .l1-img {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	margin-right: 12px;
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.list4 .l1-text {
	width: calc(100% - 72px);
}

.list4 .l1-text p:nth-of-type(1) {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list4 .l1-text p:nth-of-type(2) {
	font-size: 12px;
	color: #6c757d;
	margin-bottom: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list4 .l1-text p:nth-of-type(3) {
	font-size: 13px;
	color: #F88A28;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.list4 .l1-text .star {
	width: 12px;
	height: 12px;
	margin-left: 4px;
}


.m-title {
	margin: 10px 0;
	font-size: 20px;

}


.content-section {
	margin: 30px 0;
	padding: 25px;
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	border-radius: 16px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.content-section:hover {
	box-shadow: 0 6px 20px rgba(19, 161, 116, 0.1);
	border-color: rgba(19, 161, 116, 0.3);
}

.section-title {
	font-size: 26px;
	color: #1a1a2e;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 3px solid #13A174;
	display: flex;
	align-items: center;
	gap: 10px;
}

.review-content, .guide-content, .tips-content {
	line-height: 1.8;
	color: #495057;
	font-size: 16px;
}

.review-content p, .guide-content p, .tips-content p {
	margin-bottom: 15px;
}

.review-content ul, .guide-content ul, .tips-content ul {
	margin: 15px 0;
	padding-left: 25px;
}

.review-content li, .guide-content li, .tips-content li {
	margin-bottom: 10px;
	color: #495057;
	line-height: 1.6;
}

.review-rating {
	margin-top: 25px;
	padding: 15px 20px;
	background: rgba(19, 161, 116, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.rating-label {
	font-weight: 600;
	color: #1a1a2e;
	font-size: 15px;
}

.rating-stars {
	display: flex;
	gap: 5px;
	margin-bottom: 26px;
}

.rating-stars .star {
	font-size: 24px;
	color: #ddd;
	transition: color 0.3s ease;
}

.rating-stars .star.filled {
	color: #F88A28;
}

.rating-value {
	font-size: 24px;
	font-weight: 700;
	color: #F88A28;
}

.game-guide h3, .game-tips h3 {
	color: #13A174;
	font-size: 18px;
	margin: 20px 0 10px;
}

.user-interaction {
	background: linear-gradient(135deg, #fff 0%, #f0f8f5 100%);
}

.rating-widget {
	text-align: center;
	padding: 30px 20px;
	background: rgba(19, 161, 116, 0.05);
	border-radius: 12px;
	margin-bottom: 30px;
}

.rating-widget h3 {
	font-size: 20px;
	color: #1a1a2e;
	margin-bottom: 20px;
}

.user-rating-stars {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
}

.user-rating-stars .star {
	font-size: 40px;
	color: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.user-rating-stars .star:hover,
.user-rating-stars .star.active {
	color: #F88A28;
	transform: scale(1.1);
}

.rating-stats {
	margin-top: 15px;
}

.average-rating {
	font-size: 32px;
	font-weight: 700;
	color: #F88A28;
	display: block;
	margin-bottom: 5px;
}

.total-ratings {
	color: #6c757d;
	font-size: 14px;
}

.comments-section h3 {
	font-size: 20px;
	color: #1a1a2e;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e9ecef;
}

.comment-form {
	margin-bottom: 25px;
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e9ecef;
}

#commentText {
	width: 100%;
	padding: 15px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	resize: vertical;
	transition: border-color 0.3s ease;
}

#commentText:focus {
	border-color: #13A174;
	outline: none;
}

.submit-btn {
	margin-top: 15px;
	padding: 12px 30px;
	background: linear-gradient(135deg, #13A174 0%, #0d8a5f 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(19, 161, 116, 0.3);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(19, 161, 116, 0.4);
}

.comments-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.comment-item {
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.comment-item:hover {
	border-color: rgba(19, 161, 116, 0.3);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comment-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.comment-author {
	font-weight: 600;
	color: #13A174;
	font-size: 15px;
}

.comment-date {
	color: #6c757d;
	font-size: 13px;
}

.comment-rating {
	font-size: 16px;
	color: #F88A28;
}

.comment-body {
	color: #495057;
	line-height: 1.6;
	font-size: 15px;
}

.game-faq {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.faq-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item {
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	border: 2px solid #e9ecef;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: #13A174;
}

.faq-question {
	font-weight: 600;
	color: #1a1a2e;
	font-size: 16px;
	margin-bottom: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq-question::before {
	content: 'Q:';
	color: #13A174;
	font-weight: 700;
	font-size: 18px;
}

.faq-answer {
	color: #495057;
	line-height: 1.6;
	font-size: 15px;
	padding-left: 30px;
}

.ca-text{
	min-height: 100px;
}

@media (max-width:759px) {
	.content-section {
		margin: 20px 0;
		padding: 15px;
		border-radius: 12px;
	}

	.section-title {
		font-size: 20px;
		margin-bottom: 15px;
		padding-bottom: 10px;
	}

	.review-content, .guide-content, .tips-content {
		font-size: 14px;
		line-height: 1.6;
	}

	.rating-stars .star {
		font-size: 18px;
	}

	.rating-value {
		font-size: 18px;
	}

	.user-rating-stars .star {
		font-size: 32px;
	}

	.average-rating {
		font-size: 26px;
	}

	.comment-form {
		padding: 15px;
	}

	#commentText {
		padding: 10px;
		font-size: 13px;
	}

	.submit-btn {
		padding: 10px 25px;
		font-size: 14px;
	}

	.comment-item {
		padding: 15px;
	}

	.comment-header {
		gap: 10px;
	}

	.comment-author {
		font-size: 14px;
	}

	.comment-date {
		font-size: 12px;
	}

	.comment-rating {
		font-size: 14px;
	}

	.comment-body {
		font-size: 14px;
	}

	.faq-item {
		padding: 15px;
	}

	.faq-question {
		font-size: 15px;
	}

	.faq-answer {
		font-size: 14px;
		padding-left: 20px;
	}
}

@media (max-width:759px) {
	.content {
		height: 600px;
	}

	.content::before {
		background: radial-gradient(circle at 50% 30%, rgba(19, 161, 116, 0.15) 0%, transparent 50%),
		            radial-gradient(circle at 50% 70%, rgba(42, 115, 245, 0.15) 0%, transparent 50%);
	}

	.c-header {
		width: 100%;
	}

	.c-innerbox {
		background: linear-gradient(360deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(0, 0, 0, 0.6) 100%);
	}

	.ci-badge {
		margin-left: 5%;
		font-size: 11px;
		padding: 5px 14px;
	}

	.cii-info {
		display: none;
	}

	.ci-flex {
		flex-wrap: wrap;
		padding: 0 5%;
	}

	.cf-flex {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		margin: 15px 0;
		gap: 15px;
	}

	.cf-img {
		width: 80px;
		height: 80px;
		border-radius: 18px;
	}

	.icon-glow {
		width: 90px;
		height: 90px;
	}

	.cf-name {
		width: calc(100% - 100px);
		height: auto;
		display: block;
	}

	.cf-name p:nth-of-type(1) {
		color: #fff;
		text-transform: uppercase;
		line-height: 1.4;
		font-size: 18px;
		font-weight: 700;
	}

	.cf-name p:nth-of-type(2) {
		text-transform: capitalize;
		color: #13A174;
		font-size: 15px;
		font-weight: 600;
		line-height: 1.5;
		margin-top: 4px;
	}

	.cf-name p:nth-of-type(3) {
		color: rgb(200, 205, 210);
		font-size: 13px;
		margin-top: 4px;
	}

	.ci-data {
		width: 100%;
		margin: 15px 0;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		background: rgba(255, 255, 255, 0.03);
		padding: 15px;
		border-radius: 12px;
	}

	.cf-li {
		padding: 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 10px;
		border: 1px solid rgba(255, 255, 255, 0.05);
	}

	.cf-li::after {
		display: none;
	}

	.cf-li:hover {
		transform: translateY(0);
	}

	.data-icon {
		font-size: 18px;
		margin-bottom: 3px;
	}

	.data-value {
		font-size: 18px;
	}

	.data-label {
		font-size: 11px;
	}

	.cb-btn {
		width: 80%;
		margin: 20px auto;
	}

	.cb-btn a {
		width: 100%;
		height: 58px;
		justify-content: center;
		padding: 0 20px;
	}

	.btn-icon {
		font-size: 32px;
		margin-right: 12px;
	}

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

	.btn-title {
		font-size: 17px;
	}

	.c-bottom {
		width: 96%;
		height: auto;
		display: block;
		padding: 0px 2%;
	}

	.c-about {
		width: 96%;
	}

	.c-bg {
		width: 100%;
		height: 150px;
	}

	.iframe-container {
		height: 400px;
	}

	.loading-spinner {
		width: 50px;
		height: 50px;
		border-width: 3px;
	}

	.loading-text {
		font-size: 18px;
	}

	.loading-tip {
		font-size: 13px;
	}

	.iframe-btn {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.c-about h1 {
		font-size: 25px
	}

	.main {
		width: 100%;
		padding: 15px 3%;
	}
	
	.list4 {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.list4 .l1-box {
		padding: 10px;
		border-radius: 10px;
	}
	
	.list4 .l1-img {
		width: 50px;
		height: 50px;
		border-radius: 10px;
		margin-right: 10px;
	}
	
	.list4 .l1-text {
		width: calc(100% - 60px);
	}
	
	.list4 .l1-text p:nth-of-type(1) {
		font-size: 13px;
	}
	
	.list4 .l1-text p:nth-of-type(2) {
		font-size: 11px;
	}
	
	.list4 .l1-text p:nth-of-type(3) {
		font-size: 12px;
	}
}