/* Minimalist Style Sheet */

/* Fonts and Resets */
html {
    box-sizing: border-box;
    font-size: 16px; /* Base font size */
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2%;
    border-bottom: 1px solid #ddd;
    background-color: #eff0e6;
}

.site-logo {
    height: 40px; /* Smaller logo */
}

.site-nav a {
    text-decoration: none;
    color: #333;
    margin-left: 2rem;
    font-size: 0.9rem;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 4rem 2%;
    margin-bottom: -50px;
    margin-top: -50px;
}

#hero h1 {
    font-weight: 400;
    font-size: 2rem;
}

#hero p {
    color: #555;
    margin-top: 1rem;
}

.cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
}

/* Solutions Section */
#solutions {
    padding: 2rem 2%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-left: 20%;
    padding-right: 20%;
}

h2 {
    padding-left: 20%;
    padding-bottom: 2%;
    padding-top: 2%;
}

#solutions p {
    font-size: 0.9rem;
    color: #555;
    padding: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #555;
}

/* Minimalist Style Sheet */

/* Fonts and Resets */
html {
    box-sizing: border-box;
    font-size: 16px; /* Base font size */
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2%;
    border-bottom: 1px solid #ddd;
    background-color: #eff0e6;
}

.site-logo {
    height: 40px; /* Smaller logo */
}

.site-nav a {
    text-decoration: none;
    color: #333;
    margin-left: 2rem;
    font-size: 0.9rem;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 4rem 2%;
    margin-bottom: -50px;
    margin-top: -50px;
}

#hero h1 {
    font-weight: 400;
    font-size: 2rem;
}

#hero p {
    color: #555;
    margin-top: 1rem;
}

.cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
}

/* Articles Grid */
.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 2%;
    gap: 2rem; /* Adjust gap between articles */
}

.article {
    width: calc(33.333% - 2rem); /* Subtract the gap to calculate width */
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 2rem; /* Margin at the bottom of each article */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

.article img {
    width: 100%;
    display: block;
}

.article h3, .article p, .article time {
    padding: 0.5rem;
}

.article h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.article p {
    font-size: 0.9rem;
    color: #666;
}

.article time {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive Layout for Articles */
@media (max-width: 1000px) {
    .article {
        width: calc(50% - 2rem); /* 2 articles per row */
    }
}

@media (max-width: 600px) {
    .article {
        width: 100%; /* 1 article per row */
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #ddd;
    background-color: #eff0e6;
}

/* This CSS targets images within the 'social-media' class in the 'section' */
section .social-media img {
    width: 50px;  /* Adjust width as needed */
    height: 50px; /* Adjust height as needed */
    object-fit: contain; /* Ensures images are scaled correctly without being cropped */
}

section .social-media {
    padding-left: 20%;
    padding-bottom: 5%;
}