* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    color: #333;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 12px;
}

h6 {
    font-size: 10px;
}

p {
    font-size: 16px;
}

main {
    background: white;
    text-align: justify;
}

.container {
    padding: 0px !important;
    max-width: 1140px;
}

/* Header Info */
.info {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

    .info h1 {
        margin-bottom: 1rem;
        color: #222;
    }

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #666;
}

    .meta time {
        color: #444;
    }

    .meta span {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }


/* Post Content */

.main-article {
    /*overflow-x: hidden;*/
    /*line-break: anywhere;*/
    /*word-break: break-word;*/
    word-break: normal;
    hyphens: auto;
}

.post-content {
    margin: 0.5rem 0;
}

    .post-content p {
        margin-bottom: 0.1rem;
        color: #444;
    }

    .post-content strong {
        color: #222;
        font-weight: 600;
    }

    .post-content h3 {
        margin: 1rem 0 0.5rem;
        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;
    }

.post-content a {
    color: #0200ff !important;
    text-decoration-line: underline;
    transition: all 0.2s ease !important;
}

    /* Common table styles */
    .post-content table {
        width: 100%;
        border: 1px solid;
        border-collapse: collapse;
        background-color: #fff;
        border-color: #000;
    }

        .post-content table th,
        .post-content table td {
            border: 1px solid;
            padding: 6px;
            color: #000;
        }

        /* Striped rows */
        .post-content table tr:nth-child(even) {
            background-color: #f9f9f9;
        }


/*.post-content table css End*/


.author-card {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    padding: 1rem 1.1rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: justify;
}

    .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-weight: 600;
        color: var(--dark-color);
        margin:0px;
    }

    .author-info p {
        color: var(--secondary-color);
    }


/* Responsive Design */
@media (max-width: 768px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 14px;
    }

    h5 {
        font-size: 10px;
    }

    h6 {
        font-size: 8px;
    }

    main {
        padding: 0;
    }


    .meta {
        gap: 1rem;
    }

    .author-card {
        padding: 12px 12px;
    }
}

@media (max-width: 480px) {

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 12px;
    }

    h5 {
        font-size: 8px;
    }

    h6 {
        font-size: 6px;
    }

    .container {
        padding: 10px 5px 0 5px;
    }

    main {
        padding: 0px;
        margin: 0px auto;
    }

    .meta {
        gap: 0.8rem;
        row-gap: 0.5rem;
    }

    .author-card .content {
        gap: 10px;
        padding: 10px 0px;
    }

    .author-image {
        width: 75px;
        height: 75px;
        max-width: 75px;
        max-height: 75px;
    }

    .author-info {
        gap: 0px;
        height: 75px;
    }

    .author-card {
        padding: 0px 0px;
    }
}
