ul{
    padding: 0;
}

li{
    color: #fff;
    opacity: 67%;
    line-height: 1.75;
    text-align: left;
}


/* Blog Container */
.blog-container {
    min-height: 100vh;
    background-color: #012B27;
    color: white;
}

/* Blog Main Content */
.blog-main {
    max-width: 46rem;
    margin: 0 auto;
    padding: 1.5rem;
    margin-top: 5%;
    margin-bottom: 5%;
}

/* Blog Header */
.blog-header {
    margin-bottom: 3rem;
}

/* Centered Title */
.centered-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.blog-navigation {
    display: flex;
    justify-content: center;
    margin: 0;
    color: #9CA3AF;
}

.blog-nav-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-nav-link:hover {
    color: white;
}

.blog-title {
    font-size: 2.25rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.blog-date {
    color: #9CA3AF;
}

/* Blog Featured Image */
.blog-featured-image {
    margin-bottom: 3rem;        
    border-radius: 3px;
}

.blog-image-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Blog Content */
.blog-content {
    display: flex;
    flex-direction: column;
    margin-top: 3%;
    align-items: center;
}

.blog-content h2 {
    color: #fff;
    opacity: 67%;
    margin-top: 3%;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 5%;
    padding-right: 5%;
    width: 80%;
    
}

.blog-content p {
    color: #fff;
    opacity: 67%;
    line-height: 1.75;
    margin-top: 0;
    padding-left: 10%;
    padding-right: 10%;
}

/* Blog Header */
.blog-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all child elements horizontally */
    text-align: center; /* Center text within child elements */
}

/* Blog Navigation */
.blog-navigation {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #9CA3AF;
}

.blog-nav-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-nav-link:hover {
    color: white;
}

/* Blog Title */
.centered-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Date */
.blog-date {
    color: #9CA3AF;
    margin-top: 0.5rem; /* Add some spacing between the title and date */
}

.wp-block-list{
    padding: 0;
    margin: 0;
    align-items: left;
    justify-content: left;
}