/*
Theme Name: Nika Child
Theme URI: https://elementor3.thembay.com/nika/
Author: Thembay
Description: This is a child theme for Nika
Version: 1.0
Author URI: https://thembay.com/
Template: nika
Text Domain: nika-child
*/

/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-title {
    font-size: 18px;
    margin: 10px 0;
}

.blog-card-title a {
    color: #222;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #0073aa; /* WordPress blue */
}

.blog-card-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.blog-card-btn {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.blog-card-btn:hover {
    background: #005f8d;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.form-control {
    background-color: #0268d3 !important;
    color: #fff;
}

input.wpcf7-form-control.wpcf7-submit {
    background-color: #0268d3 !important;
    color: #fff;
}