
.blog-list-wrapper {
    grid-area: 2 / 1 / 4 / 3;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
}

.blog-list-wrapper .blog-list-item:last-child {
    margin-bottom: 0;
}

.blog-list-item {
    background: rgba(8, 3, 18, 0.65);
    border: 1px solid rgba(99, 102, 241, 0.45);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.blog-list-item::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 14px;
    pointer-events: none;
}

.blog-list-item::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    pointer-events: none;
}

.blog-list-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-list-item-title {
    font-family: var(--font-pixel);
    font-size: 20px;
    margin-bottom: 8px;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.45);
}

.blog-list-item-title a {
    color: var(--white);
    transition: color 0.2s ease;
}

.blog-list-item-title a:hover {
    color: var(--blue);
}

.blog-list-item-excerpt {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(248, 250, 252, 0.9);
    text-shadow: 0 0 8px rgba(76, 29, 149, 0.35);
    margin-bottom: 8px;
    line-height: 1.5;
    text-indent: 0;
}

.blog-list-item-meta {
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    padding-top: 6px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(248, 250, 252, 0.85);
    text-shadow: 0 0 6px rgba(76, 29, 149, 0.3);
}

.blog-list-item-thumb {
    width: 130px;
    min-width: 130px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 16px rgba(12, 10, 24, 0.4);
}

.blog-list-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(115%);
    background: rgba(5, 1, 15, 0.9);
}

.blog-list-item-author {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-list-item-date::before {
    content: '[';
    color: var(--red);
}

.blog-list-item-date::after {
    content: ']';
    color: var(--red);
}

.blog-list-item-tags {
    color: var(--blue);
    text-transform: uppercase;
}


.blog-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-list-header {
    background: rgba(8, 3, 18, 0.75);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.3);
}

.blog-list-header::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 18px;
    pointer-events: none;
}

.blog-list-title {
    font-size: 48px;
    margin-bottom: 10px;
}

.blog-list-subtitle {
    font-family: var(--font-mono);
    color: var(--white);
    font-size: 14px;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(76, 29, 149, 0.35);
}



.blog-article {
    background: rgba(8, 3, 18, 0.75);
    border: 1px solid rgba(99, 102, 241, 0.45);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.blog-article::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.blog-article::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 22px;
    pointer-events: none;
    z-index: 0;
}


.blog-article-header {
    background: rgba(8, 3, 18, 0.6);
    border-bottom: 1px solid rgba(99, 102, 241, 0.25);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-article-author-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.blog-article-author-wrapper .user-avatar {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 20px;
}

.blog-article-author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-article-author {
    font-family: var(--font-mono);
    font-size: 14px;
    color: rgba(248, 250, 252, 0.9);
    text-shadow: 0px 1px 0px rgba(99, 102, 241, 0.2);
}


.blog-article-body {
    padding: 15px;
}

.blog-article-title {
    font-family: var(--font-pixel);
    font-size: 32px;
    margin-bottom: 15px;
}

.blog-article-title a {
    color: var(--white);
    text-shadow: -1px 1px 0 rgba(243, 139, 168, 0.4);
    transition: color 0.2s ease;
}

.blog-article-title a:hover {
    color: var(--blue);
}

.blog-article-content {
    font-family: var(--font-mono);
    color: rgba(248, 250, 252, 0.92);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
    text-shadow: 0px 1px 0px rgba(99, 102, 241, 0.15);
}


.blog-article-meta {
    border-top: 1px solid rgba(99, 102, 241, 0.25);
    padding: 12px 18px;
    background: rgba(17, 24, 39, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-article-timestamp {
    font-family: var(--font-mono);
    color: rgba(248, 250, 252, 0.85);
    font-size: 12px;
    text-shadow: 0px 1px 0px rgba(99, 102, 241, 0.2);
}

.blog-article-timestamp::before {
    content: '[';
    color: var(--red);
}

.blog-article-timestamp::after {
    content: ']';
    color: var(--red);
}

.blog-article-tags {
    font-family: var(--font-mono);
    color: rgba(248, 250, 252, 0.85);
    font-size: 12px;
    text-shadow: 0px 1px 0px rgba(99, 102, 241, 0.2);
    letter-spacing: 1px;
}



.blog-post-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blog-post {
    background: rgba(17, 24, 39, 0.78);
    border: 1px solid rgba(99, 102, 241, 0.45);
    border-radius: 18px;
    position: relative;
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.35);
}

.blog-post::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 22px;
    pointer-events: none;
    z-index: 1;
}

.blog-post::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(243, 139, 168, 0.35);
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

.blog-post-header {
    background: rgba(17, 24, 39, 0.6);
    border-bottom: 1px solid rgba(99, 102, 241, 0.25);
    padding: 24px;
}

.blog-post-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.blog-post-author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: rgba(17, 24, 39, 0.55);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    margin: 0 15px;
}

.blog-post-content {
    padding: 30px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(248, 250, 252, 0.92);

.blog-post-hero {
    width: 100%;
    max-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 12px 28px rgba(8, 6, 18, 0.45);
}

.blog-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
    text-shadow: 0px 1px 0px rgba(99, 102, 241, 0.15);
}

.blog-post-content p {
    margin-bottom: 15px;
}

.blog-post-content h2,
.blog-post-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.blog-post-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-mono);
    color: rgba(248, 250, 252, 0.85);
    font-size: 12px;
    text-shadow: 0px 1px 0px rgba(99, 102, 241, 0.15);
}

.blog-post-date::before {
    content: '[';
    color: var(--red);
}

.blog-post-date::after {
    content: ']';
    color: var(--red);
}

.blog-post-categories {
    text-transform: uppercase;
    letter-spacing: 1px;
}



.comments-section {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.3);
}

.comments-title {
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(243, 139, 168, 0.4);
}

.comment {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-body {
    padding-left: 55px;
    color: rgba(248, 250, 252, 0.88);
    font-size: 14px;
}



@media (max-width: 768px) {
    .blog-list-wrapper {
        grid-area: 2 / 1 / 4 / 2;
    }

    .blog-list-item-title {
        font-size: 20px;
    }

    .blog-list-title {
        font-size: 36px;
    }
    .blog-list-item {
        flex-direction: column;
    }

    .blog-list-item-thumb {
        width: 100%;
        min-width: 0;
        aspect-ratio: 16 / 9;
    }

    .blog-list-item-thumb img {
        object-position: center;
    }

    .blog-article-title {
        font-size: 24px;
    }

    .blog-article-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-post-title {
        font-size: 36px;
    }

    .blog-post-content {
        padding: 15px;
    }
}

