/* Kenga Rex Static Rebuild - Clean Styles */

*, *:before, *:after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    color: #333;
    background: #f5f5f5;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #00A8FF;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #0088cc;
}

/* Container */
.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: #2c3e50;
    padding: 20px 0 0;
}

#header {
    overflow: hidden;
}

.logo-wrap {
    float: left;
    margin-bottom: 15px;
}

#logo {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

#logo a {
    color: #e74c3c;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.head-social {
    float: right;
    margin-top: 10px;
}

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

.head-social li {
    display: inline-block;
    margin-left: 10px;
}

.head-social a {
    color: #fff;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
}

.head-social a:hover {
    background: #00A8FF;
    color: #fff;
}

/* Navigation */
.secondary-navigation {
    clear: both;
    background: rgba(0,0,0,0.15);
    margin: 0 -20px;
    padding: 0 20px;
}

#navigation {
    float: left;
    width: 100%;
}

#navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#navigation li {
    float: left;
    position: relative;
}

#navigation a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#navigation a:hover,
#navigation .current-menu-item a {
    background: rgba(0,0,0,0.2);
    color: #00A8FF;
}

#pull {
    display: none;
    background: rgba(0,0,0,0.2);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

/* Main Layout */
.main-container-wrap {
    background: #f5f5f5;
}

.main-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 25px 20px;
    overflow: hidden;
}

#page {
    overflow: hidden;
}

.article {
    float: left;
    width: 70%;
    padding-right: 30px;
}

.sidebar {
    float: left;
    width: 30%;
}

/* Article Cards */
#content_box {
    overflow: hidden;
}

.post-content-in {
    overflow: hidden;
}

.latestPost {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.latestPost.last {
    margin-right: 0;
}

.latestPost .featured-thumbnail {
    overflow: hidden;
    position: relative;
}

.latestPost .featured-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.latestPost:hover .featured-thumbnail img {
    transform: scale(1.03);
}

.post-content-inner {
    padding: 18px 20px 20px;
}

.front-view-title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.35;
    font-family: Merriweather, Georgia, serif;
    font-weight: 700;
}

.front-view-title a {
    color: #2c3e50;
}

.front-view-title a:hover {
    color: #00A8FF;
}

.front-view-content {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 14px;
}

.readMore a {
    display: inline-block;
    background: #00A8FF;
    color: #fff;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.readMore a:hover {
    background: #0088cc;
    color: #fff;
}

/* Posts By Category Header */
.postsby {
    font-family: Merriweather, Georgia, serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0 0 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.postsby span {
    color: #00A8FF;
}

/* Single Post */
.single_post {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.single_post .front-view-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.post-info {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.post-info a {
    color: #888;
}

.post-info a:hover {
    color: #00A8FF;
}

.post-single-content {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}

.post-single-content p {
    margin: 0 0 18px;
}

.post-single-content img {
    display: block;
    margin: 20px auto;
    border-radius: 4px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar */
#sidebars {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.widget {
    margin-bottom: 28px;
}

.widget-title {
    font-family: Merriweather, Georgia, serif;
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00A8FF;
}

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

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget li a {
    color: #555;
    font-size: 0.92rem;
}

.widget li a:hover {
    color: #00A8FF;
}

/* Recent posts widget images */
.widget_recent_entries li {
    overflow: hidden;
    padding: 6px 0;
}

.widget_recent_entries img {
    float: left;
    width: 65px;
    height: 50px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 3px;
}

/* Search */
.search-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 10px 70px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 0.9rem;
    color: #555;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 16px;
    background: #00A8FF;
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.search-form button:hover {
    background: #0088cc;
}

/* Contact Form */
.contact-form label {
    font-weight: 700;
    color: #555;
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.95rem;
    margin-top: 4px;
}

.contact-form button {
    background: #00A8FF;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0088cc;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: rgba(255,255,255,0.6);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
}

.footer span {
    color: rgba(255,255,255,0.5);
}

/* Pagination */
.pagination {
    clear: both;
    margin: 30px 0;
    text-align: center;
}

.pagination a,
.pagination span.currenttext {
    display: inline-block;
    padding: 8px 14px;
    margin: 2px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #555;
    font-size: 0.9rem;
}

.pagination span.currenttext {
    background: #00A8FF;
    color: #fff;
    border-color: #00A8FF;
}

.pagination a:hover {
    background: #00A8FF;
    color: #fff;
    border-color: #00A8FF;
}

/* Share buttons */
.shareit {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.share-item {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

/* Utility */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Icon font fallback */
.icon-twitter:before {
    content: "🐦";
}
.icon-facebook:before {
    content: "📘";
}

/* Accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #00A8FF;
    color: #fff;
    padding: 8px 16px;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
