/**
 * Theme Name: Idaho Webmaster v4 - Elementor Blocks
 * Template: Webmaster-v4
 * Description: The Blocks to use and edit for making any changes to a specific site.
 * Author: White Whale Web
 * Author URI: https://whitewhaleweb.com/
 * Version: 1.0.1
 * Text Domain: webmaster-bs4 Elementor blocks
 */


/*--------------------------------------------------------------
# 1. Featured Services Long
--------------------------------------------------------------*/

.featured-services-long .e-con-inner {
	gap:20px!important;
}

.featured-services-long .featured-services-long-card {
    background-color: #E8E7C2; /* light beige background */
    padding: 60px 30px!important;
/*     max-width: 320px; */
    margin: 0 auto;
	gap: 20px;
	display: flex;
    text-align: center;
}

.featured-services-long .featured-services-long-card img,
.featured-services-long .featured-services-long-card svg {
    width: 60px;
    height: auto;
    margin-bottom: 25px;
}

.featured-services-long .featured-services-long-card h3 {
    font-size: 40px!important;
    font-weight: 700;
    color: #3C3C3C;
    margin-bottom: 20px;
}

.featured-services-long .featured-services-long-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #3C3C3C;
    margin-bottom: 35px;
}

.featured-services-long .featured-services-long-card .cta-button {
    display: inline-block;
    background-color: #30758D;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
	font-size: 20px!important;
}
/*--------------------------------------------------------------
# 1. Featured Services Long End
--------------------------------------------------------------*/



/* GRID WRAPPER */
.icon-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* CARD STYLING */
.icon-box-grid .icon-box-card {
    background-color: #276099; /* teal background */
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ICON */
.icon-box-grid .icon-box-card img,
.icon-box-grid .icon-box-card svg {
    width: 45px;
    height: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(100%); /* make icons light */
}

/* TITLE */
.icon-box-grid .icon-box-card h3 {
    color: #F1F1D2; /* light beige text */
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* OPTIONAL - On Hover */
.icon-box-grid .icon-box-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}