/* Reset CSS */
* {
	margin: 0;
	padding: 0;
	box-sizing:content-box;
	font-family: 'Poppins', sans-serif;
}

/* Variabel Warna */
:root {
	--primary: #2c3e50;
	--secondary: #707ef7;
	--accent: #e74c3c;
	--light: #ecf0f1;
	--dark: #2c3e50;
}

html {
    scroll-behavior: smooth;
}
body {
	background-color: #f9f9f9;
	color: #333;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Header dan Navigasi */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	position: relative;
}
section {
    padding-top: 100px !important;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	z-index: 1001;
}

.logo span {
	color: var(--secondary);
}

.nav-links {
	display: flex;
	list-style: none;
	transition: all 0.5s ease;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
}

.nav-links a:hover {
	color: var(--secondary);
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--secondary);
	bottom: -5px;
	left: 0;
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}

.cta-button {
	background-color: var(--secondary);
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
	display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-button:hover {
	background-color: #2b3486;
	transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--primary);
	cursor: pointer;
	z-index: 1001;
}

/* Hero Section */
.hero {
	height: auto;
	min-height: 100vh;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	display: flex;
	align-items: center;
	padding: 120px 0 60px;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.hero-text {
	flex: 1;
	padding-right: 50px;
	min-width: 300px;
}

.hero-image {
	flex: 1;
	text-align: center;
	min-width: 300px;
	margin-top: 40px;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
	100% { transform: translateY(0px); }
}

h1 {
	font-size: 48px;
	margin-bottom: 20px;
	color: var(--primary);
}

.hero p {
	font-size: 18px;
	margin-bottom: 30px;
	color: #555;
}

/* Fitur Section */
.features {
	padding: 80px 0;
	background-color: white;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 15px;
}

.section-title p {
	color: #777;
	max-width: 700px;
	margin: 0 auto;
	padding: 0 20px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	padding: 0 20px;
}

.feature-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s, transform 0.6s;
	margin: 10px;
}

.feature-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 40px;
	color: var(--secondary);
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary);
}

/* Layanan Section */
.services {
	padding: 80px 0;
	background-color: #f5f7fa;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	padding: 0 20px;
}

.service-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s, transform 0.6s;
	margin: 10px;
}

.service-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.service-card:hover {
	transform: translateY(-10px);
}

.service-image {
	height: 200px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.service-card:hover .service-image img {
	transform: scale(1.1);
}

.service-content {
	padding: 25px;
}
.service-content h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary);
}
.service-content p{
    margin-bottom: 30px;
}


/* Testimoni Section */
.testimonials {
	padding: 80px 0;
	background-color: white;
}

.testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 20px;
}

.testimonial {
	padding: 30px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s, transform 0.6s;
}

.testimonial.visible {
	opacity: 1;
	transform: translateY(0);
}

.testimonial-content {
	font-size: 18px;
	font-style: italic;
	margin-bottom: 20px;
	color: #555;
}

.testimonial-author {
	font-weight: 600;
	color: var(--primary);
}

/* CTA Section */
.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--secondary) 0%, #2980b9 100%);
	color: white;
	text-align: center;
}

.cta-section h2 {
	font-size: 36px;
	margin-bottom: 20px;
	padding: 0 20px;
}

.cta-section p {
	max-width: 700px;
	margin: 0 auto 30px;
	font-size: 18px;
	padding: 0 20px;
}

.cta-button.white {
	background-color: white;
	color: var(--secondary);
}
.cta-button.white:hover {
	background-color: #f1f1f1;
}

/* Footer */
footer {
	background-color: var(--dark);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	padding: 0 20px;
}

.footer-column h3 {
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: var(--secondary);
}

.footer-column p {
	margin-bottom: 15px;
	color: #bbb;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	color: white;
	background-color: rgba(255, 255, 255, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
}

.social-links a:hover {
	background-color: var(--secondary);
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #bbb;
	font-size: 14px;
}

/* Responsif */
@media (max-width: 992px) {
	.hero-text {
		padding-right: 0;
	}
	
	h1 {
		font-size: 40px;
	}
}

@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background-color: white;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 20px;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links li {
		margin: 15px 0;
	}

	.hero-content {
		flex-direction: column;
		text-align: center;
	}

	.hero-text {
		margin-bottom: 40px;
		padding-right: 0;
	}

	.hero-image {
		margin-top: 40px;
	}

	h1 {
		font-size: 36px;
	}

	.section-title h2 {
		font-size: 30px;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 32px;
	}

	.hero p {
		font-size: 16px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.cta-section h2 {
		font-size: 28px;
	}

	.feature-card, .service-card {
		padding: 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #2980b9 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.blog-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.blog-search {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
}

.blog-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.blog-search button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blog-search button:hover {
    background-color: #1a252f;
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.blog-main {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
    padding-left: 40px;
}

/* Featured Post */
.featured-post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.post-image {
    position: relative;
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.post-meta i {
    margin-right: 5px;
    color: var(--secondary);
}

.featured-post h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.featured-post h2 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.featured-post h2 a:hover {
    color: var(--secondary);
}

.featured-post p {
    margin-bottom: 20px;
    color: #555;
}

.read-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-post .post-content {
    padding: 20px;
}

.blog-post h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-post h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post h3 a:hover {
    color: var(--secondary);
}

.blog-post p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: white;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.page-numbers.current {
    background-color: var(--secondary);
    color: white;
}

.page-numbers:hover:not(.current) {
    background-color: #f1f1f1;
}

.page-numbers.next {
    width: auto;
    padding: 0 15px;
}

/* Sidebar */
.sidebar-widget {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.category-list a:hover {
    color: var(--secondary);
}

.category-list span {
    background-color: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post .post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.popular-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.popular-post h4 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.popular-post h4 a:hover {
    color: var(--secondary);
}

.popular-post .post-date {
    font-size: 13px;
    color: #777;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f5f5f5;
    color: #555;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-cloud a:hover {
    background-color: var(--secondary);
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* Responsive */
@media (min-width: 992px) {
    .blog-content .container {
        display: flex;
    }
    
    .featured-post {
        flex-direction: row;
    }
    
    .featured-post .post-image {
        flex: 1;
    }
    
    .featured-post .post-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero-content h1 {
        font-size: 36px;
    }
    
    .blog-sidebar {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-hero-content h1 {
        font-size: 30px;
    }
    
    .featured-post h2 {
        font-size: 24px;
    }
    
    .widget-title {
        font-size: 18px;
    }
}




/* Post Header */
.post-header {
    background-color: #f9f9f9;
    padding: 80px 0 40px;
    text-align: center;
	margin-top: 20px;
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-header .post-category {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.3;
}

.post-header .post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #777;
    font-size: 15px;
}

.post-header .post-meta i {
    margin-right: 5px;
    color: var(--secondary);
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 40px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Post Content */
.post-content-section {
    padding: 40px 0;
}

.post-content-wrapper {
    display: flex;
    gap: 40px;
}

.post-content {
    flex: 2;
}

.post-sidebar {
    flex: 1;
}

.post-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.post-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.post-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.post-content blockquote {
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    font-size: 18px;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.post-content a {
    color: var(--secondary);
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

/* About Author */
.about-author {
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.author-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    color: #777;
    font-size: 16px;
    transition: color 0.3s;
}

.author-social a:hover {
    color: var(--secondary);
}

/* Related Posts */
.related-posts {
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.related-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.related-post-content h4 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.related-post-content h4 a:hover {
    color: var(--secondary);
}

.related-post-content .post-date {
    font-size: 13px;
    color: #777;
}

/* Comments Section */
.comments-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.comments-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: var(--primary);
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.comment-author {
    font-weight: 600;
    color: var(--primary);
}

.comment-date {
    font-size: 13px;
    color: #777;
}

.comment-text {
    color: #555;
    line-height: 1.6;
}

.reply-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--secondary);
    font-size: 14px;
    text-decoration: none;
}

.reply-link:hover {
    text-decoration: underline;
}

.comment-reply {
    margin-left: 80px;
    margin-top: 30px;
    padding-left: 20px;
    border-left: 2px solid #eee;
}

/* Comment Form */
.comment-form {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comment-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    min-height: 150px;
}

/* Responsive */
@media (max-width: 992px) {
    .post-content-wrapper {
        flex-direction: column;
    }
    
    .post-sidebar {
        margin-top: 50px;
    }
    
    .comment-reply {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .post-header h1 {
        font-size: 30px;
    }
    
    .post-header .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-bottom: 15px;
    }
    
    .comment-reply {
        margin-left: 20px;
    }

    .service-content{
        padding: 15px;
    }

}

@media (max-width: 576px) {
    .post-header h1 {
        font-size: 26px;
    }
    
    .post-content h2 {
        font-size: 24px;
    }
    
    .post-content h3 {
        font-size: 20px;
    }

    .service-content{
        padding: 10px;
    }
}

.breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #777;
}

.breadcrumbs a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumbs [aria-current] {
    color: var(--primary);
    font-weight: 500;
}