/*
Theme Name: AC Theme
Version: 1.0
*/

#related-posts .article-image, #related-posts .chips {
	display: none;
}
.sitemap-wrap ul {
	column-count: 2;
	padding-left: 0px;
}
.sitemap-wrap ul li {
	padding: 5px 15px;
	font-size: 18px;
	border: 1px solid #ccc;
	list-style-type: none;
	margin-bottom: 10px;
	border-radius: 5px;
}
.sitemap-wrap ul li:hover {
	background: linear-gradient(135deg, var(--cyan), var(--blue));
	color: #fff;
	border: 1px solid #fff;
}

.single-post .eg-blog-content a{color:var(--cyan);}
.single-post .eg-blog-content a:hover{color:#fca914;}}
.single-post .eg-blog-content ul {padding: 0px !important;}
.single-post .eg-blog-content ul li {list-style-type: none;font-size: 16px;color: #333;position: relative;padding: 0px 0px 10px 20px;}
.single-post .eg-blog-content ul li::before {position: absolute;content: '→';left: 0;font-family: "Font Awesome 6 Free" !important;	}

 table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: Arial, sans-serif;
}
table th,
table td {
    padding: 14px 18px;
    border: 1px solid #ddd;
    text-align: left;
}
table th {
    background: #fff9f2;
    color: #111;
    font-size: 16px;
    font-weight: 600;
}
table td {
    background: #fff9f2;
    color: #333;
    font-size: 15px;
}
table tr:nth-child(even) td {
    background: #f7f7f7;
}
table tr:hover td {
    background: #f1f1f1;
    transition: 0.3s;
}

.eg-social-share {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0px;
}
.eg-social-share a {width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
  background: #111;
  color: #fff;}

.article-engagement {
	display: flex;
	align-items: center;
	gap: 20px;
}
.eg-social-share .eg-share-facebook {
	background: #3b5998;
}
.eg-social-share .eg-share-linkedin {
	background: #0077b5;
}

.eg-social-share .eg-share-instagram {
	background: #e1306c;
}
.eg-social-share .eg-share-instagram svg,.eg-social-share .eg-share-x svg {
	width: 15px;
}
.eg-social-share .eg-share-x {
	background: #111;
}

.article-grid.featured .article-card{
    display:none;
    opacity:0;
    transform:translateY(20px);
    transition:.4s ease;
}

.article-grid.featured .article-card.show{
    display:block;
    opacity:1;
    transform:translateY(0);
}
.load-more-wrapper {
	text-align: center;
	margin-top: 30px;
}

.load-more-wrapper button {
	
	background: linear-gradient(135deg, #76ddff, var(--cyan));
	box-shadow: 0 10px 24px rgba(3, 158, 229, 0.26);
	padding: 10px 30px;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	cursor: pointer;
}
@media only screen and (max-width:480px){
    .sitemap-wrap ul {column-count: 1;}	font-size: 16px;
    
}