.hook-blocks-container-c50b3aeb {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.hook-card-c50b3aeb {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border: 1px solid rgba(33, 68, 98, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    
    /* Animation settings */
    opacity: 0;
    transform: translateY(20px);
    animation: hookFadeInUp_c50b3aeb 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes hookFadeInUp_c50b3aeb {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hook-card-c50b3aeb:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(33, 68, 98, 0.15);
}

.hook-card-label-c50b3aeb {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #214462;
    margin-bottom: 10px;
}

.hook-card-title-c50b3aeb {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.hook-card-text-c50b3aeb {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.hook-card-link-c50b3aeb {
    font-size: 16px;
    font-weight: 700;
    color: #e11c09;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hook-card-link-c50b3aeb:hover {
    color: #b51506;
}