
.banner {
    width: 100%;
    height: 500px;
    background:  url('https://res.cloudinary.com/demgvmbmk/image/upload/v1745116736/imagenes/Blandon%20Bonilla%20Files/TTT_jll5oq.png') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.practice-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.banner-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: rgb(18, 11, 46);
    display: flex;
    justify-content: space-between;
}
/* Practice areas section */
.practice-areas {
    /* margin: 30px 0; */
    padding: 30px 0px 0px 0px;
    text-align: center;
    background-color: white;
} 
/* .practice-areas h2{
    padding-top: 20px;
} */


.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    /* margin-top: 30px; */
}

.practice-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.practice-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); */
    cursor: pointer;
}

.practice-image-placeholder { 
    height: 275px;
    background-color: #ffffff;
    /* padding: 20px 20px 0px 20px; */
    overflow: hidden
}
.practice-image-placeholder img{
    width: 100%;
    /* border-radius: 6px 6px 0 0; */
   
}

.practice-card-content {
    padding: 5px 0px 20px 0px;
}
.practice-card-content ul {
    padding-left: 20px;
}

