/* =========================
   Church Page Layout
========================= */

.hero-church{
background:url("../hero-led-visual-usa.webp") center/cover no-repeat;
}

.hero-led-wall{
background:url("../hero-led-visual-usa.webp") center/cover no-repeat;
}

.hero-rental-led{
background:url("../hero-led-visual-usa.webp") center/cover no-repeat;
}

/* Card Grid */

.church-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

/* Cards */

.church-card{
background:#161e27;
padding:24px;
border-radius:6px;
transition:transform .25s ease, box-shadow .25s ease;
}

.church-card:hover{
transform:translateY(-4px);
box-shadow:0 8px 20px rgba(0,0,0,.3);
}

/* Images */

.church-card img{
width:100%;
border-radius:6px;
margin-bottom:14px;
display:block;
}

/* Titles */

.church-card h3{
margin-bottom:10px;
font-size:18px;
}

/* Paragraphs */

.church-card p{
font-size:14.5px;
color:#9aa6b2;
line-height:1.6;
}

/* CHURCH VISUAL SECTION */

.church-visual{
padding:80px 20px;
background:#0f151c;
}

.church-visual img{
width:100%;
max-width:1100px;
margin:0 auto;
display:block;
border-radius:10px;
box-shadow:0 30px 80px rgba(0,0,0,.6);
}