/* Minimal CSS matching Gatsby typography-theme-wordpress-2016 style */
body {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 42rem;
    padding: 2.625rem 1.3125rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 2.625rem;
    margin-top: 0;
}

.sub-title {
    font-size: 1.5rem;
    margin-top: 0;
}

a {
    color: #d23669;
    text-decoration: none;
    box-shadow: 0 1px 0 0 currentColor;
}

a:hover, a:active {
    box-shadow: none;
}

.container > header a {
    color: inherit;
    box-shadow: none;
}

/* Project Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #444;
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
}

hr {
    border: none;
    border-bottom: 1px solid #ddd;
    margin: 2rem 0;
}

article {
    margin-bottom: 3rem;
}

.date {
    font-size: 0.8rem;
    color: #555;
}

.pagination {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

img {
    max-width: 100%;
}

blockquote {
    border-left: 0.32813rem solid #d23669;
    color: #555;
    font-style: italic;
    margin-left: -1.3125rem;
    padding-left: 0.98438rem;
}

code {
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
}

pre code {
    background-color: transparent;
    padding: 0;
}

pre {
    background-color: #282c34;
    color: #abb2bf;
    padding: 1rem;
    overflow: auto;
    border-radius: 4px;
}
