* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #e9e9e9;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

/* ÜST ALAN */

.header {
    background: #f5f5f5;
    border-bottom: 1px solid #ccc;
}

.header-inner {
    width: 1100px;
    max-width: 96%;
    margin: auto;
    height: 70px;
    display: flex;
    align-items: center;
}

.logo {
    width: 230px;
    font-size: 27px;
    font-weight: bold;
    color: #444;
}

.logo a {
    color: #444;
    text-decoration: none;
}

.logo span {
    color: #999;
}

.search {
    flex: 1;
}

.search form {
    display: flex;
}

.search input {
    width: 100%;
    max-width: 500px;
    height: 35px;
    border: 1px solid #bbb;
    padding: 0 12px;
    font-size: 13px;
    background: #fff;
}

.search button {
    height: 35px;
    border: 1px solid #aaa;
    background: #ddd;
    padding: 0 18px;
    cursor: pointer;
}

.search button:hover {
    background: #ccc;
}

.user-links {
    width: 180px;
    text-align: right;
}

.user-links a {
    color: #666;
    text-decoration: none;
    margin-left: 10px;
}

.user-links a:hover {
    text-decoration: underline;
}

/* MENÜ */

.menu {
    background: #555;
    border-bottom: 3px solid #ccc;
}

.menu-inner {
    width: 1100px;
    max-width: 96%;
    margin: auto;
}

.menu a {
    display: inline-block;
    color: #eee;
    text-decoration: none;
    padding: 11px 15px;
    border-right: 1px solid #666;
}

.menu a:hover {
    background: #444;
}

.menu a.active {
    background: #444;
    color: #fff;
}

/* ANA ALAN */

.container {
    width: 1100px;
    max-width: 96%;
    margin: 15px auto;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 15px;
}

/* KUTULAR */

.box {
    background: #f8f8f8;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.box-title {
    background: #e2e2e2;
    border-bottom: 1px solid #ccc;
    padding: 9px 10px;
    font-weight: bold;
    color: #444;
}

.box-content {
    padding: 8px;
}

/* SOL SÜTUN */

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

.popular-list li {
    border-bottom: 1px dotted #ccc;
    padding: 8px 4px;
}

.popular-list li:last-child {
    border-bottom: 0;
}

.popular-list a {
    color: #555;
    text-decoration: none;
}

.popular-list a:hover {
    color: #000;
    text-decoration: underline;
}

.number {
    display: inline-block;
    width: 22px;
    color: #999;
}

/* ORTA */

.main {
    min-width: 0;
}

.page-title {
    background: #f8f8f8;
    border: 1px solid #ccc;
    padding: 12px;
    margin-bottom: 15px;
}

.page-title h1 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}

.page-title small {
    color: #999;
}

.breadcrumb {
    margin-bottom: 10px;
    color: #999;
    font-size: 11px;
}

.breadcrumb a {
    color: #777;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ENTRY */

.entry {
    background: #fff;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    padding: 14px;
}

.entry-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: normal;
}

.entry-title a {
    color: #555;
    text-decoration: none;
}

.entry-title a:hover {
    text-decoration: underline;
}

.entry-text {
    line-height: 1.6;
    color: #444;
}

.entry-info {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px dotted #ccc;
    color: #999;
    font-size: 11px;
}

.entry-info span {
    margin-right: 15px;
}

.entry-info a {
    color: #888;
    text-decoration: none;
}

.entry-info a:hover {
    color: #333;
    text-decoration: underline;
}

.entry-actions {
    float: right;
}

.entry-actions a {
    color: #999;
    text-decoration: none;
    margin-left: 8px;
}

.entry-actions a:hover {
    color: #333;
}

/* METİN SAYFALARI */

.page-box {
    background: #fff;
    border: 1px solid #ccc;
    padding: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}

.page-box h2 {
    margin: 0 0 10px 0;
    font-size: 15px;
    color: #555;
}

.page-box p {
    margin: 0 0 12px 0;
}

.page-box ul {
    margin: 0 0 12px 0;
    padding-left: 20px;
}

.page-box li {
    margin-bottom: 6px;
}

.page-box a {
    color: #555;
}

/* LİSTE */

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

.list li {
    border-bottom: 1px dotted #ccc;
    padding: 10px 4px;
}

.list li:last-child {
    border-bottom: 0;
}

.list a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.list a:hover {
    text-decoration: underline;
}

.list .meta {
    color: #999;
    font-size: 11px;
    float: right;
}

/* FORM */

.form-box label {
    display: block;
    margin-bottom: 4px;
    color: #555;
}

.form-box input {
    width: 100%;
    max-width: 320px;
    height: 32px;
    border: 1px solid #bbb;
    padding: 0 10px;
    font-size: 13px;
    background: #fff;
    margin-bottom: 12px;
}

.form-box textarea {
    width: 100%;
    max-width: 480px;
    height: 110px;
    border: 1px solid #bbb;
    padding: 8px;
    font-family: inherit;
    font-size: 13px;
    margin-bottom: 12px;
}

.form-box button {
    height: 32px;
    border: 1px solid #aaa;
    background: #ddd;
    padding: 0 18px;
    cursor: pointer;
}

.form-box button:hover {
    background: #ccc;
}

.note {
    color: #999;
    font-size: 11px;
}

/* ETİKETLER */

.tags a {
    display: inline-block;
    background: #e5e5e5;
    border: 1px solid #ccc;
    padding: 5px 7px;
    margin: 2px;
    color: #666;
    text-decoration: none;
    font-size: 11px;
}

.tags a:hover {
    background: #d8d8d8;
}

/* SAĞ */

.new-entry {
    padding: 8px 4px;
    border-bottom: 1px dotted #ccc;
}

.new-entry:last-child {
    border-bottom: 0;
}

.new-entry a {
    color: #555;
    text-decoration: none;
}

.new-entry a:hover {
    text-decoration: underline;
}

.date {
    display: block;
    color: #aaa;
    font-size: 10px;
    margin-top: 3px;
}

/* ALT */

.footer {
    width: 1100px;
    max-width: 96%;
    margin: 25px auto;
    padding: 15px 0;
    border-top: 1px solid #ccc;
    color: #999;
    text-align: center;
    font-size: 11px;
}

.footer a {
    color: #999;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* MOBİL */

@media(max-width: 800px) {

    .header-inner {
        height: auto;
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .logo {
        width: 100%;
        margin-bottom: 12px;
    }

    .search {
        width: 100%;
    }

    .user-links {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .container {
        grid-template-columns: 1fr;
    }

    .left,
    .right {
        display: none;
    }

    .menu a {
        padding: 9px 10px;
    }
}
