/* Layout & Stle for Blog Archive Page Elements*/

.blog-posts-hero {
        margin-top:0px;
        margin-bottom: 30px;
        background-color: #a3fff3;
        width: 1290px;
        height: 150px;
        border-radius: 10px;
        display: flex; /* Enable Flexbox for horizontal layout */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px; /* Add space between hero-image and hero-text */
}

.blog-posts-hero h1 {
    color: #333; 
    font-family: 'Inconsolata', monospace;
    font-size: 4rem; 
    font-weight: 300; /* Light weight */
    font-stretch: semi-expanded; /* Semi-expanded width */
}

.blog-categories img {
    height:75px;
    width:75px;
}

.blog-categories ul {
    list-style-type: none; /* Remove bullets */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    display: flex; /* Display list items in a row */
    flex-direction: row;
    gap: 200px; /* Add spacing between links */
}

.blog-categories img {
    display: inline-block; /* Enables transform */
    transition: transform 0.05s ease; 
}

.blog-categories img:hover {
    transform: scale(1.15); /* 30% larger */
}

.blog-cards {
    margin-bottom:20px;
    min-height: 700px;
}

.blog-cards a {
    display: block; /* Make <a> behave like a block element */
    text-decoration: none; /* Remove default underline */
    color: inherit; /* Ensure text color doesn't change */
    background-color: #a3fff3;
}

.blog-card {
    width:500px;
    display: flex; /* Enable Flexbox for horizontal layout */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Add border */
    border: 2px solid #737272; /* Thin border with a light gray color */
    
    /* Optional: Add rounded corners */
    border-radius: 5px;
    padding:8px;
    /* Add hover effect */
    transition: 
        box-shadow 0.2s ease-in-out,
        transform 0.2s ease-in-out,
        background-color 0.2s ease-in-out;    
    }
    
.blog-cards a:hover {
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        background-color: #b0e0f5; /* Slightly darker on hover */
        transform: scale(1.02);
    }
    

.blog-card img {
    width:100%;
    border-radius: 10px;
    margin-top:0px;
    margin-bottom:5px;
}

.blog-card h2 {
    color: #333; 
    font-family: 'Inconsolata', monospace;
    font-size: 1.5rem; 
    font-weight: 300; /* Light weight */
    font-stretch: semi-expanded; /* Semi-expanded width */
    padding:0;
    margin-top:0px;
    margin-bottom:5px;
}

.blog-card h3 {
    color: #333; 
    font-family: 'Inconsolata', monospace;
    font-size: 1rem; 
    font-weight: 100; /* Light weight */
    font-stretch: semi-expanded; /* Semi-expanded width */
    padding:0;
    margin-top:0px;
    margin-bottom:10px;
}

.blog-card .article-metadata {
    display:flex;
    align-items: left;
    width:100%;
}

.blog-card .article-metadata p {
    color: #0e0e0e; 
    font-family: 'Inconsolata', monospace;
    font-size: 1rem; 
    font-weight: 300; /* Light weight */
    padding:0;
    margin:0;
}