/* Shared Header Box */
.article-main {
    background-color: #ffffff;
    padding: 0px 0px 50px 0px;
    text-align: center;
}

.previous_page{
    padding: 120px 0px 10px 0px;
}

/* Article Title */
.article-title {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 200;
    color: #00446f;
    width: clamp(10px, 100%, 1200px);
    transition: transform 0.3s ease;
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    padding: 0px;

    line-height: 1.5;
}

.article-title:hover {
    transform: scale(1.02);
}

/* Make the author name a little bolder for emphasis */
.date-author p:first-child {
    font-weight: 600;
    font-family: "Google Sans Code", monospace;
    color: #00446f;
}

/* Author + Date Section */
.date-author {
    text-align: center;
    font-family: "Google Sans Code", monospace;
    font-size: 0.95rem;
    color: #7c7c7c;
    line-height: 1.5;
    border-top: 2px solid #ddd; /* Top border */
    border-bottom: 2px solid #ddd; /* Bottom border */
    padding: 20px 0px 20px 0px; /* Adds some internal spacing */
}

/* Article Image and Summary Container */
.article-image-summary {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px; /* Space between image and summary */
    padding: 50px 0px 50px 0px; /* Adds some internal spacing */
    
}

.article-image {
    flex: 0 0 40%; /* Image takes 40% of the container */
    max-width: 50%;
    height: auto;
    border-radius: 12px;
}

.article-summary {
    flex: 1; /* Summary takes remaining space */


    font-family: 'Montserrat', sans-serif;
    color: #00446f;
    line-height: 2;
    font-size: 1rem; /* Increased font size for summary */
    padding: 0px 0px 0px 0px; /* Adds some internal spacing */
}

/* Intro paragraph */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 2;
    color: #00446f;
    background-color: #fff;
    padding: 20px;
    font-size: 1rem; /* Increased font size for body */
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2rem;
    color: #00446f;
}

.subtitle {
    font-size: 1.1rem;
    color: #00446f;
    margin-top: 5px;
    text-align: center;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 0px 100px 0px;
}

article p {
    margin-bottom: 16px;
    text-align: center;
}

article section {
    margin-bottom: 30px;
}

article h2 {
    font-size: 1.8rem;
    color: #00446f;
    margin-bottom: 0px;
    border-top: 3px solid #ddd;
    padding: 20px 0 20px 0;
    text-align: center;
}

strong {
    color: #00446f;
}