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

html {
    font-size: 16px;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    background-color: #f5f5f5;
}

a {
    color: #3366cc;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #5588dd;
    text-decoration: underline;
}

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

/* Site Structure */
#page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #3366cc;
}

.site-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #2d5a8f;
    text-align: left;
    font-family: Arial, sans-serif;
}

.site-title a {
    color: #2d5a8f;
    text-decoration: none;
}

.site-title a:hover {
    text-decoration: none;
    color: #1a3d5f;
}

/* Navigation */
.main-navigation {
    margin-top: 15px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    color: #666;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    background-color: #3366cc;
    color: #fff;
    text-decoration: none;
}

/* Main Content Layout */
#main {
    flex: 1;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 30px;
}

/* Sidebars */
.sidebar {
    background-color: #fafafa;
    padding: 20px 15px;
}

#sidebar-left {
    border-right: 1px solid #e0e0e0;
}

#sidebar-right {
    border-left: 1px solid #e0e0e0;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3366cc;
    font-family: Arial, sans-serif;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    margin-bottom: 8px;
    padding-left: 12px;
    position: relative;
}

.widget li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #3366cc;
}

.widget li.current_page_item a {
    font-weight: bold;
    color: #3366cc;
}

.widget a {
    color: #555;
    font-size: 13px;
}

.widget a:hover {
    color: #3366cc;
}

/* Widget Content (Sponzori) */
.widget-content {
    text-align: center;
}

.widget-content a {
    display: inline-block;
    margin: 10px 0;
    transition: opacity 0.3s;
}

.widget-content a:hover {
    opacity: 0.8;
}

.widget-content img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background-color: #fff;
}

.sponsor-placeholder {
    opacity: 0.5;
}

/* Content Area */
.site-content {
    background-color: #fff;
    padding: 30px 40px;
}

/* Article */
article {
    margin-bottom: 40px;
}

.entry-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.entry-title {
    font-size: 32px;
    font-weight: normal;
    color: #2d5a8f;
    margin: 0;
}

.entry-content {
    font-size: 15px;
    line-height: 1.8;
}

.entry-content p {
    margin: 0 0 18px 0;
    text-align: justify;
}

.entry-content em {
    font-style: italic;
    color: #666;
}

.entry-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 35px 0 20px 0;
    color: #2d5a8f;
    border-bottom: 2px solid #3366cc;
    padding-bottom: 8px;
}

.entry-content h3 {
    font-size: 19px;
    font-weight: bold;
    margin: 28px 0 15px 0;
    color: #444;
}

.entry-content ul {
    margin: 15px 0 15px 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content strong {
    font-weight: bold;
    color: #2d5a8f;
}

/* Images */
.content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.alignleft {
    float: left;
    margin: 0 20px 15px 0;
}

.thumbnail {
    border: 1px solid #ddd;
    padding: 3px;
    background-color: #fff;
}

/* Footer */
.site-footer {
    background-color: #2d5a8f;
    padding: 20px 0;
    margin-top: 40px;
    color: #fff;
}

.site-info {
    text-align: center;
    font-size: 13px;
    color: #ccc;
}

/* Responsive */
@media screen and (max-width: 992px) {
    #main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #sidebar-left,
    #sidebar-right {
        border: none;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .site-content {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .site-title {
        font-size: 36px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .entry-title {
        font-size: 26px;
    }
    
    .entry-content {
        font-size: 14px;
    }
}
