.research-heading1 {
    font-family: 'Georgia', serif; 
    font-size: 24px;
    font-style: italic;
    text-align: center;
    color: #333; 
    margin: 30px 0 40px; 
    position: relative;
}

.research-heading1::after {
    content: '';
    position: absolute;
    width: 55%;
    height: 1px; 
    background-color: #ccc; 
    bottom: -10px; 
    left: 50%;
    transform: translateX(-50%);
}


.blog-container {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    padding: 70px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}


/* header, should probably inherit later */
.blog-header {
    position: relative;
    height: 250px;
    background-color: #f8f8f8;
    overflow: hidden;
}

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

/* title/date */
.blog-content h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
    text-align: left;
    color: #333;
}

.blog-content .blog-date {
    font-size: 16px;
    color: slategray;
    margin-bottom: 20px;
    text-align: left;
    font-style: italic;
}

/* Blog Body */
.blog-body {
    font-size: 18px;
    color: #444;
    margin-top: 20px;
    line-height: 1.8;
}

.blog-body p {
    margin-bottom: 20px;
}
