/* ============================================
       SHARED STYLES (same as post page)
       ============================================ */

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - SHARED */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    border-bottom: 2px solid #8b5e34;
    margin-bottom: 30px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo svg {
    width: 80px;
    height: 80px;
    display: block;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b5e34;
}

/* .header-actions {
    margin-top: 15px;
} */

.search-wrap {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

.search-btn {
    padding: 8px 16px;
    background-color: #8b5e34;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
}

.search-btn:hover {
    background-color: #6b4423;
}

.banner {
    height: 204px;
    background-image: url(/images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 32px;
}

/* Footer - SHARED */
.site-footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

/* ============================================
       MOBILE RESPONSIVE STYLES
       ============================================ */

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

    /* Header - SHARED */
    .site-header {
        align-items: flex-end;
    }

    .site-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo svg {
        width: 60px;
        height: 60px;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .header-actions {
        padding: 8px 0;
    }

    .search-input,
    .search-btn {
        width: 100%;
    }

    .search-input {
        flex: 7;
    }

    .search-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .search-wrap {
        flex-direction: column;
    }
}
