/* Blog Post Styles - Clean and Minimal */
.blog-post {
    min-height: 100vh;
    padding: 120px 20px 80px;
    background: #000000;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Post Header */
.post-header {
    margin-bottom: 60px;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 25px;
}

.breadcrumb-link:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    color: #444;
}

.breadcrumb-current {
    color: #ccc;
    font-size: 25px;
}

/* Title */
.post-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 100;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    width: 100%;
}

/* Meta */
.post-meta {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 48px;
    margin-left: 0px;
    text-align: left;
    width: 100%;
}

/* Tags */
.post-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-tags .tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.post-tags .tag:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    color: #00ffff;
}


/* Featured Image */
.post-featured-image {
    width: 100%;
    margin-bottom: 60px;
    overflow: hidden;
    
}

.post-featured-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 25px;
    margin: 0 auto;
}

/* Post Content */
.post-content {
    color: #ddd;
    font-size: 21px;
    line-height: 1.75;
    font-family: 'Metropolis', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.post-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 48px 0 24px;
    line-height: 1.2;
}

.post-content h3 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin: 45px 0 20px;
}

.post-content p {
    margin-bottom: 16px;
    color: #ccc;
}

.post-content a {
    color: #00d4ff;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: #00ffff;
}

.post-content strong {
    color: #fff;
    font-weight: 600;
}

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

.post-content ul,
.post-content ol {
    margin: 24px 0;
    padding-left: 28px;
    color: #ccc;
}

.post-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.post-content blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #00d4ff;
    font-style: italic;
    color: #bbb;
}

.post-content pre {
    margin: 32px 0;
    padding: 20px;
    background: #111;
    border-radius: 6px;
    overflow-x: auto;
}

.post-content code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.9em;
}


.post-content img {
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 25px;
    display: block;
}

.post-content table{
    caption-side: bottom;
    border-collapse: collapse;
}

.post-content table th,td {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    vertical-align: top;
}


.post-content hr {
    margin: 48px 0;
    border: none;
    border-top: 1px solid #333;
}

/* Post Footer */
.post-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

/* Share Section */
.share-section {
    text-align: center;
}

.share-prompt {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.share-button {
    padding: 12px 16px ;
    background: transparent;
    border: 1px solid #333;
    border-radius: 30px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}


.share-button svg{
    position: relative;
    top: 3px;
}

.share-button:hover {
    border-color: #ffffff;
    color: #ffffff;
}

