/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #F9FAFB;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    text-align: center;
}

/* Header */
header {
    padding: 3rem 1rem 2rem;
    border-bottom: 2px solid #e0e0e0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Main container */
.main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Blog + Photo Blog in center row */
.blog-header {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.blog-header h2 a {
    color: #007acc;
    font-weight: bold;
    text-decoration: none;
}

.blog-header h2 a:hover {
    text-decoration: underline;
}

/* Blog listing area */
.blog-list {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header row */
.blog-table-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
}

/* Each blog post row */
.blog-entry {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.blog-entry span a {
    color: #333;
    text-decoration: none;
}

.blog-entry span a:hover {
    color: #007acc;
    text-decoration: underline;
}

/* Back link */
.footer-link {
    margin-top: 2rem;
}

.footer-link a {
    color: #888;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
    text-decoration: none;

}

.footer-link a:hover {
    text-decoration: none;
    color: #000;
}
