.blog-detail-page {
    background: var(--ut-gradient-primary);
    min-height: 100vh;
    padding: 2rem 0;
}

.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--ut-color-primary-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--ut-color-accent-500);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
}

.article-card {
    background: var(--ut-color-surface);
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.article-card .card-body {
    padding: 3rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--ut-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-meta {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--ut-color-primary-500);
}

.article-meta small {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta small i {
    color: var(--ut-color-primary-500);
}

.article-meta .badge {
    background: var(--ut-gradient-primary);
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.article-content h1 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--ut-color-primary-500);
}

.article-content h2 {
    font-size: 1.75rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--ut-color-border);
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content h4 {
    font-size: 1.25rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    position: relative;
}

.article-content ul li::marker {
    color: var(--ut-color-primary-500);
}

.article-content ol li::marker {
    color: var(--ut-color-primary-500);
    font-weight: 600;
}

.article-content a {
    color: var(--ut-color-primary-500);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.article-content a:hover {
    color: var(--ut-color-accent-500);
    border-bottom-color: var(--ut-color-accent-500);
}

.article-content code {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--ut-color-primary-500);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    font-weight: 600;
}

.article-content pre {
    background: #1a202c;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.article-content blockquote {
    border-left: 4px solid var(--ut-color-primary-500);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    transition: transform 0.3s ease;
}

.article-content img:hover {
    transform: scale(1.02);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.article-content th,
.article-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--ut-color-border);
}

.article-content th {
    background: var(--ut-gradient-primary);
    color: white;
    font-weight: 600;
}

.article-content tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

.article-content hr {
    border: none;
    height: 2px;
    background: var(--ut-gradient-primary);
    margin: 2rem 0;
    opacity: 0.3;
}

.article-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--ut-color-border);
}

.article-actions .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .article-card .card-body {
        padding: 2rem 1.5rem;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h1 {
        font-size: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.25rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}
