/*
Theme Name: Leavoda Blog
Theme URI: https://leavoda.com/themes/leavoda-blog
Author: Leavoda Inc.
Author URI: https://leavoda.com
Description: A clean and modern blogging theme by Leavoda Group. Perfect for news, tutorials, and professional blogging, with responsive design.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leavodablog
Tags: blog, news, tutorials, field-service, home-services, small-business, business-tips, productivity, software, saas, invoicing, scheduling, crm, marketing, customer-management, mobile-friendly, responsive-layout, translation-ready
*/


/* ASSETS */
@import "assets/css/header.css";
@import "assets/css/hero-home.css";
@import "assets/css/hero-category.css";
@import "assets/css/hero.css";
@import "assets/css/featured-posts.css";
@import "assets/css/category-list.css";
@import "assets/css/footer.css";

/* CUSTOM */
@import "assets/css/single.css";

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.h1 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}


main {
    min-height: 80vh;

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

a {
    color: #e86c39;
}

.bg-brand {
    background-color: #e86c39;
}
.bg-gray {
    background-color: #4b3830;
}

.btn-orange {
    border: 2px solid #e86c39;
    background-color: #e86c39;
    color: white;
    text-decoration: none;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    font-weight: 600;
    width: -moz-fit-content;
    width: fit-content;
}

.post-card {
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
    color: inherit;

    .img-wrapper {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 16px;
        overflow: hidden;
        min-height: 250px;
        background-position: center;
        background-size: cover;
    }
}
.post-card:hover {
    transform: translateY(-16px);
    transition: 0.3s;
}

.categories .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.categories .col-md-4 {
    display: flex;
}

.categories .category-card {
    flex: 1;
    flex-direction: column;
    justify-content: space-between;

    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;

    &:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

.post-count {
    padding: 8px 16px;
    border-radius: 24px;
    border: 1px solid #ccc;
    width: fit-content;
    margin-left: auto;
}