/*
Theme Name: no-code-theme
Author: Kauser Siddiqui
Author URI: 
Theme URI: 
Tags: full-site-editing
Text Domain: no-code-theme
Requires at least: 6.1
Requires PHP: 7.4
Tested up to: 6.4
Version: 1.0.0

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Generated on fullsiteediting.com. No code version.
*/

/* Form styling */
.wp-block-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.wp-block-form input,
.wp-block-form textarea {
    width: 100%;
    max-width: 500px;
}
/* Styling for paragraph texts */
.about-text {
    max-width: 80%; 
    margin: 0 auto; 
    text-align: center; 
}
/* Consistent width and alignment for all elements */
.post-title,
.post-text,
.post-list,
.post-text-last {
    max-width: 50%; 
    margin: 0 auto; 
    text-align: left; 
}

/* Center the heading */
.post-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

/* Improve paragraph readability */
.post-text,
.post-text-last {
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Style the list for better readability */
.post-list {
    padding-left: 20px;
    max-width: 80%;
}
.wp-block-query-loop {
    display: flex;
    flex-direction: column;
    gap: 40px; 
}

/* Blog Post Title */
.wp-block-post-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F3EED9; 
}

/* Blog Post Excerpt */
.wp-block-post-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #F3EED9;
}

/* Post Image Styling */
.wp-block-post-featured-image img {
    width: 100%; 
    height: auto;
}

/* Styles for the query block */
.wp-block-query {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 60px;
}

.blog-template {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 40px;
}
/* Styling for the Read More links on the homepage */
.wp-block-post-template .wp-block-post-title a {
    color: #f5e6da !important; 
    text-decoration: none; 
    font-weight: 500; 
}
/* Styling for post links */
.wp-block-post-template .wp-block-post-title a:hover {
    color: white !important; 
    text-decoration: underline; 
}

@media (max-width: 768px) { 
    .wp-block-query .wp-block-post-featured-image img {
        width: 100%; 
        height: auto;
        max-width: 250px; 
        object-fit: cover; 
    }

    .wp-block-query .wp-block-post-featured-image {
        display: flex;
        justify-content: center;
    }
    .wp-block-query .wp-block-post {
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center; 
    }
    
    .wp-block-query .wp-block-post-title,
    .wp-block-query .wp-block-post-date {
        text-align: center;
    }
    .wp-block-query .wp-block-post-title {
        font-size: 18px; 
        font-weight: 600; 
        
    }
    
}