/* Article Container Styling - Isolated for article.html */
.teaser-container {
    width: 90%;
    /* max-width: 800px; */
    margin: 40px auto 20px auto;
    padding: 20px;
    background: #FFFFFF; /* White background for article content */
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */

    display: flex;
    flex-direction: column;
}

.teaser-container h2 {
    font-size: 1.6rem;
    color: #003366;
    margin-bottom: 10px;
}

.author-date {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.teaser-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.teaser-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.button-container {
    display: flex;
    justify-content: flex-end; /* Align the button to the right */
    width: 100%; /* Ensure the container spans the full width */
    padding: 0 10px 0 0;
}


.read-more-btn {
    display: inline-block;
    background-color: #DAA520;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #B8860B;
}

