/* Swipper */

.swiper .swiper-pagination-costum {
	all: initial;
	/* to change apperance use the custom props */
	--std-dim: 40px;
	--active-dim: 200px;
	--color-point: #efeae7;

	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	margin-top: 20px;
	gap: calc(var( --std-dim ) / 4 );

}

.swiper .swiper-pagination-costum .swiper-pagination-bullet {
	background: var(--color-point);
	height: var(--std-dim);
	width:  var(--std-dim);
	border-radius: calc( var( --std-dim ) / 2 );
	border: 5px solid #bc9272;
	transition: width .4s linear;
}

.swiper .swiper-pagination-costum .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: var(--active-dim);
}

/* Button */

.swiper .swiper-button-next::after, 
.swiper .swiper-button-prev::after {
	content: '';
}


.swiper .swiper-button-next, 
.swiper .swiper-button-prev {
	width: 5vw;
	height: 5vw;
	max-width: 60px;
	max-height: 60px;
	border-radius: inherit;
	color: var(--white);
	background-color: var(--primary);
}

.swiper .swiper-button-next svg, 
.swiper .swiper-button-prev svg {
	width: 3.2vw;
	height: 3.2vw;
	max-width: 30px;
	max-height: 30px;
}

.swiper .swiper-button-next:focus, 
.swiper .swiper-button-next:hover, 
.swiper .swiper-button-prev:focus, 
.swiper .swiper-button-prev:hover {
	color: var(--white);
	background-color: var(--primary);
}

.swiper .swiper-button-next::before, 
.swiper .swiper-button-prev::before {
	left: 6px;
	top: 6px;
	position: absolute;
	content: "";
	border: 1px solid var(--primary);
	height: 100%;
	width: 100%;
	transition: all 0.15s;
	z-index: -1;
}

.swiper .swiper-button-next:hover::before, 
.swiper .swiper-button-prev:hover::before {
	top: 0;
	left: 0;
}

@media screen and ( max-width: 768px ) {
	.swiper .swiper-pagination {
		--std-dim: 25px;
		--active-dim: 80px;
	
	}

	.swiper .swiper-button-next, 
	.swiper .swiper-button-prev {
		width: 30px;
		height: 30px;
	}

	.swiper .swiper-button-next svg, 
	.swiper .swiper-button-prev svg {
		width: 20px;
		height: 20px;
	}
}




/* Blog/Page Content Styles */
.blog-content {
    position: relative;
    /*max-width: 800px;*/
    margin: 15px auto 0 auto;
    padding: 0.2rem 1rem 2rem 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    background: #faf9f7;
}

.blog-content:before {
	left: 15px;
	bottom: 15px;
	position: absolute;
	content: "";
	background: #f0ebe7;
	height: 100%;
	width: 100%;
	transition: all 0.15s;
	z-index: -1;
}

.blog-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.blog-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
    color: #1a1a1a;
}

.blog-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #1a1a1a;
}

.blog-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    color: #1a1a1a;
}

.blog-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #1a1a1a;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-content strong {
    font-weight: 700;
}

.blog-content em {
    font-style: italic;
}

.blog-content ul, 
.blog-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid #e42e07;
    background-color: #f8f8f8;
    font-style: italic;
}

.blog-content blockquote p {
    margin: 0;
}

.blog-content a {
    color: #e42e07;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    color: #c42906;
    text-decoration: underline;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
}

.blog-content figure {
    margin: 2rem 0;
}

.blog-content figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.blog-content th,
.blog-content td {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.blog-content th {
    background-color: #f8f8f8;
    font-weight: 600;
}

.blog-content code {
    background-color: #f8f8f8;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.blog-content pre {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-content pre code {
    background-color: transparent;
    padding: 0;
}

.blog-content hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #ddd;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .blog-content {
        font-size: 1rem;
        padding: 1.5rem 1rem;
    }

    .blog-content h1 {
        font-size: 2rem;
    }

    .blog-content h2 {
        font-size: 1.75rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .blog-content h4 {
        font-size: 1.25rem;
    }

    .blog-content h5 {
        font-size: 1.1rem;
    }

    .blog-content h6 {
        font-size: 1rem;
    }

    .blog-content blockquote {
        padding: 1rem;
    }
}