/**
Theme Name: Fonema
Author: Nenad Nikolić
Author URI: https://nenad-nikolic.com/
Description: Astra child 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: fonema
Template: astra
*/

body {
    font-family: 'Poppins';
}

.latest-posts-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.latest-posts-wrapper .single-post {
    border-radius: 0.5rem;
    padding: 1rem;
    width: calc(50% - 1rem);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
}

.latest-posts-wrapper .single-post img {
    height: 20rem;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.latest-posts-wrapper .single-post h2 {
    color: #FF32BE;
}

.latest-posts-wrapper .single-post .date {
    color: rgba(0,0,0,.5);
    font-weight: bold;
}

.latest-posts-wrapper .single-post .btn {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, #102694 0%, #FF32BE 100%);
    color: #fff;
    border-radius: 0.25rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}