* {
     background-color: #fff !important; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff !important;
    color: #333;
    line-height: 1.6;
}

main {
    /*max-width: 800px;*/
    /*margin: 20px auto;*/
    padding: 2rem 1.5rem;
    background: white;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
    text-align: justify;
}

/* Header Info */
.info {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

    .info h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        color: #222;
    }

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

    .meta time {
        color: #444;
    }

    .meta span {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .meta i {
        font-size: 1rem;
    }

/* Post Content */

.main-article {
    overflow-x: hidden;
    /*line-break: anywhere;*/
    word-break: break-word;
}

.post-content {
    margin-bottom: 2rem;
}

    .post-content p {
        margin-bottom: 0.1rem;
        font-size: 1.1rem;
        color: #444;
    }

    .post-content strong {
        color: #222;
        font-weight: 600;
    }

    .post-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
        color: #222;
    }

    .post-content ul,
    .post-content ol {
        margin: 1.5rem 0;
        padding-left: 1.5rem;
    }

    .post-content li {
        margin-bottom: 0.5rem;
    }

    .post-content img {
        height: auto !important;
        width: 100% !important;
    }

/* Blockquote */
blockquote {
    border-left: 4px solid #0066cc;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: #f8fafc;
    font-style: italic;
}

    blockquote p {
        margin-bottom: 0.5rem;
        color: #555;
    }

    blockquote cite {
        display: block;
        text-align: right;
        font-style: normal;
        color: #666;
        font-size: 0.9rem;
    }

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

    .tags p {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.8rem;
    }

    .tags strong {
        color: #444;
    }

    .tags a {
        text-decoration: none;
        padding: 0.3rem 0.8rem;
        background: #e6f2ff;
        border-radius: 4px;
        font-size: 0.9rem;
        transition: all 0.2s ease;
    }

        .tags a:hover {
            background: #d0e4ff;
        }

.author-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: justify;
    padding: 12px;
    /*margin: 24px 100px;*/
}

.author-card .content {
    display: flex;
    gap: 20px;
}

.author-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    max-width: 90px;
    max-height: 90px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 80px;
}

    .author-info h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--dark-color);
    }

    .author-info p {
        color: var(--secondary-color);
        font-size: 14px;
    }


/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 0px;
    }

    .info h1 {
        font-size: 1.7rem;
    }

    .meta {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .post-content p {
        font-size: 1rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .author-card {
        margin: 14px 0px;
        padding: 0px 12px;
    }
}

@media (max-width: 480px) {
    .info h1 {
        font-size: 1.5rem;
    }

    .meta {
        gap: 0.8rem;
        row-gap: 0.5rem;
    }

    .tags p {
        gap: 0.5rem;
    }

    .tags a {
        padding: 0.2rem 0.6rem;
        font-size: 0.85rem;
    }
    .author-card .content {
        gap: 10px;
    }

    .author-image {
        width: 75px;
        height: 75px;
        max-width: 75px;
        max-height: 75px;
    }

    .author-info h3 {
        font-size: 1.1rem;
    }

    .author-info {
        gap: 0px;
        height: 75px;
    }

        .author-info p {
            font-size: 14px;
        }

    .author-card {
        padding: 0px 0px;
    }
}

