/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Single Blogpost */
.single-post-header {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    margin: 20px auto;
}

.single-post-header h1 {
    color: white;
    font-size: 42px;
}

.single-post-content {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    font-size: 18px;
    line-height: 1.6;
}

/* Archive */
.archive-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 50px auto;
    width: 100%;
}

.archive-post-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.post-thumbnail {
    max-width: 100%;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.post-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 0em !important;
}

.post-title a {
    color: #1c2a4d;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.4em;
}

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

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

.pagination a, .pagination span {
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #1C2A4D;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #15233C;
}

.pagination .current {
    background-color: #1C2A4D;
    color: white;
}