.log-image{
    width: 200px;
    border-radius: 30px;
}

/* Blog Post Layout Styles */
.blog-posts-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.blog-post {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    margin: 30px 0;
    padding: 0;
    border: 2px solid #3CE7D1;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(60, 231, 209, 0.1);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(60, 231, 209, 0.2);
    border-color: #26877a;
}

.blog-post.featured {
    border: 3px solid #e73c3c;
    background: rgba(231, 60, 60, 0.1);
}

.blog-post.featured:hover {
    border-color: #c0392b;
    box-shadow: 0 10px 25px rgba(231, 60, 60, 0.2);
}

.blog-post.upcoming {
    border: 2px dashed #3CE7D1;
    background: rgba(60, 231, 209, 0.05);
    opacity: 0.8;
}

.post-header {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border-bottom: 1px solid rgba(60, 231, 209, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.post-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3CE7D1, #26877a);
    color: #000;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
    margin-right: 20px;
    box-shadow: 0 3px 10px rgba(60, 231, 209, 0.3);
}

.post-date .day {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.post-date .month {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    margin: 2px 0;
}

.post-date .year {
    font-size: 12px;
    line-height: 1;
    opacity: 0.8;
}

.post-title {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-title h3 {
    color: #3CE7D1;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: fit-content;
    margin: 0 0 10px 0;
    font-size: 28px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.featured .post-title h3 {
    color: #e73c3c;
}

.post-status {
    color: #3CE7D1;
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
    margin-top: 5px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag {
    background: rgba(60, 231, 209, 0.2);
    color: #3CE7D1;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(60, 231, 209, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-tag {
    background: rgba(231, 60, 60, 0.2);
    color: #e73c3c;
    border-color: rgba(231, 60, 60, 0.3);
}

.post-content {
    padding: 25px;
    line-height: 1.6;
}

.post-content p {
    margin: 0 0 15px 0;
    color: #3CE7D1;
    font-size: 18px;
}

.post-content h1 {
    position: relative;
    color: #3CE7D1;
    text-align: left;
    margin: 25px 0 15px 0;
    font-size: 23px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding-bottom: 8px;
}

.post-content h1::after {
    content: "";
    display: block;
    width: 70px;            /* set custom border length */
    border-bottom: 2px solid rgba(60, 231, 209, 0.3);
    position: absolute;
    left: 0;                /* align to left */
    bottom: 0;              /* stick to bottom */
}

.post-content h2 {
    color: #3CE7D1;
    margin: 25px 0 15px 0;
    font-size: 28px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid rgba(60, 231, 209, 0.3);
    padding-bottom: 8px;
}

.post-content a {
    color: #e73c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: #3CE7D1;
    text-decoration: underline;
}

.post-content strong {
    color: #3CE7D1;
    font-weight: bold;
}

/* Mobile Responsive */
@media only screen and (max-width: 970px) {
    .post-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .post-date {
        margin: 0 0 15px 0;
        align-self: center;
    }
    
    .post-title h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .post-tags {
        justify-content: center;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-content h2 {
        font-size: 20px;
    }
    
    .post-content p {
        font-size: 16px;
    }
}
