/*
 Theme Name: Twenty Sixteen Child
 Description: Child theme for Twenty Sixteen
 Author: Ken
 Template: twentysixteen
 Version: 1.0.0
*/

/* 1. Widen the overall site container */
.site-inner {
    max-width: 1400px !important;
}

/* 2. Give the content area more room vs sidebar */
@media screen and (min-width: 56.875em) {
    .content-area {
        width: 75% !important;
    }
    .sidebar {
        width: 22% !important;
    }
}

/* 3. This is the big one — make entry-content full width 
   and kill the left metadata column on posts */
.single .entry-content {
    width: 90% !important;
    float: none !important;
}

.single .entry-footer {
    float: none !important;
    width: 100% !important;
}

/* 4. Keep images from overhanging */
.entry-content img {
    max-width: 90% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Constrain featured image to content area */
.single .post-thumbnail img,
.single .post-thumbnail {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

.category-title-list {
    list-style: none;
    padding: 0;
}

.category-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.category-list-item img {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    border-radius: 4px;
}

.category-list-content {
    flex: 1;
}

.category-list-content a {
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
}

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

.category-list-excerpt {
    margin-top: 5px;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}