/* Single Post Template Styles */

/* Post Title */
.single-post__title {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-dark);
}

/* Featured Image */
.single-post__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.single-post__image img {
    border-radius: 12px;
}

/* Post Content */
.single-post__content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.single-post__content p {
    margin-bottom: 1.5rem;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.single-post__content blockquote {
    border-left: 4px solid var(--highlight-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.single-post__content ul,
.single-post__content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.single-post__content li {
    margin-bottom: 0.5rem;
}

.single-post__content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.single-post__content a:hover {
    color: var(--highlight-dark);
}

/* Tags */
.single-post__tags .badge {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 0.65rem;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
}

.single-post__tags .badge:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color);
}

/* Post Navigation */
.post-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.post-nav-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.post-nav-link span {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* Gallery */
.single-post__galerie-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.single-post__galerie-title i {
    color: var(--highlight-color);
}
.galerie-item {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}
.galerie-item__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.galerie-item__title {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 767px) {
    .single-post__title {
        font-size: 1.6rem;
    }

    .single-post__content {
        font-size: 1rem;
    }

    .post-nav-link span {
        font-size: 0.85rem;
    }
}
