@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #079dcb;
    transition: color 0.3s;
}

a:hover {
    color: #05a0d4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0 0;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header-social {
    display: flex;
    gap: 8px;
}

.header-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background 0.3s;
    text-decoration: none;
}

.header-social a:hover {
    background: #079dcb;
    color: #fff;
}

.arimolite-logo {
    flex: 1;
    text-align: center;
}

.arimolite-logo img {
    max-height: 70px;
    width: auto;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-header form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.search-header input[type="text"] {
    border: none;
    padding: 10px 15px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 200px;
    background: #fff;
}

.search-header .button-search {
    background: #fff;
    border: none;
    border-left: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
}

.search-header .button-search:hover {
    color: #079dcb;
}

.icon-touch {
    display: none;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
}

/* Main Menu */
.header-content {
    border-top: 1px solid #eee;
    padding-top: 0;
}

.arimolite-main-menu {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.arimolite-main-menu li {
    margin: 0;
    padding: 0;
}

.arimolite-main-menu li a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s, background 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.arimolite-main-menu li a:hover,
.arimolite-main-menu li.current_page_item a {
    color: #079dcb;
    background: #f9f9f9;
}

/* Content Area */
.arimolite-primary {
    padding: 40px 0;
    background: #fff;
}

.main-contaier {
    display: flex;
    gap: 40px;
}

.arimolite-blogs {
    flex: 1;
    min-width: 0;
}

.arimolite-blogs .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Post Card */
.post-inner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s;
    height: 100%;
    position: relative;
}

.post-inner:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.post-header {
    position: relative;
    min-height: 80px;
    background: #f8f8f8;
}

.date-post {
    position: absolute;
    bottom: 10px;
    left: 15px;
    background: #079dcb;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    line-height: 1.2;
    border-radius: 0;
    z-index: 1;
}

.date-post .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
}

.date-post .day {
    display: block;
    font-size: 24px;
    font-weight: 600;
}

.date-post .year {
    display: block;
    font-size: 12px;
    font-weight: 300;
}

.post-info {
    padding: 25px 20px;
    padding-top: 15px;
}

.post-cats {
    font-size: 12px;
    color: #079dcb;
    margin-bottom: 10px;
}

.post-cats i {
    margin-right: 5px;
    font-size: 11px;
}

.post-cats a {
    color: #079dcb;
    font-weight: 500;
    text-decoration: none;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #079dcb;
}

.post-meta {
    margin-bottom: 12px;
}

.post-comment {
    font-size: 12px;
    color: #888;
}

.post-comment i {
    margin-right: 5px;
}

.post-content {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* Pagination */
.arimolite-pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-numbers {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
    text-decoration: none;
    background: #fff;
}

.page-numbers:hover,
.page-numbers.current {
    background: #079dcb;
    border-color: #079dcb;
    color: #fff;
}

/* Sidebar */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.inner-sidebar {
    position: sticky;
    top: 20px;
}

.widget {
    margin-bottom: 35px;
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #079dcb;
    color: #333;
}

.widget .searchform {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 0;
    overflow: hidden;
}

.widget .text {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    background: #fff;
}

.widget .button-search {
    background: #079dcb;
    border: none;
    padding: 12px 18px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.widget .button-search:hover {
    background: #05a0d4;
}

.widget_blog_subscription p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.widget_blog_subscription input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    outline: none;
}

.widget_blog_subscription input[type="email"]:focus {
    border-color: #079dcb;
}

.widget_blog_subscription .arimolite-button {
    display: inline-block;
    background: #079dcb;
    color: #fff;
    padding: 12px 25px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.widget_blog_subscription .arimolite-button:hover {
    background: #05a0d4;
    color: #fff;
}

.widget_categories ul,
.widget_recent_entries ul,
.widget_recent_comments ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_categories ul li,
.widget_recent_entries ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.widget_categories ul li:last-child,
.widget_recent_entries ul li:last-child {
    border-bottom: none;
}

.widget_categories ul li a,
.widget_recent_entries ul li a {
    color: #555;
    text-decoration: none;
}

.widget_categories ul li a:hover,
.widget_recent_entries ul li a:hover {
    color: #079dcb;
}

.widget_recent_entries ul li .post-date {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.widget_recent_comments ul li {
    font-size: 13px;
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.widget_recent_comments ul li:last-child {
    border-bottom: none;
}

.widget_recent_comments ul li .comment-author-link {
    color: #079dcb;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer .arimolite-logo {
    margin-bottom: 20px;
}

.footer .arimolite-logo img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #555;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #079dcb;
    color: #fff;
}

.footer p {
    font-size: 13px;
    color: #aaa;
}

/* Single Post Page */
.single-post {
    padding: 40px 0;
    background: #fff;
}

.single-post .container {
    max-width: 800px;
}

.single-post .post-header-single {
    margin-bottom: 30px;
}

.single-post .date-post-single {
    display: inline-block;
    background: #079dcb;
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 0;
    margin-bottom: 15px;
}

.single-post .post-cats-single {
    font-size: 13px;
    color: #079dcb;
    margin-bottom: 10px;
}

.single-post .post-cats-single a {
    color: #079dcb;
    text-decoration: none;
}

.single-post h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #333;
}

.single-post .post-comment-single {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.single-post .author-info {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.single-post .author-info img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.single-post .author-info .author-details {
    flex: 1;
}

.single-post .author-info .author-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.single-post .author-info .author-desc {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.7;
}

.single-post .post-body {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

.single-post .post-body p {
    margin-bottom: 20px;
}

.single-post .post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.single-post .post-body hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 35px 0;
}

.share-links {
    display: flex;
    gap: 10px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.share-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f5f5f5;
    border-radius: 0;
    font-size: 12px;
    color: #555;
    transition: background 0.3s;
    text-decoration: none;
}

.share-links a:hover {
    background: #079dcb;
    color: #fff;
}

/* Comments */
.comments-section {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #eee;
}

.comments-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    border-bottom: none;
}

.comment img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.comment .comment-content {
    flex: 1;
}

.comment .comment-author {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
    color: #333;
}

.comment .comment-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.comment .comment-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Archive Page */
.archive-page {
    padding: 50px 0;
    background: #fff;
}

.archive-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.archive-page .archive-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.archive-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

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

.archive-list li a {
    color: #333;
    text-decoration: none;
}

.archive-list li a:hover {
    color: #079dcb;
}

/* Category Page */
.category-page {
    padding: 50px 0;
    background: #fff;
}

.category-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #333;
}

.category-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.post-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.post-item:last-child {
    border-bottom: none;
}

.post-item-meta {
    margin-bottom: 8px;
}

.post-item-date {
    font-size: 12px;
    color: #888;
}

.post-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-item-title a {
    color: #333;
    text-decoration: none;
}

.post-item-title a:hover {
    color: #079dcb;
}

.post-item-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Submissions Page */
.submissions-page {
    padding: 50px 0;
    background: #fff;
}

.submissions-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.submissions-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.submissions-page p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.submissions-page strong {
    color: #333;
}

/* Related Posts */
.related-posts {
    margin-top: 35px;
}

.related-posts h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #079dcb;
}

/* Responsive */
@media (max-width: 991px) {
    .main-contaier {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .icon-touch {
        display: block;
    }
    
    .search-header form {
        display: none;
    }
    
    .arimolite-main-menu {
        display: none;
    }
    
    .arimolite-main-menu.active {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .arimolite-blogs .row {
        grid-template-columns: 1fr;
    }
    
    .header-main {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-social {
        order: 1;
    }
    
    .arimolite-logo {
        order: 2;
    }
    
    .search-header {
        order: 3;
    }
    
    .single-post h1 {
        font-size: 28px;
    }
    
    .single-post .author-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .share-links {
        flex-wrap: wrap;
    }
}
