body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../../images/2.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.blog-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(152, 87, 23, 0.10);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    max-width: 700px;
    width: 100%;
    margin: 3rem 0;
}
.blog-container h1 {
    color: #985717;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}
.blog-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.blog-form input, .blog-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1.5px solid #FFDB58;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border 0.2s;
}
.blog-form input:focus, .blog-form textarea:focus {
    border: 1.5px solid #50C878;
}
.blog-form button {
    background: #FFDB58;
    color: #985717;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.blog-form button:hover {
    background: #985717;
    color: #fff;
    transform: scale(1.04);
}
.blog-discussions {
    margin-top: 1.5rem;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}
.blog-info {
    color: #888;
    text-align: center;
    font-style: italic;
}
@media (max-width: 800px) {
    .blog-container {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }
}
.blog-flex {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 3rem auto 2rem auto;
    width: 100%;
    padding: 80px 1rem 0 1rem;
}
.blog-col {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(152, 87, 23, 0.10);
    padding: 2.2rem 2rem 2rem 2rem;
    flex: 1 1 0;
    min-width: 320px;
    max-width: 420px;
}
.blog-col-right {
    max-width: 520px;
    flex: 1.2 1 0;
}
.blog-col-left {
    margin-right: 1.5rem;
}
.blog-col h1 {
    color: #985717;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}
@media (max-width: 1100px) {
    .blog-flex {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .blog-col, .blog-col-right {
        max-width: 98vw;
        margin-right: 0;
    }
}
.blog-message {
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(152,87,23,0.06);
    margin-bottom: 1.2rem;
    padding: 1rem 1.2rem;
}
.blog-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.blog-author {
    font-weight: bold;
    color: #985717;
}
.blog-date {
    font-size: 0.95em;
    color: #888;
    font-style: italic;
}
.blog-content {
    font-size: 1.08em;
    color: #222;
    white-space: pre-line;
}
.blog-image img {
    max-width: 100%;
    max-height: 220px;
    border-radius: 10px;
    margin-top: 0.7rem;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
} 