* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --link-color: #0073b1;
}

html, body {
    height: 100%;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo a:hover {
    opacity: 0.7;
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.social-link:hover {
    background-color: var(--light-bg);
    color: var(--link-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: calc(100vh - 80px);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: start;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-column {
    padding-left: 20px;
}

.content {
    max-width: 100%;
}

.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Playfair Display', serif;
    color: #000;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.section-header .section-title {
    margin: 0;
    line-height: 1.2;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
}

.section:first-child .section-title {
    margin-top: 0;
}

.section p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.section p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    text-decoration: underline;
}

p a {
    font-weight: 500;
}

/* Lists */
.communities-list {
    list-style: none;
    margin-top: 16px;
}

.communities-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.communities-list strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Photos */
.photos-placeholder {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-top: 20px;
}

.photos-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Photo Article Pages */
.photo-article {
    max-width: 900px;
    margin: 0 auto;
}

.photo-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 0;
}

.photo-gallery {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.photo-placeholder {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
}

.photo-placeholder p {
    margin: 0;
}

.photo-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 30px 0;
}

.photo-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.photo-nav .nav-link {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.photo-nav .nav-link:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* Gallery Grid */
.photo-galleries {
    margin-top: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 0;
}

.gallery-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-card:hover {
    opacity: 0.85;
}

.gallery-placeholder {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 0;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.gallery-card h3 {
    display: none;
}

.gallery-card p {
    display: none;
}

.photos-caption {
    font-size: 14px;
    color: #666;
    margin-top: 16px;
    line-height: 1.5;
}

/* Community Articles */
.community-article {
    max-width: 800px;
    margin: 0 auto;
}

.community-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.community-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
    font-style: italic;
}

.community-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 30px 0;
}

.community-content p {
    margin-bottom: 20px;
}

.community-content p:last-child {
    margin-bottom: 0;
}

.community-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.community-nav .nav-link {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.community-nav .nav-link:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    background-color: var(--light-bg);
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr 1.4fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .logo {
        font-size: 20px;
    }

    .main-content {
        padding: 40px 0;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .right-column {
        padding-left: 0;
    }

    .section {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 18px;
        margin-top: 30px;
    }

    .section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 15px 0;
    }

    .logo {
        font-size: 18px;
    }

    .main-content {
        padding: 30px 0;
    }

    .section {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .section p {
        font-size: 13px;
        line-height: 1.7;
    }

    .nav {
        gap: 15px;
    }
}
