.block-grid > div{
    margin-bottom:0 !important;
}

.home-hero-section {
    position: relative;
    padding-top:1rem;
    z-index: 2;
}

.home-hero-section img{
    display:block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.home-shortcuts-section {
    padding-top:2rem;
    padding-bottom:2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-shortcuts{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.home-shortcuts .feature-item {
    display: flex;
    padding: 16px 0;
    border-radius: 8px;
    transition: all 0.3s;
    align-items: center;
    text-decoration: none;;
}

.home-shortcuts .feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}


.home-shortcuts .feature-item-img{
    width:30%;
}

.home-shortcuts .feature-item-img img{
    width:100%;
    height:auto;
}

.home-shortcuts .feature-item-text{
    flex:1;
    padding: 0 16px;
    line-height: 1.2;
}

.home-shortcuts .feature-item-text p{
    margin:0;
}

.home-shortcuts .feature-item-title{
    font-size: 1.25rem;
    font-weight: bold;
    color:var(--primary-color);
}

.home-shortcuts .feature-item-content{
    font-size: 0.75rem;
    color: #666;
}
