/**
 * Theme Name:     Nowistech Live
 * Author:         Francis Onyach
 * Template:       blocksy
 * Text Domain:	   nowistech-live
 * Description:    Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.
 */

/* CTA Container */
.nowistech-cta-box {
    margin-top: 40px;
    padding: 30px;
    border-radius: 12px;
    background: #f8fafc;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

/* Headings */
.nowistech-cta-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* Paragraph */
.nowistech-cta-box p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 20px;
}

/* Mini PC Grid */
.nowistech-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

/* Grid Links */
.nowistech-mini-grid a {
    display: block;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

/* Hover Effect */
.nowistech-mini-grid a:hover {
    background: #0ea5e9;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Buttons Wrapper */
.nowistech-button-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.nowistech-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #0ea5e9;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* Button Hover */
.nowistech-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

/* Divider */
.nowistech-cta-box hr {
    border: none;
    height: 1px;
    background: #e2e8f0;
}