/* Single Post Template Styles */

.blog-wrapper {    
    background-image: linear-gradient(rgba(93, 93, 93, 0.03) 1px, transparent 1px), linear-gradient(to right, rgba(93, 93, 93, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-color: #ffffff;
    width: 100%;
    min-height: 100vh;
    padding: 60px 24px;
}

.blog-post-container {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0px 0px 56px 0px;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(149, 155, 189, 0.25);
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    padding: 16px;
    padding-bottom: 32px;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Post Title */
.blog-post-title {
    font-family: 'Glober', sans-serif;
    font-weight: 800;
    color: #0a2540;
    font-size: 32px;
    line-height: 1.3;
    margin: 0px 56px 0px 56px;
    padding: 0;
}

/* Post Date */
.blog-post-date {
    font-family: 'Inter', sans-serif;
    color: #8A8B8C;
    font-size: 16px;
    margin: 0px 56px 0px 56px;
    padding: 8px 0 0 0;
}

/* Post Content */
.blog-post-content {
    font-family: 'Inter', sans-serif;
    color: #425466;
    font-size: 16px;
    line-height: 1.5em;
    margin: 16px 56px 0px 56px;
    max-width: 96ch;
}

.blog-post-content p {
    margin-bottom: 1em;
    text-wrap: pretty;
}

.blog-post-content a {
    color: #008BD1;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-content a:hover {
    color: #0076b3;
}

.blog-post-content ul{
    list-style: disc;
    list-style-position: outside;
}
.blog-post-content ul,
.blog-post-content ol {
    line-height: 1.7em;
    margin: 1em 0;
    padding-left: 2em;
}

.blog-post-content ol li {
    padding-bottom: 24px;
}

.blog-post-content ul li {
    padding-bottom: 0.5em;
}

.blog-post-content h2 {
    font-family: 'Glober', sans-serif;
    font-weight: 700;
    color: #0a2540;
    font-size: 28px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.blog-post-content h3 {
    font-family: 'Glober', sans-serif;
    font-weight: 700;
    color: #0a2540;
    font-size: 24px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.blog-post-content h4 {
    font-family: 'Glober', sans-serif;
    font-weight: 600;
    color: #0a2540;
    font-size: 20px;
    margin-top: 1.25em;
    margin-bottom: 0.5em;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.blog-post-content blockquote {
    border-left: 4px solid #008BD1;
    padding-left: 1.5em;
    margin: 1.5em 0;
    color: #425466;
    font-style: italic;
}

/* Tablet Styles */
@media (max-width: 980px) {
    .blog-wrapper {
        padding: 40px 16px;
    }
    
    .blog-post-title {
        margin: 0px 24px 0px 24px;
        font-size: 28px;
    }
    
    .blog-post-date {
        margin: 0px 24px 0px 24px;
    }
    
    .blog-post-content {
        margin: 16px 24px 0px 24px;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    .blog-wrapper {
        padding: 24px 8px;
    }
    
    .blog-post-title {
        margin: 0px 16px 0px 16px;
        font-size: 24px;
    }
    
    .blog-post-date {
        margin: 0px 16px 0px 16px;
        font-size: 14px;
    }
    
    .blog-post-content {
        margin: 16px 16px 0px 16px;
        font-size: 16px;
    }
    
    .blog-post-content h2 {
        font-size: 24px;
    }
    
    .blog-post-content h3 {
        font-size: 20px;
    }
    
    .blog-post-content h4 {
        font-size: 18px;
    }
}

