/**
Theme Name: frtgtyer
Author: Jose Daniel
Author URI: https://www.linkedin.com/in/joseaadaniel/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: frtgtyer
Template: astra
*/
/* General styles for the data posts container */
.data-posts {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between posts */
}

/* Individual post styling */
.data-post-item {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal-width columns */
    align-items: center;
    gap: 50px; /* Space between columns */
    min-height: 50vh;
}

/* Odd rows */
.data-post-item:nth-child(odd) {
    direction: ltr; /* Right-to-left layout */
}

/* Even rows */
.data-post-item:nth-child(even) {
    direction: rtl; /* Reset text direction inside grid items */
}

/* Thumbnail styles */
.post-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Content wrapper styles */
.content-wrapper {
    display: flex;
    flex-direction: column; /* Stack title, meta, and excerpt */
    justify-content: center; /* Vertically center content */
    padding: 10px;
}

/* Post title */
.post-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 10px;
}

.post-meta {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 1em;
    line-height: 1.6;
}

.site-below-footer-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9
}
.site-below-footer-wrap img {
    max-height: 70px;
    width: auto
}

.page-id-1090 .page {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.blog-layout-3 .post-content {
    display: flex;
    flex-flow: column;
    justify-content: center
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .data-post-item {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 15px;
    }

    .post-thumbnail,
    .content-wrapper {
        justify-content: center; /* Center align for small screens */
    }
}
