@charset "utf-8";
/* CSS Document 
 * @package    WHMCS | Blog
 * @author     4Skins DEV. | aka TeRmiMCD
 * @version    1.0
 * /blog/assets/css/blog.css # FRONTEND
*/

/*WHMCS OVERRIDES*/
a:hover{
	text-decoration: none !important;
}
.main-container-nosidebar {
	max-width: 1288px;
}
.main-header {
	padding-top: 10px;
}
button:focus {
	outline: none !important;
}
/* Table*/
table, table > thead:first-child > tr:first-child > th  {
	background: rgba(100,100,100,.03);
	border-color:var(--table-border-color) !important;
}
.input-sm {
  height: 35px;
}
/* GLOBAL */
.right {
	display: flex;
	gap: 10px;
	margin-left: auto;
	align-items: center;
}
/* To hide the checkbox */
.toggleSwitch {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 30px;
  background-color: rgb(82, 82, 82);
  border-radius: 20px;
  cursor: pointer;
  transition-duration: .2s;
}

.toggleSwitch::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  left: 5px;
  background-color: transparent;
  border-radius: 50%;
  transition-duration: .2s;
  box-shadow: 5px 2px 7px rgba(8, 8, 8, 0.26);
  border: 5px solid white;
}

#checkboxInput:checked+.toggleSwitch::after {
  transform: translateX(100%);
  transition-duration: .2s;
  background-color: white;
}
/* Switch background change */
#checkboxInput:checked+.toggleSwitch {
  background-color: rgb(148, 118, 255);
  transition-duration: .2s;
}
/*EFF*/
.spin{
	position: relative;
}
.spin::after{
    content: "";
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    position: absolute;
    z-index: -1;
    border-radius: 10px;
    background-image: conic-gradient(from var(--angle), blue 10%, transparent 100%);
    animation: 3s spin linear infinite;
}
@property --angle{
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}
@keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
		--angle: 360deg;
    }
}
/* Featured Article Section */
.article-meta .icon {
	margin: 0 8px;
}
.article-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.author-info {
	display: flex;
	align-items: center;
	gap: 8px;
}
.author-avatar {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	outline: 1px solid rgba(100, 100, 100, .3);
	outline-offset: 2px
}
.author-name {
	font-size: 13px;
	color: #666;
	font-weight: 500;
}
.article-date, .read-time {
	font-size: 13px;
	margin-bottom: 0;
	color: #666;
}
.card-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 15px;
}
.card-top-post {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: baseline;
	width: 100%;
	margin-bottom: 15px;
}
.card-down{
	background: #ffffff15;
	backdrop-filter: blur(5px);
	display: flex;
	justify-content: space-between;
	padding: 5px 10px;
	margin-top: -40px;
}
.card-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.card-right {
	display: flex;
	align-items: center;
	gap: 10px;
}
.card-views, .card-comments {
	font-size: 0.8rem;
	/*color: var(--brand-warning, var(--warning), #EB7D00);*/
	white-space: nowrap;
	text-transform: uppercase;
	display: flex;
	gap: 4px;
	align-items: center;
    border-radius: 1rem;
    padding:3px;		
	> i {
		font-size: 1rem;
	}
}
.category-tag {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 1rem;
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
}
.category-featured {
	border-radius: 50%;
	backdrop-filter: blur(3px);
	border: 2px solid #ae3fec99;
	padding: 3px;
	display: inline-grid;
}
.category-featured, .category-sale {
	svg {
		fill: var(--text-body-color);
	}
}
.category-sale {
	border-radius: 50%;
	backdrop-filter: blur(3px);
	border: 2px solid #fd143f99;
	padding: 3px;
	display: inline-grid;
}
.featured-article {
	display: flex;
	gap: 30px;
	margin-bottom: 60px;
	background: #9b9b9b0f;
	border-radius: 0.5rem;
	padding: 0px;
	box-shadow: 0 5px 10px -2px rgba(132, 132, 132, 0.35);
	overflow: hidden;
}
.featured-content {
	flex: 1;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.featured-description {
	font-size: 16px;
	color: #666;
	margin-bottom: 24px;
	line-height: 1.6;
	text-align: justify;
}

.featured-image {
	flex: 1;
	min-height: 300px;
	overflow: hidden;
	/*background: rgba(100, 100, 100, .1);*/
	display: flex;
	align-items: center;
	justify-content: center;
}
.featured-image img {
	/*min-height: 330px;
	max-height: 330px;*/
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.featured-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 16px;
}
.image-placeholder {
	width: 100%;
	height: 100%;
	background-color: #1a1a1a;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 18px;
	border-radius: 0.5rem;
	padding: 20px;
}
.sale-price {
	display: inline-block;
	padding: 1px 8px;
	border-radius: 1rem;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
	border: 2px solid #4dbf1999;
}
.search form {
	display: flex;
	gap: 5px;
}
.read-article-btn {
	background-image: linear-gradient(var(--prompt-toggle-gradient-angle), #515151 23.27%, #99FFFF 52.55%, #FF8F79 70.11%, #D472FD 84.55%, #99FFFF 101.72%);
	animation: 10s linear infinite rotatePromptBorderGradient;
	display: inline-flex;
	align-items: center;
	padding: 2px;
	margin: 0;
	gap: 6px;
	border:0;
	line-height: 0;
}
.read-article-btn .inner{
	background: #ffffff;
	border-radius: 5px;
	padding: 5px 10px;
	line-height: 24px;
	width: 108px;
	height: 32px;
}
.lagom-dark-mode .read-article-btn .inner{
	background: #000000;
}
@property --prompt-toggle-gradient-angle {
  syntax:'<angle>';
  inherits:false;
  initial-value:0deg;
}
@-webkit-keyframes rotatePromptBorderGradient {
  0% {
    --prompt-toggle-gradient-angle:0deg;
  }
  100% {
    --prompt-toggle-gradient-angle:360deg;
  }
}
@keyframes rotatePromptBorderGradient {
  0% {
    --prompt-toggle-gradient-angle:0deg;
  }
  100% {
    --prompt-toggle-gradient-angle:360deg;
  }
}

.read-article-btn i {
  transition: transform 0.2s ease;
}

/* Animation bei Hover aktivieren */
.read-article-btn:hover i {
  animation: arrowMove 0.6s ease-in-out infinite;
}

/* Keyframes für sanfte Hin-und-her-Bewegung */
@keyframes arrowMove {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}
/* Category Navigation */
.category-nav {
	display: flex;
	gap: 0;
	margin-bottom: 40px;
	border-bottom: 1px solid #77777736;
}
.nav-item {
	background: none;
	border: none;
	padding: 16px 0;
	margin-right: 15px;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-block;
}
.nav-item.active {
	color: #1976d2;
	border-bottom-color: #1976d2;
}
.nav-item:hover {
	color: #1976d2;
	text-decoration: none;
}
.category-header {
	text-align: center;
	margin-bottom: 40px;
}
.category-header h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
}
.category-description {
	font-size: 16px;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}
.card-excerpt {
	font-size: 14px;
	color: #666;
	margin-bottom: 16px;
	line-height: 1.6;
}
/* Blog Post Grid */
.blog-grid {
	/*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
	margin-bottom: 60px;*/
	columns: 3 300px;
	column-gap: 3em;
}
/*.blog-card {
	background: #ffffff0f;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 3px 8px rgba(159, 159, 159, 0.08);
	transition: transform 0.2s, box-shadow 0.2s;
	display: block;
	margin-bottom: 1em;
	width: 100%;
	/*min-height: 430px;
}
*/
.blog-card {
  /*FIX display: grid - for Sortierung
  display: inline-block;
  */
  background: #ffffff0f;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(159, 159, 159, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  
  margin-bottom: 2em;
  width: 100%;
  columns: 1;
}
.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px -8px rgba(159, 159, 159, 0.3);
}
.blog-card a:hover, .blog-card:hover a, .blog-card:hover h3 {
	color: var(--brand-primary, --primary, #6366f1) !important;
	text-decoration: none;
}

.card-image {
	height: 200px;
	overflow: hidden;
	background: rgba(100, 100, 100, .1);
	text-align: center;
}
.card-image img {
	width: 100%;
	min-height: 200px;
	display: grid;
	align-items: center;
	justify-content: center;
}
.card-image .image-placeholder {
	height: 100%;
}
.card-content {
	padding: 20px;
}
.card-title {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 10px 0;
}
.card-title a {
	color: inherit;
	text-decoration: none;
}
.card-title a:hover {
	color: #1976d2;
}
.card-meta {
	display: flex;
	align-items: last baseline;
    margin-top: 10px;
	padding: 10px 0 0 0;
	gap: 8px;
	border-top:1px dotted rgba(100,100,100,.5);
	flex-wrap: wrap;
}
.card-date, .card-read-time {
	font-size: 13px;
	color: #999;
}

/* Single Post */
.blog-sidebar{
	margin: 15px 0;
}
.blog-post {
    background: transparent;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 40px;
   
}
.post-header {
    margin-bottom: 30px;
}
.post-header .post-meta .left{
	ba
	
}
.post-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 13px;
}
.post-meta > div {
	display: flex;
	align-items: center;
	gap: 5px;
}
.post-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}
.post-featured-image img {
    width: 100%;
    height: auto;
}
.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.post-content p {
    margin-bottom: 20px;
}
.post-content h2, .post-content h3 {
    margin: 30px 0 15px 0;
}
.post-footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #9b9b9b3b;
}
.post-tags {
    margin-top: 20px;
}
.tags-label {
    font-weight: 600;
    margin-right: 10px;
}
.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e3f2fd;
    color: #1976d2;
    border-radius: 16px;
    font-size: 12px;
    text-decoration: none;
}
.related-posts {
    margin-top: 60px;
}
.related-posts h2 {
    font-size: 24px;
    margin-bottom: 30px;
}
.error-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.error-message h2 {
    color: #dc3545;
    margin-bottom: 20px;
}
.back{
	border: 2px solid var(--brand-primary, var(--primary));
	border-radius: 2rem;
	padding: 0;
	margin: 0;
	width: 38px;
	height: 38px;
	svg{
		fill: var(--text-body-color, var(--gray), #888888)
	}
}
.back:hover{
	background: var(--brand-primary, var(--primary));
	svg{
		fill: #ffffff;
	}
}
.views {
	background: #7b7b7b29;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 13px;
}
.post-header .views{
	background: none;
	padding: 0;
} 
/* Load More Button */
.load-more-container {
	display: flex;
	justify-content: center;
}
.load-more-btn {
	background: none;
	border: 2px solid #1976d2;
	color: #1976d2;
	padding: 12px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}
.load-more-btn:hover {
	background-color: #1976d2;
	color: white;
}
/* Prism */
code[class*=language-], pre[class*=language-] {
	color: #ccc;
	background: 0 0;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 0.9em;
	text-align: left;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none
}
pre[class*=language-] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto
}
:not(pre) > code[class*=language-], pre[class*=language-] {
	background: #101010
}
:not(pre) > code[class*=language-] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal
}
.token.block-comment, .token.cdata, .token.comment, .token.doctype, .token.prolog {
	color: #999
}
.token.punctuation {
	color: #ccc
}
.token.attr-name, .token.deleted, .token.namespace, .token.tag {
	color: #e2777a
}
.token.function-name {
	color: #6196cc
}
.token.boolean, .token.function, .token.number {
	color: #f08d49
}
.token.class-name, .token.constant, .token.property, .token.symbol {
	color: #f8c555
}
.token.atrule, .token.builtin, .token.important, .token.keyword, .token.selector {
	color: #cc99cd
}
.token.attr-value, .token.char, .token.regex, .token.string, .token.variable {
	color: #7ec699
}
.token.entity, .token.operator, .token.url {
	color: #67cdcc
}
.token.bold, .token.important {
	font-weight: 700
}
.token.italic {
	font-style: italic
}
.token.entity {
	cursor: help
}
.token.inserted {
	color: green
}
.comment {
	background: #ffffff38 !important;
}
tbody > tr > td {
	border: 1px solid #8888882b
}

/*PAGINAGION*/
/* Modern Pagination for .blog-pagination */
.blog-pagination {
	display: flex;
	justify-content: center; /* zentriert die pagination */
	margin: 28px 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.blog-pagination .pagination {
	list-style: none;
	display: inline-flex;
	gap: 8px;
	padding: 0;
	margin: 0;
	align-items: center;
	border: none;
}
/* Grundstil für Items */
.blog-pagination .pagination li {
	display: inline-block;
}
/* Links und aktive Zahl */
.blog-pagination .pagination a, .blog-pagination .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	line-height: 1;
	color: #1f2937;
	background: #ffffff8a;
	border: 1px solid rgba(121, 121, 121, 0.04);
	box-shadow: 0 1px 0 rgb(147, 146, 146), 0 6px 18px rgba(170, 168, 168, 0.17);
}
/* Hover / Fokus */
.blog-pagination .pagination a:hover, .blog-pagination .pagination a:focus {
	box-shadow: 0 6px 20px rgba(18, 22, 37, 0.08);
	outline: none;
}
/* Active (current page) */
.blog-pagination .pagination li.active span {
	background: linear-gradient(180deg, #2a2a2d, #555);
	color: #fff;
	border: none;
	box-shadow: 0 10px 13px -5px rgba(125, 125, 125, 0.60);
	transform: none;
	font-weight: 600;
}
/* Previous/Next special small arrows */
.blog-pagination .pagination li.prev a, .blog-pagination .pagination li.next a {
	min-width: 56px;
	border-radius: 10px;
	padding: 0 14px;
}
/* Disabled state */
.blog-pagination .pagination li.disabled a, .blog-pagination .pagination li.disabled span {
	color: rgba(31, 37, 55, 0.35);
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
	background: #f8fafc;
	border: 1px solid rgba(31, 37, 55, 0.04);
}
/* Dots / ellipsis */
.blog-pagination .pagination li.dots span {
	background: transparent;
	box-shadow: none;
	cursor: default;
	color: rgba(31, 37, 55, 0.6);
	min-width: 36px;
}
/* Mobile: make list horizontally scrollable if many pages */
@media (max-width: 520px) {
	.blog-pagination .pagination {
		display: inline-flex;
		gap: 8px;
		padding: 6px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		border-radius: 12px;
		background: rgba(15, 23, 42, 0.02);
	}
	.blog-pagination .pagination a, .blog-pagination .pagination span {
		min-width: 36px;
		height: 36px;
		font-size: 13px;
	}
	.card-left {
		gap: 5px;
	}
	.card-views {
		font-size: 0.8rem;
		> span {
			display: none;
		}
	}
	.main-body {
		padding: 0;
	}
}
/* Accessibility: visible focus ring for keyboard users */
.blog-pagination .pagination a:focus-visible {
	box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12), 0 6px 20px rgba(18, 22, 37, 0.08);
	transform: translateY(-2px);
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.blog-pagination .pagination a, .blog-pagination .pagination span {
		transition: none;
	}
}
/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 20px 16px;
	}
	.featured-article {
		flex-direction: column;
		gap: 0;
	}
	.featured-image {
		min-height: 200px;
	}
	.image-placeholder {
		min-height: 200px;
	}
	.featured-content {
		padding: 24px;
	}
	.featured-title {
		font-size: 2.5rem;
	}
	.blog-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.category-nav {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.nav-item {
		white-space: nowrap;
		padding: 16px 20px;
	}
	.article-meta {
		gap: 12px;
	}
	.read-article-btn {
		margin-left: 0;
		margin-top: 8px;
		width: 100%;
	}
}
@media (max-width: 480px) {
	.featured-content {
		padding: 20px;
	}
	.featured-title {
		font-size: 20px;
	}
	.featured-description {
  		font-size: 14px;
	}
	.card-content {
		padding: 20px;
	}
	.card-title {
		font-size: 16px;
	}
}
/*SALE PRODUCT*/
.btn-add-to-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px 20px;
	background: #fd143f99;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}
.btn-add-to-cart:hover {
	background: #fb627ea3;
	color: black;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: rgba(159, 19, 45, 0.8) 0px 1px 1px, rgba(159, 19, 45, 0.3) 0px 2px 2px, rgba(159, 19, 45,0.07) 0px 4px 4px, rgba(159, 19, 45, 0.07) 0px 8px 8px, rgba(159, 19, 45, 0.2) 0px 16px 16px;
}
.blog-product-sidebar {
	width: 300px;
	flex-shrink: 0;
	position: sticky;
	top: 20px;
	align-self: flex-start;
	height: fit-content;
}
.description-content {
	color: #666;
	line-height: 1.6;
	font-size: 0.9rem;
}
.post-content-wrapper {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	position: relative;
	height: 100%; /* Damit genug Platz zum scrollen "sticky" ist */
}
.post-content-main {
	flex: 1;
	min-width: 0;
}
.product-card {
	/*background: #f8f9fa;*/
	border: 2px dashed #fd143f99;
	border-radius: 0.5rem;
	padding: 24px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.product-header {
	svg {
		fill: var(--text-body-color);
	}
	margin-bottom: 16px;
	border-bottom: 2px dashed #fd143f99;
	padding-bottom: 16px;	
}
.product-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0 0 8px 0;
}
.product-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fd143f99;
}
.product-short-description {
	margin-bottom: 16px;
	color: #666;
	line-height: 1.5;
}
.product-features {
	margin-bottom: 20px;
}
.product-features h4 {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 12px 0;
}
.product-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.product-features li {
	padding: 6px 0;
	padding-left: 20px;
	position: relative;
	color: #555;
}
.product-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: bold;
}
.product-actions {
	margin-bottom: 20px;
}
.product-full-description {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #8888883d;
}
.product-full-description h4 {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 12px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.post-content-wrapper {
		flex-direction: column;
		gap: 20px;
	}
	.blog-product-sidebar {
		width: 100%;
		order: -1; /* Product card comes first on mobile */
	}
	.product-card {
		position: static;
	}
}
/* FEATURED SLIDER*/
.slider .label-new{
	background: orangered;
	color: #000;
	width: 120px;
	padding: 5px;
	transform: rotate(-45deg);
	text-align: center;
	left: -45px;
  	top: -10px;
	position: absolute;	
}
.slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.slider_container {
	position: relative;
}
.slider_slide {
	display: none;
	width: 100%;	
}
.slider_slide .align-items-center{
	min-height: 440px;
	margin: 0 10px !important;
}
.slider_slide:first-child {
	display: block;
}
.slider_slide .row {
	margin: 0;
}
.slider_slide .col-md-6 {
	padding: 0;
}
.featured-image img {
	/*width: max-content;
	height: auto;*/
	border-radius: 8px;
}
.featured-content {
	padding: 2rem;
}
.slider_nav {
	position: absolute;
	bottom: 20px;
	left: 15px;
	display: flex;
	gap: 10px;
	z-index: 10;
}
.slider_prev, .slider_next {
	width: 40px;
	height: 40px;
	line-height: 30px !important;
	border-radius: 50%;
	background-color: #7171714f;
	backdrop-filter: blur(3px);	
	color: #000;
	border: none;
	outline: none;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px !important;
	font-family: monospace;
	font-weight: bold;
	transition: .5s;
	cursor: pointer;
}
.slider_prev:hover, .slider_next:hover {
	color: #ffffff;
	background: var(--brand-primary);
}
/* Slider Indicators */
.slider_indicators {
	position: absolute;
	bottom: 22px;
	left: 114px;
	display: flex;
	gap: 10px;
	z-index: 10;
	padding: 10px;
	border-radius: 2rem;
	backdrop-filter: blur(5px);
}
.slider_indicator {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid #99999960;
	background: #10101050;
	cursor: pointer;
	transition: all 0.3s ease;
}
.slider_indicator.active {
	border: 2px solid #101010;
	background: #ffffff80;
	backdrop-filter: blur(5px);
	transform: scale(1.2);
}
/* Slider Responsive */
@media (max-width: 768px) {
	.slider_slide .row {
		flex-direction: column;
	}
	.featured-title {
	   line-height: 1.5;
	   font-size: 1rem;
	}
	.featured-content {
		padding: 0 0 1rem 0;
	}
	.slider_nav {
		display: none;
	}
	.slider_indicators {
		top: 0px;
		left: 18px;
		position: absolute;
		bottom: auto;
		background: #fdfdfd1c;
		border-radius: 0 0 1rem 1rem;
	}
}

/*COMMENTS GRID NEW*/
.comments-grid {
	margin: var(--spacing-10x) auto 0 auto;
	column-count: 3;
	gap: 32px;
}

.comments-grid .comments-item {
	width: 100%;
	break-inside: avoid;
	margin-bottom: var(3 * 8);
}
.comments-item {
	display: flex;
	flex-direction: column;
	padding: var(--spacing-5x);
	width: 100%;
	white-space: unset;
	border-radius: 0.5rem;
}
.comment-avatar {
	margin-right: 5px;
	position: relative;
	width: 42px;
	height: 42px;
	background-color: #eee;
	border-radius: 100%;
	display: inline-flex;		
	align-items: center;
	justify-content: center;
}
.comment-avatar img{
	width: 100%;
	height: auto;
	border-radius: 2rem;
	outline: 2px solid var(--brand-primary-lighter-3);
	outline-offset: 2px;
}
.comment-avatar span {
	background-color: var(--brand-primary, var(--primary) #000000);
	width: 16px;
	height: 16px;
	display: flex;
	align-content: center;
	justify-content: center;
	color: #fff;
	line-height: 30px;
	border-radius: 100%;
	font-size: 25px;
	position: absolute;
	bottom: 5px;
	right: -5px;
}
.is-bordered {
	border: 1px solid #fdfdfd1c;
}