/* General Reset */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background: 
            linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
            url('../assets/images/content/Background_IMG.jpg') no-repeat left center fixed;
    background-size: cover;
    background-blend-mode: lighten;
    opacity: 1;
}

/* General Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: normal;
}

p {
    margin: 0 0 1rem 0;
}

/* General Link Styles */
a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

/* General Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* General Image Styles */
img {
    max-width: 100%;
    height: auto;
}

/* General List Styles */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* General Button Styles */
button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

/* General Form Styles */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* General Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Blog Posts Styling */
.blog-posts {
    max-width: 750px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

.blog-posts article {
    background: rgba(255,255,255,0.92);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 2.5rem;
    padding: 2rem 2rem 1.5rem 2rem;
    border-left: 6px solid #b8860b;
    transition: box-shadow 0.2s;
}

.blog-posts article:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.blog-posts h3 {
    font-family: 'Georgia', serif;
    color: #b8860b;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.blog-posts p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .blog-posts {
        padding: 0 0.2rem;
    }
    .blog-posts article {
        padding: 1.2rem 0.7rem 1rem 1rem;
    }
    .blog-posts h3 {
        font-size: 1.1rem;
    }
}
