/* Hero - Canada.ca style */
.gc-hero{
    position:relative;
    min-height:500px;
    background:url('../images/hero-government.png') center center/cover no-repeat;
}
.gc-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.34),rgba(0,0,0,.08));
}
.gc-hero-inner{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
}
.gc-hero-card{
    width:min(590px,100%);
    background:rgba(38,55,74,.96);
    color:#fff;
    padding:42px 44px 46px;
    border-top:6px solid var(--gc-red);
    box-shadow:0 14px 35px rgba(0,0,0,.24);
}
.gc-hero-card h1{
    color:#fff;
    font-size:52px;
    margin-bottom:16px;
}
.gc-hero-card p{
    color:#fff;
    font-size:20px;
    line-height:1.65;
    margin-bottom:28px;
}
.gc-hero-search{
    display:flex;
    width:100%;
}
.gc-hero-search input{
    flex:1;
    min-width:0;
    height:48px;
    border:0;
    padding:0 14px;
    font-size:16px;
}
.gc-hero-search button{
    width:104px;
    border:0;
    background:var(--gc-red);
    color:#fff;
    font-weight:700;
    cursor:pointer;
}
.gc-hero-search button:hover{
    background:#8f0b18;
}
.gc-btn-primary{display:inline-block;background:var(--gc-blue);color:#fff;padding:14px 28px;font-weight:700;border-radius:2px}.gc-btn-primary:hover{background:var(--gc-blue-dark);text-decoration:none}
@media(max-width:900px){
    .gc-hero,.gc-hero-inner{min-height:430px}
    .gc-hero-card{padding:30px}
    .gc-hero-card h1{font-size:40px}
    .gc-hero-card p{font-size:17px}
    .gc-hero-search{flex-direction:column;gap:10px}
    .gc-hero-search button{width:100%;height:48px}
}
