body { font-family: Arial; margin: 20px; transition: background 0.3s, color 0.3s; }
.dark { background: #121212; color: white; }
header, section, footer { margin-bottom: 30px; }
.slider { display: flex; gap: 10px; }
.slide, .featured { border: 1px solid red; padding: 10px; }
h1, h2 { color: red; }
textarea, input, select { display:block; margin:10px 0; width:100%; }
button { padding:5px 10px; }

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.post-card {
    border: 1px solid red;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.2s;
}
.post-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(255,0,0,0.2);
}
.hero {
    text-align: center;
    padding: 2rem;
    background: #ffe6e6;
    border-bottom: 2px solid red;
    position: relative;
}
.new-post-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.new-post-btn:hover {
    background: darkred;
}
.slider-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slider.center {
    justify-content: center;
    flex-wrap: wrap;
}
.slider img {
    border-radius: 10px;
    margin-bottom: 10px;
    max-height: 150px;
    object-fit: cover;
}