/*
Theme Name: Menimsite Theme
Author: ELAZGRUP
Author URI: https://elazinfo.com/
*/

body {
    background: #ffffff !important;
    color: #000000 !important;
}

a {
    color: #2563eb;
}

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

/* Umumi body stili */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f5f7;
    color: #222;
    line-height: 1.5;
}

a {
    color: #0f75ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Umumi konteyner */
.container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 16px;
}

/* Post kartlar? */
.post-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.post-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.post-title a {
    color: #111;
}

.post-title a:hover {
    color: #0f75ff;
}

.post-thumb img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 12px;
}

.post-excerpt {
    font-size: 16px;
    margin-top: 8px;
}
.home-slider {
 position: relative;
 width: 100%;
 height: 350px;
 overflow: hidden;
}

.home-slider .slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-size: cover;
 background-position: center;
 opacity: 0;
 transition: opacity 0.8s ease;
}

.home-slider .slide.active {
 opacity: 1;
}
.content-with-sidebar {
 display: flex;
 gap: 20px;
}

.content-with-sidebar .main-content {
 flex: 3;
}

.site-sidebar {
 flex: 1;
}

.widget {
 margin-bottom: 20px;
}

.widget-title {
 font-size: 18px;
 margin-bottom: 10px;
}